Viewing 15 posts - 436 through 450 (of 1,065 total)
Jeff Moden (9/16/2009)
That's the whole idea behind using the surrogate key instead of a natural key which may be duplicated. The users wouldn't see it but the join to...
September 17, 2009 at 4:33 am
What sort of replication are you doing? Snapshot, Transactional or Merge?
September 17, 2009 at 4:20 am
Over the years, I have used (but not for DW):-
ErWin - good, but expensive
ER/Studio - my favourite, but again, expensive
Powerbuilder - OK, again expensive
Visio - very slow, especially for large...
September 17, 2009 at 4:14 am
The query you posted gives a syntax error... but I see what you are trying to do.
The reason is is returning 2 is because you are looking for the MAX...
September 17, 2009 at 3:53 am
jcrawf02 (9/16/2009)
Ian Scarlett (9/16/2009)
One thing I hope we DON'T see... that shirt of yours:-DSays the guy in the funky hat...
Err Umm, yes. Maybe I should keep quiet:-D
September 16, 2009 at 7:56 am
No worries... glad you got there in the end.:-)
September 16, 2009 at 7:52 am
Damn!
In one of your earlier posts, yoa said
I think I'm going to declare a variable in the stored procedure and assign rowcounts to it. Then I'll push the values into...
September 16, 2009 at 7:03 am
As I hinted in my earlier posts, it sounds as though you have different ANSI settings.
In SSMS, right click the server and click properties. On the Connections page, you...
September 16, 2009 at 5:48 am
One thing I hope we DON'T see... that shirt of yours:-D
September 16, 2009 at 2:36 am
This bit of advice goes for all tables, but I'll illustrate it with this table
CREATE TABLE Operator (
OperatorID CHAR(10) NOT NULL PRIMARY KEY CLUSTERED,
OpsFirstName CHAR(35) NOT NULL,
OpsMiddleName CHAR(2) SPARSE NULL,
OpsLastName...
September 16, 2009 at 2:33 am
Yes, you can cluster the distributor... when you fail over, everything should carry on as before.
September 16, 2009 at 1:30 am
I had a similar problem on a system years ago that I eventually traced to blocking at the subscriber.
With the distribution profiles left at the default, SQL Server groups...
September 16, 2009 at 1:20 am
I'm not sure how to get at @@rowcount in SSIS (don't have an SSI environment available at the moment).
Try putting different SET statements at the top of your procedure and...
September 16, 2009 at 1:06 am
A list of the files would have helped to provide a definitive answer to the question. Are they possibly:-
*.SCH - table definition
*.DRI - definition of the indexes and constraints
*.TRG -...
September 15, 2009 at 5:43 am
I suspect Paul is pointing you in the right direction, but I would also add a few perfmon counters to rule out the I/O subsystem as the source of your...
September 15, 2009 at 4:22 am
Viewing 15 posts - 436 through 450 (of 1,065 total)