5
votes
Simple way to programmatically get all stored procedures
Just read the output of SELECT NAME from SYS.PROCEDURES , then call EXEC sp_HelpText SPNAME for each stored procedure, you'll get a record set with one line of text per row.
…
0
votes
Change SQL Server 2005 Server Collation
If possible, I would uninstall and reinstall rather than trying to change it. Changing it without re-installing is not a simple process. To change from the default during install, just uncheck the …
0
votes
Diagnosing Deadlocks in SQL Server 2005
I would continue to tune everything; how are is the disk subsystem performing? What is the average disk queue length? If I/O's are backing up, the real problem might not be these two queries that a …
1
vote
Simulating queries of large views for benchmarking purposes
For data for testing CRM type tables, I highly recommend fakenamegenerator.com, you can get 40,000 fake names for free.
…
0
votes
SQL Server “AFTER INSERT” trigger doesn’t see the just-inserted row
Is it possible the INSERT is valid, but that a separate UPDATE is done afterwards that is invalid but wouldn't fire the trigger?
…
1
vote
SQL Server 2005: Audit random record deletion.
Finding the culprit with profiler could be like finding a needle in a haystack, especially on a busy system; if you can't find it with filters like Edoode suggests, try to minimize the noise by eli …
5
votes
Saving / Caching Stored Procedure results for better performance? (SQL Server 2005)
If it truly takes that long to run, you could schedule the process to run using SQL Agent, and have the output go to a table, then change the web application to read the table rather than execute t …
1
vote
converting rows into columns in t-sql - sql server 2005
Assuming your data is in aTable:
create FUNCTION toCSV (@id int)
RETURNS varchar(100)
AS
BEGIN
DECLARE @List varchar(100)
SELECT @List = COALESCE(@List + ', ', '') +
CAST( …
0
votes
SQL Server - An error occurred while executing batch. Error message is: The directory name is invalid.
Is the "Default Location for saving Query Results" set to a valid path in Tools/Options/Query Results/SQL Server/General?
Do the TMP/TEMP environment variables point to valid directories? …
4
votes
SQL Server 2005 stored procedure performance problem
Autogrows on the database? Check for messages in the SQL error logs.
Page splits due to inserted records? Check table fragmentation with DBCC SHOWCONTIG
Antivirus scans? Do …
2
votes
database mirroring/replication, SQL Server 2005
They are referring to the fact that you can't perform queries on the mirrored copy, but you can get around that limitation by creating a snapshot of the mirrored database. This is often done to cre …
1
vote
Determining optimal log size in SQL Server 2005
Just run
dbcc sqlperf(logspace)
before backups, but don't undersize the logs, allow for growth, and abnormally busy days or activity. Leaving autogrow c …
0
votes
SQL putting two single quotes around datetime fields and fails to insert record
Is objPropConsumer.MoveDate a string? It looks like it is populated with a string that has apostrophes at the beginning and end. Try replacing the objPropConsumer.MoveDate with a constant '2009-04- …
0
votes
Weird SQL Server query problem
You could try the OPTIMIZE FOR hint to force a plan for a given constant, but it may have inconsistent results; in 2008 you can use OPTIMIZE FOR UNKNOWN
…
1
vote
Restrictions on a Log Shipped database
Database/logs growths/shrinks are fine, they will get shipped over and the standby will grow/shink as well. The only thing I'm aware of that will break things are:
BACKUP LOG WITH TRUNCATE_ …
