Viewing 15 posts - 76 through 90 (of 91 total)
Hi Adam,
First of all thanks for your reply...we just want to run this job for temp. basis...so We are ok if our mails get full...
July 31, 2008 at 1:21 pm
You can know the number of instance by looking services in sql server configuration manager
July 15, 2008 at 8:31 am
select * from log_shipping_plan_history put this statement into job
July 11, 2008 at 12:00 pm
This is a very big mistake...Now the best thing you can do is to apply full backup and all the log backups manually
...As a DBA you should be very careful....From...
July 3, 2008 at 9:08 am
I had the same problem too. Then I came to know that my backup file was corrupted...So that I restored that database to the second current backup and then I...
July 3, 2008 at 9:00 am
I have the same question....Any answer would be appreciated.
July 3, 2008 at 8:42 am
This is the command that process does
dbcc dbreindex(N'[dbo].[table_name]', N'', 90, sorted_data_reorg)
Can I kill that?
May 19, 2008 at 11:15 am
Certification exams are very beneficial to improve our knowledge.....For this exams we have to read every small things....Otherwise we wan't read everything....
May 12, 2008 at 2:05 pm
I read this book...It is very good book and covered almost all topics for SSIS. A very good book...Recommanded by me for SSIS.
May 12, 2008 at 1:18 pm
In job history it only says that sqlmaint.exe failed....nothing else...Any ideas folks??
May 8, 2008 at 6:44 am
The destination is up as well as if I restart job then also it runs successfully....The only problem is that it fails randomly, at aleast 2-3 times a day..
May 8, 2008 at 6:43 am
Easier one...njoi...
USE [Databasename]
GO
SELECT [name] FROM sys.tables WHERE [type] = 'U'
April 29, 2008 at 11:32 am
Here is another one..
select name,recovery_model_desc as Recovery_mode from sys.databases order by name
April 29, 2008 at 10:46 am
I found for SQL server 2000 now.
Here is the script
SELECT [name] AS [DatabaseName], CONVERT(SYSNAME, DATABASEPROPERTYEX(N''+ [name] + '', 'Recovery')) AS [RecoveryModel] FROM master.dbo.sysdatabases where CONVERT(SYSNAME, DATABASEPROPERTYEX(N''+ [name] + '', 'Recovery'))<>'full'
April 29, 2008 at 7:38 am
Viewing 15 posts - 76 through 90 (of 91 total)