Viewing 15 posts - 136 through 150 (of 261 total)
By using cliconfg on the clients you can select which protocol is used. If the client needs to connect to different servers you can create aliases for each server, each...
September 2, 2005 at 8:38 am
you could use "SET DATEFORMAT dmy" at the beginning of the sproc...
August 31, 2005 at 4:54 am
coincidences, coincidences...
Last night i was called to work, the sql-database behind our company's VERITAS Backup Exec was defect, with no backup having ever been made (obviously not a server/db i...
August 30, 2005 at 9:10 am
How about creating a view on the dest server with OPENROWSET to source server, and then inserting the data via select * from view?
karl
August 26, 2005 at 10:21 am
Hi,
yours seems to be another case of Collation Hell.
Changing the collation of a database does not change existing columns, it changes only the system tables, and sets the default for...
August 26, 2005 at 10:05 am
SELECT RTRIM(CONVERT(varchar,SERVERPROPERTY('productversion')))as Productversion,
RTRIM(CONVERT(varchar,SERVERPROPERTY ('productlevel')))as Productlevel,
RTRIM(CONVERT(varchar,SERVERPROPERTY ('edition'))) as Edition
EXEC master.dbo.xp_msver
August 26, 2005 at 9:44 am
One method to get the rest of the logfiles into the server would be to use a third-party tool (Apex SQL Log claims to be able to do that) to...
August 25, 2005 at 4:05 am
2) Yes, it's also a test for your backup/recovery procedure.
Each backup you have been able to restore into standby has shown that it is ok in case of an disaster...
August 25, 2005 at 3:29 am
One more point: i'm assuming daily db-restores because for me the standby-server gives availability, but at least as important as that is: it's living proof that my backups and restores...
August 22, 2005 at 8:14 am
I'm also assuming that he first restores the database and only afterwards starts the job doing the log transfers. That way the first conflict would occur the day after..
Perhaps i'm...
August 22, 2005 at 8:11 am
Hi writes:
Truncate log
Full backup database, INIT(daily)
Copy database
Restore database, STANDBY,REPLACE
I assumed that he restores the db daily also. If so, the truncate before db-backup and -restore won't affect the outcome...
August 22, 2005 at 8:01 am
Hi,
neither the truncate log nor the with_notruncate should have an impact on your logshipping.
Most likely the restore of the full backup is not finished when the first log-restore starts. Therefore...
August 22, 2005 at 7:50 am
Hi,
check the connection settings, do you connect with the same user in QA and osql?
karl
August 18, 2005 at 9:58 am
Hi,
how is the job started? If you start it from a linked server, you might be running into the connection-timeout...
karl
August 18, 2005 at 9:54 am
If you don't use "backup log with truncate_only" then your plans will work.
If the TL gets to 4 GB twice a week, i would simply not mind...
As long as the...
August 17, 2005 at 11:12 am
Viewing 15 posts - 136 through 150 (of 261 total)