Viewing 15 posts - 511 through 525 (of 1,253 total)
Are the network protocols enabled in the target server.
"Keep Trying"
November 20, 2008 at 1:54 am
why not use sp_msforeachtable . Search this site for more info.
"Keep Trying"
November 20, 2008 at 1:52 am
arnold (11/19/2008)
Chirag (11/19/2008)
Whats the amount of data that we are dealing with?Thousand of rows.
I believe you could do this using complex T-SQL but even that would consume memory. Using...
"Keep Trying"
November 19, 2008 at 10:40 pm
Whats the amount of data that we are dealing with?
"Keep Trying"
November 19, 2008 at 2:30 am
Where LEFT (col,4) like or equal to LEFT(@Var,4)
You can substitute the value 4 by an appropriate value.
"Keep Trying"
November 18, 2008 at 11:46 pm
Nandy (11/18/2008)
I have used the cursor in the stored procedure to delete the data from the table. I'm deleting the data from table where I used the same table...
"Keep Trying"
November 18, 2008 at 11:43 pm
Amit Gupta (11/17/2008)
me want programatically set norecovery first and then restore then again set with recovery. when i...
"Keep Trying"
November 18, 2008 at 11:00 pm
I suggest you created temp tables with identity columns. Insert your data in order and then select the data by joining on the identity columns.
"Keep Trying"
November 18, 2008 at 10:51 pm
Hi
Delete the records in batches. Look up this site for more info.
"Keep Trying"
November 18, 2008 at 10:47 pm
Hi
You will have to extended procedures for this. Check out these extended procedures on the net
xp_create_subdir ,xp_dirtree.
"Keep Trying"
November 18, 2008 at 3:05 am
Amit Gupta (11/17/2008)
daily through DTS with schedule time but i am not getting right way? so...
"Keep Trying"
November 17, 2008 at 11:15 pm
Would (XSLT + XML) from a physical file better than Database Call?
I dont think so. You would miss all the constraints/Fkey relationships that can be used. Your code could become...
"Keep Trying"
November 17, 2008 at 4:44 am
Read up on DDL triggers. They can help.
"Keep Trying"
November 17, 2008 at 12:47 am
Hi
Test this before actual use.
-- Take students who have even a single passstatus as 'N'. ---Update studentpassstatus with CASE
-- those students as 'N' and other students as 'Y'
UPDATE #Student...
"Keep Trying"
November 14, 2008 at 1:33 am
i thought the third option was the right answer.
"Keep Trying"
November 13, 2008 at 12:25 am
Viewing 15 posts - 511 through 525 (of 1,253 total)