Viewing 15 posts - 1 through 15 (of 62 total)
I have one problem with the calculations. Overall it's a good article, and more metrics are always useful, if they're accurate.
He lists the calculation for data flow as: Data Flow...
August 30, 2006 at 1:52 pm
I don't know about this one in particular, but I haven't had problems installing hotfixes to specific cluster instances in the past. (Well, sometimes it would not recognize the proper...
August 16, 2006 at 1:59 pm
Just guessing here, but are your two instances (2000 and 2005) both running as the same account? The sql service uses its account credentials to login to a MAPI profile. ...
August 16, 2006 at 1:55 pm
The return value of a stored proc is always an int. If you use a smaller type, like tinyint or smallint, it will be converted. If you try to return...
December 12, 2005 at 9:34 am
Don't know if this will work, but....I would try running the SQL install and see if it gives you an option to uninstall the application.
HTH
October 31, 2005 at 9:32 am
The error details menu option is only available if the last action reported was an error. Otherwise, there is no error to display. If you want to examine an older...
October 28, 2005 at 9:51 am
Just to add my 2 cents:
I've always noticed (since working in a clustered replicated environment) that the replication agents show up as the node name instead of the sql host...
October 21, 2005 at 9:15 am
There is also the log reader function, again undocumented:
select * from ::fn_dblog(@@dbid,null)
October 14, 2005 at 9:06 am
Yes that's how it works. We use NOT FOR REPLICATION on our identity columns, triggers, and constraints. The replication agent is integrated with SQL Server so it knows whether to...
October 12, 2005 at 10:13 am
Yes, if you don't need the data to be replicated between servers, you can create the table with the same schema on the subscriber and run the SP there.
October 12, 2005 at 8:03 am
What we do is have SQL Server manage the identity ranges for most of our tables. If you go to publication properties, Articles tab, then click on the ... for...
October 12, 2005 at 8:00 am
It may be best practice to have MSDTC in its own group, but I haven't had a problem with it being part of the cluster group. It seems to be...
October 12, 2005 at 7:49 am
You have two options. First, go to Client Network Utility, under SQL Server in the Program menu. There you can set up an alias, e.g. MyServerX -> 10.10.20.30.
Or, you can...
October 12, 2005 at 7:35 am
I'm guesssing the original DB had that file. If you do a RESTORE FILELISTONLY from the .bak file you can see the DB files that are part of the original...
October 12, 2005 at 7:27 am
Another way, if you don't have a primary key and don't want to use a cursor or group by:
SET ROWCOUNT 1
DELETE My Table WHERE field1 = 'DUPE'
SET ROWCOUNT 0
October 10, 2005 at 9:19 am
Viewing 15 posts - 1 through 15 (of 62 total)