Viewing 15 posts - 2,161 through 2,175 (of 14,953 total)
You should either be able to use a variable for the local path attribute, or build an expression for it. Either one should do what you need.
January 23, 2012 at 11:12 am
Depending on the details of how your cursor is being declared (updatable vs read-only, fast forward, et al), having an explicit transaction wrapped around the whole process would make it...
January 23, 2012 at 11:02 am
Any possibility of federating (partitioning) the tables?
Then you could rebuild indexes incrementally. That can often help.
January 23, 2012 at 10:40 am
Jeff Moden (1/23/2012)
GSquared (1/23/2012)
I've had to do that in order to teach myself what little I know...
January 23, 2012 at 9:55 am
I have to admit, I'm sometimes guilty of "jiggling the code till it unbreaks".
I've had to do that in order to teach myself what little I know of XQuery for...
January 23, 2012 at 6:29 am
Okay.
Depending on your decryption method, decrypting a whole table all at once is probably going to be slow, no matter what you do in the database. Encryption/decryption is very...
January 20, 2012 at 1:04 pm
Take a look at RedGate's SQL Dependency Tracker (link at top right corner of this site). See if that will do what you need.
January 20, 2012 at 12:08 pm
It depends on what you're doing and how you're doing it.
It possibly can be made faster, but I can't suggest anything to do that without answers to the questions I...
January 20, 2012 at 12:04 pm
Does the encryption/decryption take place in the database or in a higher layer?
How many rows at a time are you decrypting?
Does the data have to be pulled from the table,...
January 20, 2012 at 11:39 am
Stephanie Giovannini (1/20/2012)
January 20, 2012 at 11:14 am
I just delivered a "lunch-and-learn" to the devs where I work. Since we just upgraded to SQL 2008 R2, it was on new T-SQL features they might find useful,...
January 20, 2012 at 11:09 am
jcrawf02 (1/20/2012)
This is frickin' hysterical: http://arstechnica.com/microsoft/news/2012/01/microsoft-pimps-it-old-school-with-a-pricey-text-adventure-game.ars
OMG!!
I've got people staring at me as I laugh maniacally right about now!
Too much!
Love it!
January 20, 2012 at 8:43 am
Not sure what to do in that case. Maybe someone will stop by with experience in that.
I'm used to pulling images in via the file system, not via a...
January 20, 2012 at 8:20 am
Rowversion is the alternative to TimeStamp.
TimeStamp was badly named in the first place. The data doesn't have any real relation to time stamps, it's just a row version increment.
January 20, 2012 at 6:51 am
Viewing 15 posts - 2,161 through 2,175 (of 14,953 total)