Viewing 15 posts - 541 through 555 (of 1,048 total)
I'm not familiar with that script but you can just use this select to find what you want:
select name, text
from syscomments A
JOIN sysobjects B on A.id = B.id and...
June 15, 2011 at 8:10 am
You mean if there are gaps in the IDs (they are not sequential) ? Your sample code indicated that they would be. However, that situation could be handled by using...
June 14, 2011 at 9:04 am
I'm beginning to find the new "intelli[non]sense" to be aggravating at times.
June 14, 2011 at 8:35 am
Hopefully this isn't a homework assignment... but what you want to do is usually done in two updates as follows:
update A set A.outputdataversionid = B.outputdataversionid
from outputdatavesrion A
JOIN outputdatavesrion B...
June 13, 2011 at 2:19 pm
GilaMonster (6/13/2011)
June 13, 2011 at 1:34 pm
Steve Jones - SSC Editor (6/13/2011)
sturner (6/10/2011)
Reloading ammo is always relaxing.Is that the relaxing part or the shooting up pictures of annoying bosses?
HaHa ... one of the nice things about...
June 13, 2011 at 1:18 pm
you can put an index on a bit column but think about, its not very selective for large tables so probably wouldn't be used, but then neither would a char()...
June 13, 2011 at 1:01 pm
please post the connections string you are using. If using a DSN make sure you have not specified a protocol other than TCP/IP (if that's what you want).
You should be...
June 10, 2011 at 1:58 pm
Gsquared you are right on. Depending upon a lot of factors the deletes could have gotten significantly behind the inserts. All inserts always go at the end of heap...
June 9, 2011 at 12:19 pm
I have mixed emotions about all of the letters I sometimes see after some peoples names (I realize G-Squared does it in jest).
When I first became a licensed pilot...
June 7, 2011 at 1:00 pm
pixelwizzard (6/7/2011)
June 7, 2011 at 7:45 am
PhilDaniels (5/23/2011)
May 24, 2011 at 10:56 am
Wait till it finishes. Depending upon what it was doing (did) it could take a while for the rollback to complete.
May 24, 2011 at 9:23 am
opc.three (5/12/2011)
sturner (5/12/2011)
opc.three (5/12/2011)
sturner (5/12/2011)
opc.three (5/12/2011)
This can be solved by running the batch in either the SNAPSHOT or SERIALIZABLE isolation level.
Yes, that is a hack way of masking the underlying...
May 12, 2011 at 12:10 pm
Viewing 15 posts - 541 through 555 (of 1,048 total)