Viewing 15 posts - 7,006 through 7,020 (of 7,187 total)
In the Windows search facility, type "*.BKP; *.BAK; *.TRN" (without the inverted commas) in the field All or part of the file name, then fill in the dates under When...
June 29, 2006 at 7:26 am
JWA
Buffer cache hit ratio is a percentage, whereas cache hit ratio is a simple ratio. So a cache hit ratio of 63 means, as you say, 63 cache hits per...
June 29, 2006 at 7:19 am
John
Multiple filegroups are good for a VLDB, since you can back up individual filegroups rather than the whole database, making your backup strategy more flexible. You will only see a...
June 29, 2006 at 6:43 am
Product oriented? Sounds like management speak to me, and I don't think it translates into anything that you, as a DBA, would want to touch with the proverbial barge pole. ...
June 29, 2006 at 5:00 am
Jeff
Yes, so long as he only wants to do this on the identity column. His original post was a little more general than that. We await the explanation...
John
June 28, 2006 at 3:20 pm
David
Make sure that the columns in the tables in your subscription database have exactly the same data types as those in your publication database. It sounds as if you're trying...
June 28, 2006 at 9:05 am
Greg
I think that if you have migrated the databases of existing applications, then you are bound by the design of each application. For example, some applications have an application server...
June 28, 2006 at 8:56 am
Bhushan
The point of clustering is if a resource (for example SQL Server) fails on one node, it stops and continues running on another node. Therefore you shouldn't find yourself in...
June 28, 2006 at 8:47 am
Simon
According to Books Online, sp_changedbowner "Changes the owner of the current database". So the answer to your question is no if you want to use that stored procedure. However, have...
June 28, 2006 at 8:25 am
You could probably get an ugly solution using dynamic SQL and the information_schema.columns view, but I wouldn't recommend it. One of the many reasons I wouldn't is that if you...
June 28, 2006 at 8:14 am
Walter
Not tested, but can't be far off... You just need to dispense with the SELECT. Also, I've changed your old-style join syntax to the ANSI standard.
update tbl1
set col1 =...
June 28, 2006 at 8:00 am
Given that you only want to do this in one database, this should be simpler:
use YourDB
select name as Object, object_name(uid) as Owner from sysobjects
John
June 28, 2006 at 4:48 am
Presumably, since you have tempdb (data and log) on its own drive, your application makes heavy use of tempdb. Now you need to find out how much of that activity...
June 28, 2006 at 3:47 am
Curtis
Yes - just to clarify, the MS docs are right. You don't need AWE for 4GB and under. But you do need the /3GB switch for your 2.5GB. I suppose...
June 27, 2006 at 7:54 am
Dinakar
Surely it will work if you restore your database at the subscriber, set up the publication and then start synchronising? If identity insert is on, then the values in the...
June 27, 2006 at 7:07 am
Viewing 15 posts - 7,006 through 7,020 (of 7,187 total)