Viewing 15 posts - 46 through 60 (of 462 total)
Just to add on what Peterson and Aaron said.
Be careful when you change the ownership of the database. The user who is the current owner would loose acces to...
March 31, 2005 at 8:15 am
Right click on the Servername in enterprise manager. Click on properties. Select the Security tab and select the radio button Sql server and windows instead of Windows only. I can't post screen...
March 30, 2005 at 2:55 pm
If you already have another account with admin privilige, you can add that account to sql server and grant it sysadmin privilige. And then remove the builtin\admin group. You can then...
March 29, 2005 at 2:58 pm
"With AWE turn on the second instance will try using 5 GB for a total of 10 GB. 2 GB short which will cause the server to use page file...
March 25, 2005 at 1:02 pm
The default isolation level is READ COMMITTED. Also from BOL.
Only one of the options can be set at a time, and it remains set for that connection until it is...
March 25, 2005 at 12:45 pm
When you access a cluster, you make a connection to the virtual server. Say below is a connection string
cn.open "driver={SQL Server};Server=Server_name;uid=user;pwd=;"
The only thing changes is that if it is a...
March 25, 2005 at 9:25 am
You don't have to hold all the data in temporary tables. You can create an ActiveX script with DTS where you can process one row at a time.
March 24, 2005 at 1:22 pm
From books online.
BEGIN TRANSACTION starts a local transaction. The local transaction is escalated to a distributed transaction if the following actions are performed before it is committed or rolled back:...
March 24, 2005 at 9:59 am
This should not affect the transaction log backups to fail. sa is a member of sysadmin group and he has permissions to all the database. You might want to take a...
March 24, 2005 at 9:35 am
It seems that you might have had some IO issues. the cluster log might have some information of what triggered the failover. It might be difficult to post here but...
March 21, 2005 at 3:10 pm
Below is the closest article i found.
http://support.microsoft.com/kb/825042
I have my test server on 8.00.878 and the issue is fixed on that one. The rest of the servers are on 8.00.818...
March 21, 2005 at 7:40 am
March 21, 2005 at 7:26 am
You can use the procedure below. It will create different text files for each and every table. Create the procedure in master database and then just pass in the database name...
March 21, 2005 at 7:03 am
I remember this to be a post sp3 bug where jobs could not run under windows account but i couldnot find the fix for it. i will post it if i find...
March 20, 2005 at 9:13 am
Try to re-start your server after resetting the status. If that doesn't work, you can bcp all the data out of the database and then create a new database and...
March 20, 2005 at 9:00 am
Viewing 15 posts - 46 through 60 (of 462 total)