Viewing 15 posts - 1,801 through 1,815 (of 6,486 total)
GilaMonster (8/7/2009)
For someone to even begin to edit the log, the database would have to be detached and they'd have to use a hex editor. I doubt there's anyone...
August 7, 2009 at 10:19 am
You probably want to look at the NTILE windowed aggregate.
For more infor look here:
August 6, 2009 at 2:52 pm
GilaMonster (8/5/2009)
More correctly, never use LIKE with a leading wildcard on a large table.
Absolutely. It's good to be careful with queries like these, but if it uses the index,...
August 6, 2009 at 1:02 pm
Steve - I agree, but only to a point. I have no issue whatsoever with a loyalty program on those vendors I deem worthy. But that's the rub...
August 6, 2009 at 11:39 am
UB (8/5/2009)
Thanks for the response.No matter which column is updated, 'Date_Modified' needs to be updated. So, looks like INSTEAD OF Triggers might be a easier route.
thanks,
_UB
considering it will look like...
August 5, 2009 at 3:20 pm
The transaction log is what captures all of the changes as they occur to your data. So - you add new rows, and the changes get recorded in the...
August 4, 2009 at 3:20 pm
It can depend. If the LIKE statement resembles:
MyColumn LIKE 'value%'
Then it's possible it may use the index as a scan.
On the other hand -
MyColumn LIKE '%value%'
has NO shot...
August 4, 2009 at 2:44 pm
Well - temp tables are certainly one way... but they're not the ONLY way.
depending on what you want to do with them, you can set up a "self-linked...
August 3, 2009 at 4:01 pm
Slick84 (8/3/2009)
August 3, 2009 at 12:49 pm
David Korb (8/3/2009)
I don't know about the beer but as for Craftsman tools I believe most professionals... are going to have brands like:
Klein! My lineman's pliers, dikes, strippers, and screwdrivers...
August 3, 2009 at 11:32 am
Jeff Moden (7/31/2009)
August 1, 2009 at 7:09 am
The scripts that have been mentioned before are to script data structure changes, and not data changes per se. Unfortunately there is no feature in SSMS to capture data...
July 29, 2009 at 1:59 pm
I don't recommend this approach, but you can structure a WHILE loop to act as a DO...UNTIL loop.
WHILE (1 = 1)
BEGIN
--do stuff
.....
...
July 29, 2009 at 11:30 am
Reading between the lines a bit, it sounds like you might be willing to tolerate the areacode being null. You can still catch invalid phone numbers if you were...
July 29, 2009 at 11:25 am
Snapshot isolation is going to prevent someone outside of the transaction from seeing the changes.
At best as of now - you could split up the trigger, and turn it into...
July 29, 2009 at 8:38 am
Viewing 15 posts - 1,801 through 1,815 (of 6,486 total)