Viewing 15 posts - 46 through 60 (of 155 total)
you can write sql-dmo scripts embedded in vb/java script to collect all the information and write directly to excel. I dont knopw whether (3) can be achieved b TSQL or...
July 1, 2008 at 4:23 am
and make sure you disable the index first, then do the delete, and then enable the index. Make sure you have enough space for the transaction logs as well, otherwise,...
June 24, 2008 at 2:54 am
Oops, my bad that I replied 🙁
June 9, 2008 at 6:56 am
This may be helpful - http://msdn.microsoft.com/en-us/library/ms190794.aspx
June 9, 2008 at 6:55 am
where are you working currently? Tell us the reasons why you ask this question.
June 4, 2008 at 5:32 am
60 lakhs = 6 million 🙂
June 3, 2008 at 3:53 am
please go through this link - http://msdn.microsoft.com/en-us/library/ms190940.aspx
June 3, 2008 at 3:51 am
yes, I agree. I thought the missing values wont be continuous. And yes, recursive CTE is an answer.
June 2, 2008 at 6:26 am
Restricting access is not something you should do on a fly. Do the following -
1. Decide and Write down the various access levels required by the various users/groups
2. Talk with...
June 2, 2008 at 6:19 am
try some form of this -
select a.id - 1 from table_name a where not exists( select b.id from table_name b where a.id = b.id + 1)
the first record will...
June 2, 2008 at 6:14 am
Can you please let us know why you require this?
June 2, 2008 at 4:04 am
Viewing 15 posts - 46 through 60 (of 155 total)