Viewing 15 posts - 541 through 555 (of 1,365 total)
Are you able to locate "xprepl.dll" on your server? If not then it seems your sql installation has got sum problem try to repair or reinstall it
MJ
March 18, 2009 at 9:22 pm
Try this:
USE master
GO
/****** Object: StoredProcedure [dbo].[sp_GetSpaceUsedByDBs] Script Date: 03/12/2009 14:41:23 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create procedure [dbo].[sp_GetSpaceUsedByDBs]
as
create table #ls (name varchar(255), LogSize real, LogSpaceUsed real, Status...
March 18, 2009 at 8:51 pm
SQL Server (2000, 2005, 2008): Recovery/Rollback Taking Longer Than Expected
(Microsoft PSS Guys Comments)
Interesting discussion around rollback. The transaction has run for 14 hours and then a KILL SPID was...
March 18, 2009 at 7:39 pm
In my case when I am trying to save the newly created plan(copy of old plan as u suggested) its not creating the job and failing with message "Rename failed...
March 18, 2009 at 7:18 pm
Did you use upgrade advisor before going for upgrade?
http://msdn.microsoft.com/en-us/library/ms144256(SQL.90).aspx
MJ
March 18, 2009 at 3:23 pm
When--> Check the binn directory creation date and by "Whom" I think that can be answered either by checking event viewer logs/sql installation log file(not sure).
MJ
March 18, 2009 at 3:17 pm
What's the error message that you receive while restoring?
MJ
March 18, 2009 at 1:32 pm
It can't be done. Stated at-->http://www.sqlservercentral.com/Forums/Topic638206-146-1.aspx?Update=1
MJ
March 17, 2009 at 6:10 pm
Creating multiple log files for the same database doesn't seem to help anything unless disk space is an issue.
MJ
March 17, 2009 at 6:08 pm
The work-around is to edit the INSTMSDB.SQL script and change two instances of Yukon90_ to something more complex. In my case, I used: 1qaz@WSX3edc$RFV
MJ
March 17, 2009 at 6:04 pm
Why don't you try this: Create a new filegroup with same name "NEW" in your case under the same database and then try deletng it. Hopefully it should delete the...
March 17, 2009 at 5:58 pm
It doesn't look CU 10 or CU 11 were applied:
Check for "Build 09.00.3077" at
-->http://support.microsoft.com/default.aspx/kb/937137/en-us#
MJ
March 17, 2009 at 4:20 pm
Googling helps:
To determine whether or not Service Broker is enabled for a particular database, execute the following T-SQL:
SELECT is_broker_enabled FROM sys.databases WHERE name = 'Database name';
-- Enable Service Broker:
ALTER...
March 17, 2009 at 4:07 pm
Make use of stored procs. like EXEC master.dbo.xp_backup_database and EXEC master.dbo.xp_restore_database as listed at -->http://vyaskn.tripod.com/backup_and_restore_with_sql_litespeed.htm
MJ
March 17, 2009 at 4:01 pm
Viewing 15 posts - 541 through 555 (of 1,365 total)