Viewing 15 posts - 1 through 15 (of 15 total)
I would suggest grouping of your SQL Servers and having one accout per group. For example, you could use one account for all Developement Servers, One Account for Test Servers,...
August 11, 2005 at 7:52 am
The Bug Mentioned by Chris is fixed in Hotfix of SQL Build 780 and is documented in KB artile http://support.microsoft.com/default.aspx?scid=kb;en-us;812915 . If your SQL Server build is above 780, the...
August 11, 2005 at 7:33 am
If you are getting space related issues, I assume that you are trying to rebuild all the indexes on the table (or Database) at once. Try these steps
Drop the Non...
August 9, 2005 at 7:11 am
The Process you followed works perfectly fine, but I would like add few points of caution here.
These steps should be followed as a last resort because the script uses 2 very dangerous...
August 9, 2005 at 7:00 am
Hi,
The Best way to trouble shoot General Slow Performance of SQL Server is to look for any obvious reason that you could point to like any changes since the last...
August 9, 2005 at 6:24 am
As long as the SQL Server is running, no body can copy the files, even if I login with the SQL Server Startup account. If the SQL Server is stopped,...
August 5, 2005 at 3:42 am
The issue is because these objects are owned by a different user, not the user who is trying to execute the query.
It may also be the case of orphan...
August 5, 2005 at 2:39 am
Re creating the Clustered indexes (Tables) and Non clustered indexes is the best way to distribute your existing data. you may also move all non clustered indexes to the new table...
August 5, 2005 at 2:22 am
For some reason SQL Server is not able to identify the index.
Run sp_help <tablename> and see if it shows this index name or not.
if not, run DBCC CheckDB (<dbname>
August 4, 2005 at 5:33 am
You need to protect MDF files using the NTFS Secutiry. Grant access rights on the SQL Server Data Folder to the SQL Server Startup Account only and Remove access rights...
August 4, 2005 at 5:14 am
Nitin, could you please explain the issue in detail.
If you do not want others to have access to your database, remove the database access to those logins and they will...
August 3, 2005 at 7:41 am
It seems to be some kind of "In Memory" corruption, i.e the page is getting corrupted while being read from disk to RAM (either due to some issues in RAM...
August 3, 2005 at 7:26 am
It seems that there is some issue with your MSDB database, probably TLog / Data Files are either full or corrupt. Please take a look at the Errorlog for any errors...
August 3, 2005 at 6:18 am
SQL Enterprise Manager does not refresh automatically. Try refreshing the Job by right clicking on the "Jobs" on left side pane and selecting Refresh, or by right clicking on the...
August 2, 2005 at 9:44 am
One common reason for this behavior is that SQL Server could not find / access the Transaction log file of the database. check out your ErrorLog for errors (something like "Device...
August 2, 2005 at 9:33 am
Viewing 15 posts - 1 through 15 (of 15 total)