Viewing 10 posts - 1 through 10 (of 10 total)
I did the same test with a Standalone DB which is in the same SAN when the network is slow, but that is completing fast. So I am not thinking...
September 17, 2024 at 8:15 am
No users connected to it as the servers are in project phase and no load is happening on the server during the tests. execution plan is same for both cases.
September 12, 2024 at 11:28 am
We need o do it as implicit transactions to avoid any blockings on the database, we are deleting millions of records everyday in a purge operation which cannot be done...
September 9, 2024 at 9:44 am
You can install SQL Server on a computer that is already running instances of an earlier SQL Server version. If a default instance already exists on the computer, SQL Server...
May 25, 2016 at 11:02 pm
Backup .. Restore will be the best option in this case. It won't impact the incoming i/os to the procduction DB unless you are hosting the duplicate db on the...
May 25, 2016 at 10:49 pm
it is possible to give execute permissions without write permissions. But If the stored procedure includes insert\update statements, the user can insert\update the table by calling the stored procedure.
Even if...
May 24, 2016 at 10:53 am
As all the files are on primary file group, you can empty the below files using the command DBCC SHRINKFILE ('filename',EMPTYFILE) and remove the files using alter database remove...
May 24, 2016 at 10:32 am
Check the tablesizes on that database periodically and check is there any tables are growing abnormally.
May 23, 2016 at 10:52 am
You can remove the secondary datafiles using the below commands
USE DB1
DBCC SHRINKFILE('filename1', EMPTYFILE);
and then delete the file:
ALTER DATABASE DB1 REMOVE FILE filename1;
May 23, 2016 at 10:29 am
Create a DML trigger and send mail using sp_send_dbmail based on the condition.
July 31, 2013 at 10:25 pm
Viewing 10 posts - 1 through 10 (of 10 total)