Viewing 15 posts - 5,446 through 5,460 (of 6,105 total)
The ALTER COLUMN has a different syntax than ADD COLUMN. It is possible to add a new column which will have the IDENTITY property (provided there isn't already an...
May 6, 2002 at 9:31 am
Having tables and indexes in different filegroups doesn't help you a whole lot unless they are on different physical drive sets. Is this the case?
K. Brian Kelley
May 6, 2002 at 8:01 am
Mixed mode is required. The operator created for MultiServer Administration (MSXOperator) is a SQL Server login and thus the change.
K. Brian Kelley
May 6, 2002 at 7:59 am
You can reseed using the DBCC CHECKIDENT command. For instance:
DBCC CHECKIDENT('Employee', RESEED, 2)
Off the top of my head I don't know of a way of...
May 5, 2002 at 4:44 pm
I'm not quite sure why it stopped working due to multiple processors, it could possibly be because it's trying to create a plan involving parallelism and it's not able to....
May 4, 2002 at 2:09 pm
A few questions, just to try and understand the environment.
The colocation server, is it located in your main office?
Is it in the same domain?
Can you ping...
May 4, 2002 at 9:59 am
Please do not crosspost. Most readers look at all forums. I have locked this thread for the General forum. The thread in TSQL has been left unlocked...
May 4, 2002 at 5:49 am
SQL Server is going to try and dynamically grab enough memory to load databases in memory. It'll also need to reserve some memory for execution plans and user connection...
May 4, 2002 at 5:45 am
I've seen this problem on the SQL Server 2000 tools from time to time as well. In that case applying the latest service pack usually fixes the problem because...
May 4, 2002 at 5:35 am
Add the username or group along with the Domain. For instance:
MyDomain\AUser
MyDomain\AGroup
In Enterprise Manager,it'll look like:
If you want to use SQL, such as through Query Analyzer, use sp_grantlogin,...
May 4, 2002 at 5:27 am
DBCC has several options. The one that checks a database, DBCC CHECKDB, has options to perform various levels of repair. Books Online has a description of what each...
May 1, 2002 at 3:47 pm
We do something similar for log files we have in a production system. Basically, we have a linked server created where we first move the relevant rows, then we...
May 1, 2002 at 2:28 pm
There isn't a ton of information available for WAITSTATS, and as Antares has indicated, much of the information is available in other places.
One thing you mention is it...
May 1, 2002 at 2:19 pm
If you run it when activity is going on, compare between two instances. That will give you some indication how the numbers are changing as the system is active....
April 30, 2002 at 9:12 pm
The SELECT query using the lock hint WITH (NOLOCK) will not issue a shared (S) lock. A shared lock is typically used if no lock hint is specified, unless...
April 30, 2002 at 9:07 pm
Viewing 15 posts - 5,446 through 5,460 (of 6,105 total)