1
vote
Simulating queries of large views for benchmarking purposes
You didn't mention if you're using SQL Server 2008. If you use 2008 and you use Data Compression, be aware that random data will act very differently (slower) than real data. Random data is much …
9
votes
Advantages of MS SQL Server 2008 over MS SQL Server 2005?
Kevin Kline wrote a pretty good whitepaper summing up the top ten features in 2008 that make it worthwhile.
SQL 2008 Worth the Wait …
1
vote
Moving SQL2005 app to SQL2008
Change your compatibility level on the database after moving it to the 2008 server. By default, it will still stay at the old compatibility level. This will let you use the new goodies in SQL 200 …
8
votes
Can I use SQL Server Management Studio 2005 for 2008 DB?
The other question you asked was about managing 2005 servers with SSMS 2008 - and yes, you can do that. SSMS 2008 can manage 2008, 2005, 2000. I actually recommend that everybody use the latest S …
2
votes
Undo changes to MSSQL 2005 database
In case anybody else has the same problem - Were you doing transaction log backups every X minutes? If so, you can use Quest LiteSpeed's log reader or Quest Toad for SQL Server's log reader to rea …
4
votes
Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?
Yes, but make sure that ALL of your servers are SQL 2008. If you have development, test, QA or disaster recovery servers, all of them will need to be 2008, since 2005 servers won't be able to rest …
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 …
1
vote
How do I start extending MS SQL Reporting Services?
There's a lot of third party extensions available like the Dundas ones:
Dundas SQL Reporting Services add-ons …
0
votes
Very poor (non-completing) performance of UNION in SQL Server 2005
If you can post the query execution plan in XML format, that'll help us determine what parts of the query are causing problems. In SSMS, click Query, Display Estimated Execution Plan, and when it …
3
votes
Stored Procedures MSSQL2005
There's a book-style answer to this, and a real-world answer.
First, for the book answer, you can use sp_depends to see what other stored procs reference the table (not the individual colum …
1
vote
SQL 2005: should I roll my own log shipping?
There's really two parts to your question:
Is native log shipping good enough?
If not, whose log shipping should I use?
Here's my two cents, but …
2
votes
Cannot delete SQLServer2005 data or log files
Antivirus software is one that catches DBAs - the MDF/LDF files are pretty big, and I've seen cases where the AV software grabs a lock on the files to scan them, but it takes forever due to the fil …
1
vote
Partitioning in SQL Server 2005
You can't create SQL Server partition functions with non-deterministic functions like getdate(). If you populated your database with data spanning 10 years, and then simply stopped and wa …
1
vote
SQL order by and left outer join doesn’t have correct order
Most likely the two SQL Servers are slightly different versions. There's a known hotfix for this:
http://support.microsoft. …
2
votes
How to switch between databases
It sounds like you're only reading from the database. If that's the case, check out SQL Server 2005's snapshot capabilities. You can have a read-only snapshot of a database, and query it just lik …
