Viewing 15 posts - 46 through 60 (of 105 total)
Not that I know of, though I would bet @MladenPrajdic would be receptive to the idea of looking at including it in SSMS Tools Pack
regulars: Does...
October 20, 2010 at 4:59 am
I know Michael from another forum and have the greatest of respect for him, but I will respectfully disagree. The requirements of some systems necessarily require natural keys, for others...
October 15, 2010 at 1:53 am
Really? Three pages barely counts as a warm up for a surrogate Vs natural key thread 😉
October 14, 2010 at 1:55 pm
Tom.Thomson (10/14/2010)
October 14, 2010 at 1:22 pm
Why? You have a working solution and someone working on an improved solution.
October 14, 2010 at 9:29 am
Oh nice, yes - definitely use that over the scalar.
I've not yet had the "pleasure" of using FOR XML in the wild.
October 14, 2010 at 9:02 am
USE test;
IF EXISTS (SELECT NULL FROM sys.tables WHERE object_id = OBJECT_ID('dbo.test_IP'))
BEGIN
DROP TABLE dbo.test_IP
END;
CREATE TABLE dbo.test_IP
(
...
October 14, 2010 at 8:35 am
Yes, I had just this second noticed that. I missed the issue with the original formatting.
It should just be a self join though. Hold on...
October 14, 2010 at 8:23 am
That will be due to the dbo.Test, whatever that is.
October 14, 2010 at 8:17 am
Apols - my bad.
COALESCE(@result + ', ', '') + dummy_column
October 14, 2010 at 7:34 am
Actually, I'm not taking it entirely off tack. My correction is born of a similar observation\ pet peeve as yours. Far too often I see primary key\ IDENTITY\ Autonumber (in...
October 14, 2010 at 7:02 am
Sorry - don't want to take this off tack, but a column defined as IDENTITY is not "guaranteed to be unique within the table". Only a unique index\ constraint (or...
October 14, 2010 at 6:57 am
- Defined as IDENTITY because the column is guaranteed to be unique within the table
That's not even correct.
October 14, 2010 at 6:44 am
Stating the obvious: I assume you can't simply have system one call system two when it has completed the loads?
Otherwise no although I would want this sort of thing persisted...
October 14, 2010 at 6:24 am
Viewing 15 posts - 46 through 60 (of 105 total)