Viewing 14 posts - 1 through 14 (of 14 total)
Hi Pablo,
Error :
The testlogship database does'nt exist as a principal logshipping server.
The above error say database testlogship does not exist.
You have mentioned this script does not run on production server....
August 6, 2011 at 12:11 pm
Eddy...
Assuming the Database is in full recovery and T-log backup job running every 30 min.. below steps can be followed while re-indexing..
1. Take a full backup.
2. Disable T-log...
April 30, 2010 at 1:15 pm
Hi..
Please the the below options...
Rebooting the server once or restart the SQL services.
Try changing the job owner to sa and run the job and change back to original user.
Shree
January 20, 2010 at 11:49 am
Hi...
You can try this steps:
Truncate the log file --- and shrink it to minimum size possible.
This is the code...
USE DatabaseName
GO
DBCC SHRINKFILE(<TransactionLogName>, 1)
BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY
DBCC SHRINKFILE(<TransactionLogName>, 1)
GO
Safe...
January 20, 2010 at 11:34 am
Hi..
Do you have any database with name maste4IDR?
It's a info message displayed after DBCC command run on your database.
If you get this message regularly check if there is any...
July 27, 2009 at 1:56 pm
Hi..
1.Check if you are able to login from atleast 1 login with the role assigned to it.
2.Try to create a test login assign the role to it and try to...
July 27, 2009 at 1:46 pm
Hi,
You can try the 'extractor' software to convert litespeed backup to native.
Shree
June 13, 2009 at 11:51 pm
Hi
What is the version you are using?
Have you installed sp2?
Please check
SHREE
June 11, 2009 at 6:25 pm
Two physical instances on one server are to be upgrade to 2008 by inplace upgrade.
Will it upgrade both the instance automatically when upgrade option selected.
Shree
March 16, 2009 at 12:01 pm
Hi steve..
I am trying to check if the SQL server is running on Comp B from A...
Both the servers are one same domain....
What are my options from Server A??
Shree
January 15, 2009 at 4:51 pm
Thanks Terry..
Yes it has only 1 MDF file.. no ldf files..
Shree
January 15, 2009 at 3:17 pm
Hi,
avg_fragmentation_in_percent is the field you need to look for. If it is bet 0-10 you can ignore, if bet 11-30 REORGANIZE if greater then 30% REBUILD index.
check this link :...
December 15, 2008 at 2:40 pm
Hi,
Do not run the SQL services under local account. Create a seperate account and run the services on that account.
That should solve the problem
Shree
November 21, 2008 at 6:05 am
Hi ,
Try this script it works fine on SQL 2005.
It was posted earlier in this forum.
DROP PROC usp_sql_audit
GO
CREATE PROC usp_sql_audit
AS
SET NOCOUNT ON
IF EXISTS (SELECT * FROM tempdb.dbo.sysobjects WHERE name =...
November 20, 2008 at 6:34 am
Viewing 14 posts - 1 through 14 (of 14 total)