Viewing 15 posts - 1 through 15 (of 110 total)
February 10, 2017 at 7:59 am
the server is dedicated server, no SSRS, no SSIS, no SSAS running.
February 10, 2017 at 7:39 am
February 10, 2017 at 7:38 am
February 10, 2017 at 7:27 am
thank you. I got it.
March 19, 2014 at 11:39 am
GSquared (9/26/2012)
September 28, 2012 at 12:43 pm
I deleted this replication and recreated from the scatch. It works now.
June 17, 2011 at 8:01 am
if the user exists in the DB which you just restored,
you can schedule a job to run this after you restore DB
EXEC sp_change_users_login 'update_one', @username, @username
February 22, 2011 at 11:58 am
Or you can use this sql query to get backup audit,
select * from ::fn_trace_gettable('DefaultTraceFolder\log_601.trc',default)
where textdata like '%backup%' and textdata is not null
February 22, 2011 at 11:25 am
From default trace, you will find backup information, including Who, when, where and which database.
Go to C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG,
Defaule file name like log_xx.trc.
February 22, 2011 at 11:24 am
Our company has upgraded SQL 2000 to SQL 2005 long time ago without these questions' answers.:)
February 14, 2011 at 8:07 am
I had a similiar experience. SQL logins had no problem to connect to SQL. only one Windows Logins could connect, other not.
Drop server and add server did help on...
February 10, 2011 at 12:54 pm
Can you try to drop server and add server back?
Sp_dropserver @Servername
Sp_addserver @Servername,local
February 10, 2011 at 8:20 am
To find backup size for Every DB
select database_name,backup_size,backup_start_date from msdb.dbo.backupset
order by database_name
February 10, 2011 at 8:07 am
Can you check server date time setting? It might be wrong server date time.
February 7, 2011 at 9:28 am
Viewing 15 posts - 1 through 15 (of 110 total)