Search Results

0
votes
2answers
56 views

Get maximum value for SQL DateTime in .NET

I could swear there's a property somewhere in SqlClient to do this, but both my Google-fu and IntelliSense have abandoned me. …
0
votes

Have you ever encountered a query that SQL Server could not execute because it referenced too many tables?

Are you using SQL Server 2000 SP3? …
0
votes

Sql to query a dbs scheme

Select Table_Name From Information_Schema.ColumnsWhere Column_Name = 'YourFieldName' …
1
vote

Long-time LAMP Developer moving to VB.NET

Welcome to the light :-) Legion, but it all depends on how complicated your schema and queries are. For basic things, you'll be up and running in no time. Wit …
3
votes

How do I know which SQL Server 2005 index recommendations to implement, if any?

The advice you got is right. Try them all, one by one. There is NO substitute for testing when it comes to performance. Unless you prove it, you haven't done anything. …
6
votes

How much database performance overhead when using LINQ?

Everything you need to know is right here (it's a five part series): http:/ …
1
vote

How should I organize my master ddl script.

Invest the time to write a generic "drop all constraints" script, so you don't have to maintain it. (A cursor over "Select * From Information_Schema.Table_Constraints" and "Select * From Informatio …
1
vote

How do I get dbmail to process items from the queue for SQL Server 2005?

Have you tried sysmail_stop_sp then sysmail_start_sp …
0
votes

ADO.NET Connection Pooling & SQLServer

I second Keith; if you're calling a stored procedure 30,000 times, you have far bigger problems than connection pooling. …
1
vote

How do I get dbmail to process items from the queue for SQL Server 2005?

Could be oodles of things. For example, I've seen (yes, actually seen) this happen after: Domain controller reboot Exchange server reboot Router outage Ser …
1
vote

Why do Sql Server 2005 maintenance plans use the wrong database for dbcc checkdb?

For starters, always remember that GO is not a SQL keyword; it is merely a batch seperator that is (generally) implemented/recognized by the client, not the server. So, depending on context and cli …
14
votes

What are the pros and cons to keeping SQL in Stored Procs versus Code

The performance advantage for stored procedures is often negligable. More advantages for stored procedures: Prevent reverse engineering (if created With Encryption, of course) …
0
votes

How to create a new instance of Sql Server 2005

Have you tried connecting when logged on as domain/server-local Administrator? …
1
vote

What’s the difference between a Table Scan and a Clustered Index Scan?

http://msdn.microsoft.com/en-us/library/aa216840(SQL.80).aspx The Clustered Index Scan logical and …
0
votes

SQL - What are your favorite performance tricks?

Prefix all tables with dbo. to prevent recompilations. View query plans and hunt for table/index scans. In 2005, scour the management views for missing indexes. …

1 2 next
15 30 50 per page