Viewing 15 posts - 91 through 105 (of 108 total)
are you using local accounts or ad logins?
May 13, 2008 at 11:08 am
the procedures are defining the names of local and remote sql server instances but for remote servers you will use sp_addlinkedserver these days
May 13, 2008 at 10:05 am
hello,
sounds to me like you should use sp_helpserver to see if the name matches the physical computer name and change it if needed with sp_dropserver and sp_addserver restart sql...
May 13, 2008 at 9:05 am
i dont know of any gui based installation to create the ini file in sql server 2005 but see the template.ini on the installation disc there is all the info...
May 13, 2008 at 8:33 am
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: pryder
-- Create date:
-- Description: ...
May 10, 2008 at 8:25 am
sorry it doesnt 🙁 still in the data center but will drive back to work soon to see it on sql server
May 10, 2008 at 8:17 am
try it without paramvalues.
INSERT INTO Child (ParentID,name)
SELECT @NewID, ID.value('.','VARCHAR(20)')
FROM @bings.nodes('bings/group') as ParamValues(ID)
May 10, 2008 at 8:03 am
INSERT INTO Child (ParentID,name)
SELECT @NewID, ParamValues.ID.value('.','VARCHAR(MAX)')
FROM @bings.nodes('bings/group') as ParamValues(ID)
should fix this
May 10, 2008 at 5:53 am
or/and turn on the detailed logging if this allready is supposed to be your maintenance plan logfile
May 9, 2008 at 10:40 am
could you check or post the log file of the maintenance plan this would help with finding the error.
May 9, 2008 at 9:14 am
simon.letts (5/9/2008)
May 9, 2008 at 8:43 am
Are trying to set it up in the SSMS of SQL 2005? This would fail with the error you have to use the stored procedures in SQL 7 to set...
May 7, 2008 at 10:27 am
If you want both databases to be available you can not choose mirroring anyway. For distance you can pick mirroring but i would not set it up for high safety.
May 7, 2008 at 9:12 am
the log shipping will restore a backup on the secondary server while the replication does kind of a real time replication of the changes on your primary server.
April 11, 2008 at 10:38 am
Does your service account has write permission to the c:\ root? Try to backup to the default backup folder and not to the root of the drive.
April 11, 2008 at 10:17 am
Viewing 15 posts - 91 through 105 (of 108 total)