Viewing 14 posts - 1,351 through 1,364 (of 1,364 total)
- Did you use "NO RECOVERY" when restoring database on the MIRROR server?
Also, go thru this link:
http://alan328.com/SQL2005_Database_Mirroring_Tutorial.aspx
Manu
May 21, 2008 at 4:30 pm
Try this. Hope it works.
Create PROCEDURE dbo.s_test
AS
SET NOCOUNT ON
-- declare all variables
DECLARE @sdbname SYSNAME
DECLARE @account SYSNAME
DECLARE @VHOName SYSNAME
DECLARE @sSQL VARCHAR(150)
DECLARE @sSQL1 VARCHAR(150)
DECLARE @iRowCount ...
May 21, 2008 at 4:20 pm
Thanks Greg. Is there any similar option avaialble in SQL Server 2000?
May 21, 2008 at 3:29 pm
Have you checked the access permisions for sql service account on this new mdf and ldf files location? Usually this message comes due to this only. Also, have master and...
May 20, 2008 at 2:21 pm
If you want you can try this script:
/*==================================================================================
NAME: Move a table between filegroups
DESCRIPTION: This script moves a user-given table from one file group to
another, where both file...
May 20, 2008 at 1:59 pm
James,
--For files consolidation
You need to use EMPTYFILE option under DBCC SHRINKFILE command so as to move the data present in the file(of same filegroup) to one file(of same filegroup).
Please...
May 20, 2008 at 1:50 pm
Go thru this MS doc. once:-
SQL Server 2005 Upgrade Technical Reference Guide
Manu
May 20, 2008 at 1:23 pm
Go thru this too if you are intrested in resolving deadloacks issue:
http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx
May 19, 2008 at 10:08 am
I want to view the SQL Server instances that are installed on the machine.
May 15, 2008 at 8:49 am
May 14, 2008 at 2:45 pm
Thanks Jim. But I need to generate script using query analyzer.
Manu
May 14, 2008 at 1:58 pm
Red arrow means that login is disabled. You can enable it using right click login-->properties-->status option.
Manu
May 8, 2008 at 5:23 pm
It can be done if you create three different jobs with their schedules and call them with the folowing workflow. For example:
Job1 Step 1 execution--On successful completion --> Go to...
May 6, 2008 at 12:59 pm
Thank you friends..
Replication is working between SQL 2000 to SQL 2005.. It's rocking..
Please post incase of any new articles like this..
Regards,
Mallik.
March 29, 2007 at 1:02 am
Viewing 14 posts - 1,351 through 1,364 (of 1,364 total)