Viewing 15 posts - 301 through 315 (of 1,166 total)
Snapshot to a different db and restore the backup of snapshot db on to the production db...
1. Snapshot replication...
2. Configure snapshot replication from ServerA.Testdb to ServerB.TestdbSnapshot
3. Backup ServerB.TestdbSnapshot
4. Restore...
February 18, 2007 at 12:43 am
Looks like you have disk issue...
Run the check db first without delay...
Most of the cases related torn page, end up with database restore with previous good backup.
February 18, 2007 at 12:28 am
Did you resolve your issue? what is the solution?
February 18, 2007 at 12:13 am
Replication between the two domains in possible... as long as servers can connect to each other...
Is any of the server involved in replication registered as different name or aliased?
Replication creates...
February 18, 2007 at 12:09 am
You can make use of the following script..
set nocount on
declare @cmd varchar(500)
declare @db varchar(128)
create table #results(FileType varchar(4) NOT NULL,
[Name] sysname NOT NULL,
Total numeric(9,2)...
February 18, 2007 at 12:01 am
How to send e-mail without using SQL Mail in SQL Server
http://support.microsoft.com/kb/312839
SQL Server SMTP Mail XP
http://www.sqldev.net/xp/xpsmtp.htm
February 17, 2007 at 11:58 pm
Generally this error happens when there is incomplete I/O operation...
Restoring from the backup is the best option in this case...
Is write cache enabled on disk/san controller?
Read the following article...
February 17, 2007 at 11:55 pm
When backup log run with NO_TRUNCATE option also will not truncate the log..
February 17, 2007 at 11:41 pm
Online indexing is done by creating the index side by side...
I am not sure but I don't think there will any rollback time...
You can simply test it on dev server...
February 17, 2007 at 11:24 pm
Post the script...
May be you are using new datatype which is introduced in 2005...
February 11, 2007 at 10:47 pm
February 11, 2007 at 10:19 pm
February 11, 2007 at 3:59 am
You don't need N' becuase you already declared fname as nchar...
-- Create a Queue
declare @rc int
declare @TraceID int
declare @maxfilesize bigint
declare @DateTime datetime
set @DateTime = (SELECT DATEADD(mi, 1, getdate()) )
DECLARE @FNAME...
February 11, 2007 at 3:52 am
I tried vaious options in replication. I didnt find the option "Keep existing data unchanged"; the option available in Snapshot is "Keep existing table unchanged". I want a restriction based...
February 11, 2007 at 3:43 am
Viewing 15 posts - 301 through 315 (of 1,166 total)