Viewing 15 posts - 121 through 135 (of 758 total)
shohelr2003 (7/9/2013)
SQLSACT (7/9/2013)
If you are trying to track changes on your database, you could implement SQL Auditing. You could also look at introducing triggers to track any changes.
Thanks for your...
July 9, 2013 at 1:48 am
shohelr2003 (7/8/2013)
In my database 'myDB', there are three logins as A, B, C. All are "sysadmin". And there is no restriction to access the database objects.
Say, A has done some...
July 9, 2013 at 1:23 am
Joie Andrew (7/8/2013)
July 8, 2013 at 6:35 am
Have a look at the SQL_CONNECTION memory clerk to see if it's taking up too much memory
Also look at
select * from sys.dm_exec_connections to see how much reads etc have been...
July 8, 2013 at 6:21 am
m.rajesh.uk (7/8/2013)
July 8, 2013 at 4:56 am
I'm sure this can be done with Resource Governor
July 8, 2013 at 2:15 am
If you restore the secondary database from a full backup taken at the primary, provided that all the transaction log backups are in place, SQL Server will do the work.
When...
July 8, 2013 at 2:14 am
Firstly, change the "add column" part to just "add".
Secondly, this kind of process will definitely take exclusive locks on the table which will block other processes.
I suggest that you run...
July 8, 2013 at 2:10 am
GilaMonster (7/4/2013)
SQLSACT (7/4/2013)
if you are changing the Clustering key at all with your updates, all nonclustered indexes will be affected as...
July 4, 2013 at 4:01 am
GilaMonster (7/3/2013)
July 4, 2013 at 1:35 am
Keep in mind that if you are changing the Clustering key at all with your updates, all nonclustered indexes will be affected as well
July 3, 2013 at 7:43 am
restore database [db_name] from disk = 'location\.bak' with replace
July 3, 2013 at 7:16 am
As far as I understand, unless the index is filtered, all inserts/updates/deletes will affect all nonclustered indexes.
Think in a row level, not just on a field level
EDIT - I...
July 3, 2013 at 7:08 am
Then your production database has high availability. It depends on business requirements. There is no best practice for how close Dev needs to be to Production.
July 3, 2013 at 7:04 am
Might be a silly question, are you connected to the database in question when running these commands?
July 3, 2013 at 7:01 am
Viewing 15 posts - 121 through 135 (of 758 total)