Search Results

6
votes

Parameter Sniffing (or Spoofing) in SQL Server

FYI - you need to be aware of something else when you're working with SQL 2005 and stored procs with parameters. SQL Server will compile the stored proc's execution plan with the first para …
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 …
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

Dynamically create temp table based on resultset from SP

Short answer: no, you can't do that. You have to pre-declare your temp table with the exact number of columns that will be returned from the stored proc. The workaround is to use pe …
1
vote

Dynamic filename for SQL Server backups?

Here's what you really want to know - don't reinvent the wheel. Here's a fantastic script to automate backups that does what you're describing: …
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: …
1
vote

MSSQL: How do I increase the size of the transaction log?

The most important part is the last line of your scenario: "Restore the size of the transaction log." You mean shrink the log back to its original size. This is really dangerous for a lot …
0
votes

is there a code-coverage tool for the TSQL sproc unit tests?

Jeremiah Peschka started building dynamic T-SQL to call every stored proc in the database, but I haven't used this personally: …