Viewing 15 posts - 256 through 270 (of 463 total)
I don't think SQL Server can restrict the number of sessions for a particular user. You can restrict the total user connections by setting the advanced option user Connections.
September 20, 2004 at 10:43 am
Did you change any object ownerships ?
September 20, 2004 at 10:37 am
Run the trace from a remote server so that you can take off some load from the server.
September 17, 2004 at 9:37 am
When you open the properties for SQL resource, the second tab is for Dependencies. Make sure that the new disk is included under resource dependencies.
September 16, 2004 at 12:03 pm
Check perfmon counter Transactions/Sec under the object SQL Server Databases. You can specify the database also.
September 16, 2004 at 11:55 am
Below is a script which you can schedule locally from within SQL Server and see if you run into any issues when running locally also. I ran this script every...
September 15, 2004 at 10:52 am
Yes, fragmentation can be a cause. The reads gives you the no. of pages read and this can vary due to the fragmentations. Also try running
set statistics_io on
And check what...
September 15, 2004 at 10:43 am
Check this KB article. This is a very common cause for rebuild failing.
September 15, 2004 at 9:55 am
Try comparing the execution plans on both servers ? It is possible that production (because of the load) might be taking a slightly different execution plan resulting in the higher...
September 15, 2004 at 9:02 am
"This drive had already been assigned to the 1st virtual server"
I don't understand what you mean by the above.
For Active-Active installation, each instance should have one dedicated disk drive(volume)...
September 14, 2004 at 9:10 am
The resource kit has a utility called logparser. You can directly dump data into sql tables using this utility or process the data as you need. You can run this using...
September 14, 2004 at 8:59 am
Below is the procedure. We use sp_sendcdosysmail for notification and i have that in the procedure. You can use your own notification process.
create procedure Job_Executing_notify @job_name varchar(30)
set @job_name = '%DB...
September 14, 2004 at 8:27 am
Does both the servers have same amount of free space ?
September 13, 2004 at 7:07 pm
Viewing 15 posts - 256 through 270 (of 463 total)