Viewing 15 posts - 271 through 285 (of 492 total)
First shrink the database to release the space for Operating System at free work hours and truncate the size of log ,then this process will release the unallocated space
Shrink Database...
May 10, 2011 at 10:52 pm
Check this query for the missing Indexes on the primary Server as well as secondary Server on the specific database
Select * from sys.dm_db_missing_index_details
How much RAM have you allocated for the...
May 10, 2011 at 10:46 pm
First will tell you about the missing indexes on the database and the other one will tell you about resources usage of queries,locks,wait etc,these queries are not harmfull just execute...
May 10, 2011 at 9:52 am
Go to SQL Server Configuration Manager then check all protocol are enabled on the instance side as well as native client side as mention in the figure
May 10, 2011 at 9:49 am
Create all non-clustered index scripts and then drop it all then create clustered index then create non-clustered index after clustered index
Note It when we create clustered index then non-clustered automatically...
May 10, 2011 at 9:44 am
Data Type of ID column is ?
May 10, 2011 at 9:28 am
If you dont want to require an audit and specific user actions then create SQL server role for the specific group as SALES and create sales user and assign this...
May 10, 2011 at 8:20 am
Did you define the PAD_INDEX option ON and fillfactor same as before ? what is the Server default fillfactor configurations ?
check the default configurations of the Server or fillfactor by...
May 10, 2011 at 5:53 am
Note it when you create the Cluster index then non-clustered index on the same table will be drop and then recreate autmatically
It depends on the query you have provide if...
May 10, 2011 at 5:50 am
When your logshipping fail and you want to up the secondary node then you will pass this statement on the secondary node
Restore database [your database name] with recovery;
If database have...
May 10, 2011 at 4:07 am
check with
SP_WHO2
check with also
Select st.text,sp.* from sys.sysprocesses sp
cross apply sys.dm_exec_sql_text(sp.sql_handle) st
where sp.status != 'sleeping'
order by sp.cpu desc
paste your sp on the query analyzer on SSMS and then click on...
May 10, 2011 at 3:35 am
Install Express Edition of SQL Server 2008 instead of SQL Server 2000 and test replication on it if problem still there then we can provide solution
May 10, 2011 at 1:00 am
because your SP is using multiple queries in it,it tells you statistic for every query
May 10, 2011 at 12:53 am
sys.databases is a new catalogview and sys.sysdatabases is for backward compatibility for SQL Server 2000 and this will be remove in the future release
May 10, 2011 at 12:49 am
Viewing 15 posts - 271 through 285 (of 492 total)