Viewing 15 posts - 196 through 210 (of 281 total)
I've located and hosted SQL Server 6.5 with documentation, see main thread post here -> http://www.sqlservercentral.com/Forums/Forum1437-1.aspx?Update=1
As usual, thanks to everyone who went out of their way to help...
March 14, 2012 at 4:20 pm
Ian
Very kind - but I've managed to resolve the issues for now. It was the tempdb database filling up (pegged at 2*MB*! Not a typo!) I extended...
March 14, 2012 at 5:20 am
No, the download is duff. But vetusware.com (the abandonware site) purports to have SQL Server 6.5 in 20 .rar parts. I've downloaded it but sadly part 3 is...
March 13, 2012 at 3:28 am
Thanks everyone, I'll see if BOL is included in the download.
March 12, 2012 at 12:05 pm
Just wanted to say thank you to all who replied, an interesting discussion and thanks for your positive comments.
Scowls and dark looks to the spammer, though.
March 8, 2012 at 2:46 am
I have to point out that this article wasn't about hacking SQL Server 🙂 but about using the tools at hand to gain access to databases in difficult circumstances.
Yes, the...
March 7, 2012 at 7:43 am
@richb-2 - fair point, but there's a clear difference between a locksmith and a burglar - I definitely wear a white, not black, hat.
@jeff Moden - Following on from above...
March 7, 2012 at 6:53 am
The article is a bit wordy...
1. Attempt access using DAC connection. (-m in the startup parameters). Works if BUILTIN\Administrators is a valid server login with the default...
March 7, 2012 at 3:23 am
It's updating all rows because what you are basically saying is for every row, set the bodytext equal to 'code=1' and concatenate other parameters onto it. If those other...
February 21, 2012 at 9:20 am
You probably don't need to do this since creating a non-clustered index on your final table, on the datetime column (and keeping the stats regularly updated) will allow efficient execution...
February 21, 2012 at 8:14 am
Looks like @prereplace is set to 'code1=' when other dependent @vars are null, as you're concatenating variables and a string.
So replace:
update documentbody
set bodytext = @myvar
where @prereplace is not null
with:
update documentbody
set...
February 21, 2012 at 8:08 am
I use WSH for VB scripting, i.e. I will invoke SQLCMD from a batch file, then feed it an input SQL file, then do something interesting to the output using...
February 21, 2012 at 8:04 am
The problem looks like it's the Execute As.
The login trigger proc is running as AnonLogin. Thus ANY login calling that proc qualifies as being a SPID that should be killed....
February 16, 2012 at 2:39 am
Cadavre
Thank you for your detailed reply, I've been over your code and agree that it follows the same logic. I've not been able to test it so far since...
February 14, 2012 at 10:54 am
Viewing 15 posts - 196 through 210 (of 281 total)