Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
318 views

Backing up SQL Database for Reports

I'm looking for some help/suggestions for backing up two large databases to one server dedicated to reports. The situation is; My company has two databases for its internal website. One for the UK ...
4
votes
3answers
6k views

Mirroring vs. Log Shipping in Sql Server 2005

I'm interested in hearing people's thoughts about the pros and cons of database mirroring vs. log shipping in this scenario: we need to setup a database backup situation wherein there is exactly one ...
3
votes
1answer
443 views

Help on choosing which SQL Server 2008 scale-out solution to pick (replication, …)

I am currently crossing the jungle of SQL Server scale-out technologies like replication, log-shipping, mirroring... I have the following constraints on my choice: I want the read-only load to be ...
3
votes
1answer
138 views

Log shipping

Can any one please, tell me that when we configure log shipping do we have to open a firewall from the destination server to the source server too. Thanks
2
votes
2answers
476 views

Postgresql pg_standby takes forever to perform failover

I have a working WAL shipping setup with a warm standby slave server applying the WAL files. When I create the pg_standby trigger file, it detects this at once, but it takes about 10-15 minutes to ...
2
votes
1answer
33 views

Log Shipped but Won't Update

I'm currently taking the MS SQL 2K5 Admin course at a local college and ran into a problem with the Log Shipping part. My setup is the following: Windows 7 x64 SQL 2005 SP3 2 SQL server instances on ...
2
votes
3answers
271 views

hundreds of databases sql server log shipping

SQL Server 2005 Standard 64x, with 300+ tiny databases currently (5MB each), user base adds databases as needed. Want to implement log shipping for warm standby, but not via the wizard, since that ...
2
votes
6answers
417 views

Is it possible to have secondary server available read-only in a log shipping scenario?

I am looking into using log shipping in a SQL Server 2005 environment. The idea was to set up frequent log shipping to a secondary server. The intent: Use the secondary server to serve report queries, ...
2
votes
1answer
518 views

Upgrading from SQL 2000 - 2008 - Log Shipping

I'm in the process of upgrading from SQL 2000 - SQL 2008 Would it be possible (or feasable) to set up log shipping from Server A - that has the sql 2000 database on, to Server B - that has the SQL ...
1
vote
1answer
28 views

Sql Query to determine when log shipping last took place

I need a SQL query to determine when log shipping last occured for a given database. Would this be correct? SELECT Max(restore_date) FROM msdb.dbo.restorehistory WHERE ...
1
vote
1answer
1k views

T-SQL copy Logins, Users, roles, permissions etc

We have implemented log shipping as a database disaster recovery solution and want to know if there is a way I can use T-SQL to script all the logins, users, roles permissions etc to the master ...
1
vote
2answers
457 views

PostgreSQL - using log shipping to incrementally update a remote read-only slave

My company's website uses a PostgreSQL database. In our data center we have a master DB and a few read-only slave DB's, and we use Londiste for continuous replication between them. I would like to ...
1
vote
2answers
156 views

Mirroring , Log shipping SQL Server 2005

I am tasked with setting up a disaster recovery for one of our system. The primary server is in FL and the secondary is in Germany. The application is a global application within my company. I am not ...
1
vote
0answers
259 views

How do we setup a remote Standby / Read-Only database to accept Log Shipping?

We have two SQL 2008 servers on different networks that will soon have a VPN connecting them. Soon is 2-3 weeks. If that were in place now we could easily setup Transaction Log Shipping (or other ...
1
vote
2answers
100 views

Monitoring Log Shipped Databases

I need a consistent way to monitor databases that are read-only log shipped copies of production databases. In the past I have relied on the following methods: Set the job that restores logs to the ...
1
vote
1answer
227 views

SQL server 2008 Log shipping Failback

I need to set up log shipping for about 10 databases. The primary server is accessed by our website and the secondary server is a BI server. What I am struggling to figure out at moment is the best ...
1
vote
1answer
267 views

Initial configuration for log shipping of a large database in SQL Server 2008

We have a new filestream database that will be initially loaded with 65GB data, for which we'd like to configure log shipping to a remote (different continent) location. For the initial setup of log ...
1
vote
2answers
305 views

Database Mirroring and Logshipping

I have setup both mirroring and and log shipping on 8 databases of about 10 GB each size on same instance, but now when I want to mirror another database it very long to display the Database ...
0
votes
0answers
6 views

Does PostgreSQL 9.1 Streaming Replication catch up after a lag without WAL archiving? [migrated]

Context: Let's say that, while using Streaming Replication/Hot Standby on a Postgres 9.1 cluster, a standby node goes down. It stays down for an day, during which time a lot of DML occurs on the ...
0
votes
0answers
29 views

Log Shipping - Ignore deletions on a specific table

I've got a scenario where I have a database with one table that gets tons of inserts, and it's vital that the performance is excellent for those inserts. I also have a lot of reports, some of which ...
0
votes
2answers
62 views

Mix transactional replication and log shipping?

I've replicated a large database (close to 1TB) to three remote servers using pushing transactional replication. The subscribers are read-only. A lot of data is inserted and updated (from other ...
0
votes
0answers
128 views

Log shipping between 2 SQL server 2008 database servers without opening any ports?

Is it possible to set up Log shipping between 2 SQL server 2008 database servers without opening any ports? One of SQL server is in Data center and another on Local server room and both are ...
0
votes
1answer
124 views

Transaction log shipping together with backup job = conflict?

There is already a backup job plan that runs every 15 minutes. I created transaction log shipping process but after 1 or two restored logs this job stops working (error: it can't find matching log). ...
0
votes
1answer
288 views

SQLServer log shipping file size limit

I'm trying to limit the size of individual files that are transferred as part of log shipping (as I am using WebDAV for transport). I want to ensure that no trn files are created that are more than a ...
0
votes
1answer
147 views

Simple SQL Failover Plan? Log shipping? Mirroring?

I have a physical Prod DB Server (SQL05) and now a VM DB Server. The idea is if the physical machine goes down, we repoint our router (via NAT) to the VM machine. I am thinking of using Log Shipping ...
0
votes
1answer
358 views

Automate Log Shipping Failover

Is it possible to automate Log Shipping Failover and Recover Secondary Database in Log Shipping, something in Powershell where it checks for are there any more .trn files to be copied, restore all the ...
0
votes
1answer
914 views

Scripting Log Shipping Automation

Is it possible to script All of the Log Shipping configuration? For example: I need to write a job that initiates Log Shipping from two databases from server A to server B. The job will run on ...
0
votes
4answers
1k views

Postgres HA (based on WAL-shipping) fails

I'm hoping someone can help me a WAL-shipping and warm standby issue. My standby system runs happily for weeks, then all of a sudden it starts looking for .history files that don't exist. It then ...