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.
…
1
vote
Optimal RAID setup for SQL server
I'd spend a little time making sure your database is efficiently indexed; monitor it for Full Table Scans, make sure the most frequent queries read as little data as possible; I'd take an efficient …
0
votes
Handling large databases
First make sure your database is reasonably healthy, run DBCC DBREINDEX on it if possible, DBCC INDEXDEFRAG and update statistics if you can't afford the performance hit.
R …
1
vote
What factors that degrade the performance of a SQL Server 2000 Job?
While the ArchiveItems process is deleting the 100 records, it is locking the table. Make sure you have indexes in place to make the delete run quickly; run a Profiler session during that timeframe …
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
How to re-install MDAC on SQL server 2008?
I agree with gbn; check that you are allowing remote connections on the SQL server, it is disabled by default in some versions; use the Configuration Manager on the server to verify TCP/IP is enabl …
0
votes
Is it possible in SQL Server to create a function which could handle a sequence?
If you have a lot of code, you're going to want to do a massive overhaul of the code anyway; what works well in Oracle is not always going to work well in MSSQL. If you have a lot of cursors, for i …
1
vote
Import Excel spreadsheet columns into SQL Server database
You could use OPENROWSET, something like:
SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;IMEX=1;HDR=NO;DATABASE=C:\FILE.xls', 'Select * from [Sheet1$ …
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?
…
2
votes
SQL Server simple Insert statement times out
no other statements running on that table at that time.
What about statements running against other tables as part of a transaction? That could leave l …
0
votes
Database Object Placement for Custom Add-on Software
Depends on the vendor; some vendors don't play nice with foreign things in their database; I've seen vendor code that removes anything that is not theirs. Things can disappear during upgrades too. …
3
votes
Implications of full backup of running SQL Server database every 4th minute
If it's a small database, and I'm guessing it is, it probably won't do any harm other than a little extra load, but if they need to make sure they don't lose data, they should be doing daily full b …
1
vote
SQL Stored-Proc using parameter for server name?
declare @servername nvarchar(max)
DECLARE @serverPointer nvarchar(MAX)
declare @qry nvarchar(max)
@serverPointer = @servername + '.master.sys.databases'
set @qry = 'select name from '+@se …
0
votes
Isn’t a SQL Server just for reporting an overhead ?
It may be the best solution depending on the savvy of the users doing the reporting, and what tools they are using; if they have to manually join 8 tables just to get an ad-hoc customer report, the …
0
votes
SQL - improve NOT EXISTS query performance
insert into customers select * from newcustomers where customerid not in (select customerid from customers)
..may be more efficient. As others have said, make s …
