0
votes
SQL 2005 Snapshot Security
You can't change permissions after you take the snapshot, but here's one workaround: instead of having them access the tables directly, require them to use views instead. If the views are used onl …
1
vote
SQL Server2005 memory locking
I've seen permissions problems crop up a lot too - if the account you're using for the SQL Server service doesn't have the right permissions, it can't lock pages in memory even if you're running En …
0
votes
Cloud Hosting options for ASP.NET 3.5 and SQL Server 2008
Keep your eyes out for news at the PDC conference at the end of this month. Microsoft is announcing a slew of solutions. Search the web for Microsoft Red Dog and that'll give you a head start. …
0
votes
How can I add SQL Server database objects to TFS?
The simplest way to do this is with Quest Toad for SQL Server. Disclaimer - I work for Quest, hahaha. Anyway, Toad integrates with TFS so you can check objects in and out of source control. You …
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 …
2
votes
Using virtual servers for hosting SQL Servers
Before hosting SQL Servers inside virtual environments, check if they're currently accessing data on a SAN. If so, are they using multipathing - meaning, do they have more than one HBA plugged int …
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 …
6
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
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 …
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 Server query execution plan shows wrong “actual row count” on an used index and performance is terrible slow
When you're checking execution plans of the stored proc against the copy/paste query, are you using the estimated plans or the actual plans? Make sure to click Query, Include Execution Plan, and t …
1
vote
Microsoft.SqlServer.Management.Smo and its brothers works on SQL2000?
Yes, SMO works on SQL Server 2000:
http://stackoverflow.com/questions/33457/smo-and-sql-server-70
…
4
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 …
3
votes
Identifying Unused Objects In Microsoft SQL Server 2005
With SQL Server 2005, you can use the dynamic management view sys.dm_db_index_usage_stats. The name says "index" but that's a little misleading - every table has an entry in here, even if it doesn …
2
votes
Creating 1K IDs, assigning a transactionID to all the rows with concurrency in mind.
You want to add a second table that holds the available IDs, like this:
AssignedIdsByClient:
AssignedId int identity
ClientId int - the customer you gave th …
