Viewing 11 posts - 1 through 11 (of 11 total)
If reboot is involved, then you would need to do manual failover from primary to secondary before rebooting that instance. SQL 2005 and 2008 are update insensitive, thus windows update...
October 3, 2011 at 12:22 am
SQL running on single disk is not advised especially if its business critical. RAID is acceptable to some extent. If possible try adding an external disk for backups and transaction...
October 3, 2011 at 12:18 am
Linked server will serve you better. But as mentioned by others before, if the data is large, then it would be advisable to do import export.
October 3, 2011 at 12:12 am
This would mean that you need to use Degree's of Parallelism (MAXDOP). But it will complicate your code and has hardware dependency (multiple cores).
Check this to get better idea
October 2, 2011 at 11:50 pm
Thanks Shifty1981..I did go through this thread and multiple other's to see if this process makes sense. Arguably, Max memory should be the upper limit. No matter how much we...
September 13, 2011 at 8:24 am
cheers Praveen
September 13, 2011 at 3:16 am
That's fine for smaller servers, it's not a safe recommendation for larger ones (16GB+)
Exactly. Incase if you have VM's on your box, I would suggest atleast 6-7 GB buffer for...
September 13, 2011 at 2:59 am
Try checking out if the login that you are using has permissions for alter. Ideally it should have sysadmin permissions.
September 13, 2011 at 2:24 am
this should do you good. Lists only active users.
USE msdb
SELECT * FROM sys.dm_exec_sessions WHERE Status != 'sleeping'
This shall probably give you a better idea to whom to keep and whom...
September 13, 2011 at 2:12 am
+1 for adding a trigger to specific user. Ideally trigger should be based on sys.dm_exec_sessions.
September 13, 2011 at 2:09 am
To clear some air from the basic question
Target Memory = Memory available for the SQL server to consume and this sets up the upper limit. This also inturn means that...
September 13, 2011 at 2:01 am
Viewing 11 posts - 1 through 11 (of 11 total)