Viewing 15 posts - 496 through 510 (of 1,253 total)
Insert into #table (col1)
select TOP 100 ROW_NUMBER ( ) OVER (order by sys.columns.object_id) as 'rownum'
from sys.columns ,sys.tables
December 1, 2008 at 3:46 am
Gail
Now i could be completely wrong....but
would'nt it make derived table queries slightly more resource intensive than using temp tables. I mean to say that using temp tables we could do...
December 1, 2008 at 3:32 am
Hi
IMHO.. there is no need for a GUID. They come with a performance drag specially when you want to query a large number of rows. RbarryYoung's solution would work...
December 1, 2008 at 3:23 am
Are you sure that such a value '8d8r57h4r774gqt649rj90rkjdfnhnd9' exists in the column.
What does select pass_word from login where oldpass_word='8d8r57h4r774gqt649rj90rkjdfnhnd9' return?
December 1, 2008 at 1:57 am
Whats the size of datatypes
December 1, 2008 at 1:45 am
Hi
Why do you want to insert the production data in to development. ? And what are the triggers for? Do they have any purpose other than inserting data into devlopment...
December 1, 2008 at 12:26 am
Are both the databases identical in every way - table structures , constraints etc
How much data are you looking at?
I assume you would want to port the data from production...
November 28, 2008 at 2:16 am
Are you able to connect to the remote machine?
November 28, 2008 at 2:09 am
I agree with all the wonderful things said about SSC.. it could not be more true.
How ever i hv seen a couple of wall flowers who joined long time back,...
November 28, 2008 at 2:03 am
Brilliant Divya and Lynn
November 27, 2008 at 3:12 am
check this great article
http://www.simple-talk.com/sql/t-sql-programming/the-helper-table-workbench/
November 26, 2008 at 4:18 am
sandeephughes (11/21/2008)
Thanks for everybody's reply for confirming that SQL Server 2005 has much better performance improvement than SQL Server 2000.
Mostly...;)
November 21, 2008 at 12:09 am
Hi
Iam working on a proj with a very similar scenario.
First Iam the DBA and i change the procs and have the final call on them. This makes it easier to...
November 21, 2008 at 12:05 am
Viewing 15 posts - 496 through 510 (of 1,253 total)