Search Results

3
votes

Database Backup/Restore Process

The key part of your question is the ability for the backup solution to be managed by a non-DBA. Any native SQL Server answer like backup scripts isn't going to meet that need, because backup scri …
1
vote

Best software for showing SQL Server Database Structure

I like Toad Data Modeler for this. It reverse-engineers Microsoft SQL Server databases (and other brands of databases too), but more than that, you can start making your modeling changes inside th …
0
votes

What’s the best way to strip literal values out of SQL to correctly identify db workload?

I know you wanted a database-independent option, but if you're using Microsoft SQL Server, the free MS ReadTrace (for SQL 2005) and Read80Trace (for SQL 2000) do exactly this. They take a trace ou …
1
vote

Alternatives to Toad

Just to throw it out there - did you know you can grab the beta of Toad 4.1 and use that for free? The betas are always free to the public. …
9
votes

Database for ENORMOUS amounts of data?

As a DBA, here's the real answer. The best database platform in the world can be unable to handle the tiniest of loads if you don't have staff that knows how to use it. A fairly low …
1
vote

Speed of online backups with BLOBs

To answer your question about the speed of online backups of BLOBs in SQL Server, it's the same speed as backing up regular data for SQL 2000/2005/2008 - it's typically limited by the speed of your …
2
votes

How do I set a field to null in Quest Toad “Browse Database Objects” view?

If you post this on Toad's mailing lists, you'll get a response from the developers themselves (or other power users): http://w …
1
vote

SQL Server - Transactional Replication (partial data only)

You can use filtered replication. When you read examples about filtered replication, you'll probably see it referring to a branch office scenario where a single central office stores data for seve …
1
vote

Software Bandwidth/Database Growth Formulas

Disclosure first: I work for Quest Software, a company that makes performance management and capacity planning. …
0
votes

uploading a realtime database into the web

This is definitely not easy, but it can be done. You would need to run a SQL Server database on the web server, and then push the data from Access to SQL Server, or pull it from SQL Server. …
0
votes

How to achieve multiple Active (read and write) sites(datacenters) with continuos datareplication using SQL Server 2008?

The only active/active option for SQL Server is replication. There is no other active/active option for SQL Server as of this writing. …
1
vote

How would a SQL Server 2005 database lose a few days data?

This isn't the answer you want to hear, but in a nutshell, SQL Server doesn't "lose" data. Someone deleted it. If you had the database in full recovery mode, you could use a product like Quest Li …
3
votes

What is a good SQL Server 2008 solution for handling massive writes so that they don’t slow down reads for users of the database?

Hi, Paul. There's two parts to your question. First, why are writes slow? When you say you have large databases, you may want to clarify that with some numbers. Th …
1
vote

database mirroring/replication, SQL Server 2005

Your confusion is common - there's a lot of ways to do disaster recovery planning with SQL Server. I've recorded a …
2
votes

publishing SQL 2005 Database to Remote Host

Got a few questions in here, so I'll break them each out. 1)How can I merge these two databases into one Devmania mentioned Red Gate Data Compare, so I'll mention …