Viewing 15 posts - 1,741 through 1,755 (of 14,953 total)
When would the trigger fire? After all the inserts/updates are done?
April 9, 2012 at 12:10 pm
Are those values from other columns? Values from input parameters for a stored procedure? Values from a direct insert by the application? Something else?
April 9, 2012 at 12:00 pm
Here's what I've used for that kind of thing:
USE ProofOfConcept ;
GO
-- Set up table
CREATE TABLE #T (Col1 CHAR(1)) ;
INSERT INTO #T
(Col1)
VALUES...
April 9, 2012 at 11:41 am
I'm a trained minister. Does that count as "cross training?" (drum-roll please!)
As far as DBAing goes, I'm not sure there's a solid line between "training" and "cross-training" without going...
April 9, 2012 at 11:33 am
I'm assuming from the syntax that it's part of a Merge command. If so, it should work. You might need to remove the object-name ("t.") from the column...
April 9, 2012 at 11:07 am
"Up" is the direction radially outward from the local, subjectively predominant gravitational influence.
At least, that's what I say when someone asks, "What's up?"
April 5, 2012 at 2:18 pm
Lynn Pettis (4/5/2012)
Lynn Pettis (4/4/2012)
Why is it people ask if you have had a similar problem, then disagree with you when you have and tell them what was happening?
If it...
April 5, 2012 at 1:29 pm
TravisDBA (4/5/2012)
Any time you want to see the warts & all presentation, come watch mine. I don't hold back. We have a ton of advantages over Visual Studio. They have...
April 5, 2012 at 12:41 pm
GilaMonster (4/5/2012)
GSquared (4/5/2012)
Stefan Krzywicki (4/5/2012)
Brandie Tarvin (4/5/2012)
I think I'll keep...
April 5, 2012 at 12:32 pm
Stefan Krzywicki (4/5/2012)
GSquared (4/5/2012)
Stefan Krzywicki (4/5/2012)
Brandie Tarvin (4/5/2012)
I think I'll...
April 5, 2012 at 12:30 pm
Keep in mind that there can be slight differences, especially at the highest precision point, simply due to CPU sequentiality constraints.
MaxDOP 1 might change how that behaves, but also might...
April 5, 2012 at 12:22 pm
Grant Fritchey (4/5/2012)
Lynn Pettis (4/5/2012)
I'm sorry, but I started laughing to myself when I read this one.
Look at it as a complement. To many people, we're the SQL Server documentation....
April 5, 2012 at 11:17 am
Fragmentation in the database world usually refers to index fragmentation. It happens (usually) because of inserts/updates/deletes of the data that's being indexed. It can slow down use of...
April 5, 2012 at 11:15 am
Stefan Krzywicki (4/5/2012)
Brandie Tarvin (4/5/2012)
I think I'll keep my current...
April 5, 2012 at 11:12 am
I always keep a DDL store of some sort or another, to be able to deploy a copy of a database. I also keep DML statements for creating lookup...
April 5, 2012 at 7:52 am
Viewing 15 posts - 1,741 through 1,755 (of 14,953 total)