3
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 …
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 …
2
votes
SQL split/merge of table partitions: What is the best approach to implement?
I'd recommend the first approach - creating a new partitioned table and inserting into it - because it gives you the luxury of comparing your old and new tables. You can test query plans against b …
12
votes
Emulate MySQL LIMIT clause in Microsoft SQL Server 2000
I've seen that question before from clients, and this was the best explanation I've seen of what your options are and what the impacts are:
…
1
vote
SQL find non-null columns
When you say "a faster way to do this", if you mean a faster way for the query to run, then yes, here's how to do it: break it out into one query per column:
select top 1 field1 from …
1
vote
Data Warehouse - business hours
Is all of your sales data in the same time zone? For example, are you tracking sales for outlets in different time zones, or end users in different time zones? If so, you may want to create that …
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 …
6
votes
Restoring a Backup to a different Server - User Permissions
The easiest way to do this is with Microsoft's sp_help _revlogin (had to put a space in there to fool the formatting), a stored procedure that scripts all SQL Server logins, defaults and passwords, …
4
votes
Performance Tuning SQL - How?
I really like the book "Professional SQL Server 2005 Performance Tuning" to answer this. It's Wiley/Wrox, and no, I'm not an author, heh. But it explains a lot of the things you ask for here, plu …
1
vote
Can we write a sub function or procedure inside another stored procedure - SQL Server
John's sp_helloworld does work, but here's the reason why you don't see this done more often.
There is a very large performance impact when a stored procedure is compiled. There's a Micros …
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
Performance Impact of Empty file by migrating the data to other files in the same filegroup
I've tried this and had mixed luck. I've had instances where the file couldn't be emptied because it was the primary file in the primary filegroup, but I've also had instances where it's worked co …
0
votes
Database Properties “Mirroring” Page
I don't have the answer, but I ran across the same symptom yesterday, and I remembered your question here, hahaha. My problem was that I set up database mirroring using the wizards, but one of the …
1
vote
“CSS-like” fallback cascading data in SQL Server 2005
Wow, you guys are trying way too hard. Here's the easy way: use the COALESCE command, which takes the first non-null value.
SELECT COALESCE(st.Price, rg.Price, gn.Price) AS Price
…
0
votes
TSQL Parameterized SPROC question
The update command doesn't accept dynamic field names.
Instead, what you can do is build a string with the update statement that you want to execute, and then execute it, like this:
…
