Search the web
Sign In
New User? Sign Up
sqlcon
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2417 - 2446 of 6519   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2417
if i run that DTS package manulally it is working in fine and if i run through through xp_cmdshell getting following err DTSRun: Loading... DTSRun:...
dilip kumar
dilipkumar_a...
Offline Send Email
Feb 1, 2006
11:05 am
2418
Hey! Check out this great promotion! We can both get the cool new iPod nano for free! http://www.hosickwa.com/?r=EVGDOHcJFgkhAmMCBSsC&i=yh&z=1&tc=18 Talk to...
Moiz Oliya
moizoliya
Offline Send Email
Feb 1, 2006
12:25 pm
2419
HI, please tell me step by step process how to restore MSDB for SQL 6.5 server. are any good artical for this, it is appreciated if you can do to the earliest....
subash srinivas
sns_subash2002
Offline Send Email
Feb 1, 2006
3:08 pm
2420
I ma new to sql server....... i have been working for like 6 months with SQL Server 2000......... i have used the enterprise manager to do a lot of data...
Akhil Mahajan
dabubcet
Online Now Send Email
Feb 1, 2006
3:19 pm
2421
Dear Kalyan I never said my tables are clustered, so naturally no clustered index is there.And even then i am getting so much of fragmentation, that i feel...
Preet Sharma
mpreetsharma
Offline Send Email
Feb 1, 2006
4:59 pm
2422
Hi, I want to find the count of distinct of 3 columns. say select distinct empno,name,dept from emp. I want the count for this query or else even if you can...
Santhosh
san_spy
Offline Send Email
Feb 1, 2006
9:39 pm
2423
You can find the duplicate records using below query.. SELECT * FROM (SELECT empno,[name],dept,Sum(1) RecCnt FROM emp GROUP BY empno,[name],dept) AS TEmp WHERE...
Babu PP
babupp_in
Offline Send Email
Feb 2, 2006
4:38 am
2424
Hi Santhosh, I guess this query should suffice your requirement. select empno,name,deptno,count(*) from emp group by empno,name,deptno having count(*)>1 Let me...
Melvin
melvinms
Offline Send Email
Feb 2, 2006
4:54 am
2425
1. SELECT Distinct Count SELECT COUNT(DISTINCT empno+name+dept) FROM YourTable 2. Finding Duplicates SELECT empno,name,dept, COUNT(*) FROM YourTable GROUP BY...
Roji. P. Thomas
roji_pt
Offline Send Email
Feb 2, 2006
5:59 am
2426
Sorry for getting looped out... I ll answer some more points on it ASAP. -----Original Message----- From: sqlcon@yahoogroups.com...
Veer Ji Wangoo
vwangoo
Offline Send Email
Feb 2, 2006
8:33 am
2427
Hi Dilip, From this I understood that u are trying to use the mail task of DTS right?. If you want to use the mail task in DTS you should crate the dts package...
smart chip
knowledge_chip
Offline Send Email
Feb 2, 2006
8:45 am
2428
When you run fromxp_cmshell it runs under the context of sql server service account. That might be also a problem. please think in that way also. dilip kumar...
smart chip
knowledge_chip
Offline Send Email
Feb 2, 2006
9:51 am
2429
Hi room, when i m trying to save data using application then application is hangining. actually i am calling a stored procedure by application. How can i...
nitin kumar
tanu_22781
Offline Send Email
Feb 2, 2006
10:16 am
2430
Can you send the Table Structure of "lot_lit_detail" Or simply the Create Syntax of this Table .... ... I never said my tables are clustered, so naturally no...
Veer Ji Wangoo
vwangoo
Offline Send Email
Feb 2, 2006
10:47 am
2431
Quite difficult to answer in plain English.... Can you check with trace whether what is blocking the updates ??? ... ...
Veer Ji Wangoo
vwangoo
Offline Send Email
Feb 2, 2006
10:51 am
2432
Hi All, As we are keep on sharing knowledge regarding SQL Server in our common group SQLCON@yahoogroups.com, now it is time for me to learn about Oracle and...
virender jain
virender_jain77
Offline Send Email
Feb 2, 2006
12:06 pm
2433
I think we should take it as Ortho & neurologists because ortho can make the broken leg work properly again as we can restore the crashed database. ...
virender jain
virender_jain77
Offline Send Email
Feb 2, 2006
12:32 pm
2434
Dear Virender, I like your comparison of SQL DBAs and Doctors but Doctors do have categories depending upon the expertise and field. We have neurologists,...
Veer Ji Wangoo
vwangoo
Offline Send Email
Feb 2, 2006
12:40 pm
2435
Hi, I want to find the count of distinct of 3 columns. say select distinct empno,name,dept from emp. I want the count for this query or else even if you can...
Santhosh
san_spy
Offline Send Email
Feb 2, 2006
2:35 pm
2436
Reminder from the Calendar of sqlcon http://groups.yahoo.com/group/sqlcon/cal Community Launch for VS 2005 and SQL 2005 & TechFest 2006 Saturday February 4,...
sqlcon@yahoogroups.com
Send Email
Feb 2, 2006
6:27 pm
2437
Hi Everyone, Please could you give me a procedure whic takes the input as table name and gives me the number of coloumns in the table .... Basically I need to...
mahesh babu
gvmb_mahesh
Offline Send Email
Feb 3, 2006
3:09 am
2438
Dear Mahesh, sp_columns will take table_name as parameter and gives the number of columns. Please refer sp_columns in BOL for detailed information. Regards, ...
Melvin
melvinms
Offline Send Email
Feb 3, 2006
4:51 am
2439
CREATE PROC usp_GetColCount (@Table_name sysname) AS SELECT COUNT(COLUMN_NAME) FROM INFORMATION_SCHEMA.Columns WHERE TABLE_NAME = @Table_name GO Regards Roji....
Roji. P. Thomas
roji_pt
Offline Send Email
Feb 3, 2006
5:47 am
2440
Hi All, Is there any option to close all users connections to a particular database (not like KILLing individual connections, because there are so many ...
Babu PP
babupp_in
Offline Send Email
Feb 3, 2006
6:07 am
2441
What I do is this: Select 'Kill '+convert(varchar, spid) from sysprocesses where spid <> @@spid -- <add condiiton if you want to filter for a db or soem other...
Preethiviraj Kulasing...
preethi_kula...
Online Now Send Email
Feb 3, 2006
6:29 am
2442
Hi, I have a remote sql server 2000 with sp4 on windows 2003. When i take backup through maintentance plan or through T-script , my remote sql server has been...
harsh kumar
harshism
Offline Send Email
Feb 3, 2006
7:05 am
2443
check out www.sqldts.com there is more information about dts packages. Regards, Kalyan Akhil Mahajan <akhilmahajan@...> wrote: I ma new to sql...
smart chip
knowledge_chip
Offline Send Email
Feb 3, 2006
9:05 am
2444
Hi, 1.Pls explain me different types of triggers with a suitable example? 2.Can I able to restore the differential backup along with the full backup.Pls...
udhays21
Offline Send Email
Feb 3, 2006
10:30 am
2445
hi, The below query will give you resut that u expect. select distinct (count(*)) from (select distinct empon, empname, deptno from emp ) as e1 Moreover, you...
kumanan archunan
dkumans_a2000
Offline Send Email
Feb 4, 2006
5:38 am
2446
Babu, If that is a cluster then take the ipaddress resource offline that is the fastest way to get rid of all the connection... with smiles santhosh ... ...
Santhosh
san_spy
Offline Send Email
Feb 4, 2006
6:28 am
Messages 2417 - 2446 of 6519   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help