Viewing 15 posts - 91 through 105 (of 1,334 total)
Here is the working code.
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[spCoverageLog]') AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[spCoverageLog]
GO
CREATE PROCEDURE [dbo].[spCoverageLog] ( @spName VARCHAR(100) )
AS
BEGIN
UPDATE dbo.CodeCoverage
SET...
February 27, 2008 at 3:40 pm
Remove the first line in the code that hsould work. Else add a drop procedure statement and a go after that for the code to work fine.
February 27, 2008 at 3:36 pm
Yes why can't you move the archive to another database. That should do the simple solution for you.
February 27, 2008 at 3:35 pm
Okie can we do this for our testing. create a stored procedure in the remote server database with the same select query. then call the stored procedure in the linked...
February 27, 2008 at 3:04 pm
So when you run the query with the linked server do you get any errors. or it returns o rows available.
February 27, 2008 at 12:40 pm
Use it as [first name] instead of using as "first name"
February 27, 2008 at 12:19 pm
Use the following
backup log with truncate only and then
dbcc shrinkfile(logname,targetsize)
but be careful doing this in PROD environment.
February 27, 2008 at 12:15 pm
Delete the previous database backup files and then start the backup job.
February 27, 2008 at 12:13 pm
Don't go configuring log shipping for 100 of databases in a single server. i am sure you are going to end up in a hardware bottleneck.
February 27, 2008 at 12:12 pm
You do a detach and attache method so that you can rely on the correct data. Also script jobs and logins and run in the other server.
February 27, 2008 at 12:05 pm
You can also use the GUI to modify the backup device properties.
February 27, 2008 at 12:02 pm
You have to restore only a copy of the backup which you say that you don't have. better go for the prod copy and restore there.
February 27, 2008 at 12:02 pm
USe SQL 2000 MPs to create Mps for those databases don't use 2005 servers as you will land in trouble.
February 27, 2008 at 12:00 pm
We do have our own CMD script to truncate the timestamp in it and send us the log file. You can create one for your self.
February 27, 2008 at 11:59 am
You have used command 1 and the database shows recovery use
alter database dbname with recovery to bring it online. you need not restore it again.
February 27, 2008 at 11:58 am
Viewing 15 posts - 91 through 105 (of 1,334 total)