Tagged Questions
Use this tag for questions specific to the 2000 version of Microsoft's SQL Server.
33
votes
19answers
10k views
Can I protect against SQL Injection by escaping single-quote and surrounding user input with single-quotes?
I realize that parameterized SQL queries is the optimal way to sanitize user input when building queries that contain user input, but I'm wondering what is wrong with taking user input and escaping ...
21
votes
6answers
442 views
Why does SQL Server 2000 treat SELECT test.* and SELECT t.est.* the same?
I butter-fingered a query in SQL Server 2000 and added a period in the middle of the table name:
SELECT t.est.* FROM test
Instead of:
SELECT test.* FROM test
And the query still executed ...
20
votes
3answers
6k views
SQL Server: How to Join to first row
i'll use a concrete, but hypothetical, example.
Each Order normally has only one line item:
Orders:
OrderGUID OrderNumber
========= ============
{FFB2...} STL-7442-1
{3EC6...} ...
16
votes
1answer
664 views
What exactly does the T-SQL “LineNo” reserved word do?
I was writing a query against a table today on a SQL Server 2000 box, and while writing the query in Query Analyzer, to my surprise I noticed the word LineNo was converted to blue text.
It appears ...
15
votes
5answers
17k views
t-sql replace on text field
I have hit a classic problem of needing to do a string replace on a text field in an sql 2000 database. This could either be an update over a whole column or a single field I'm not fussy.
I have ...
15
votes
10answers
2k views
How do you deal with transport-level errors in SqlConnection?
Every now and then in a high volume .NET application, you might see this exception when you try to execute a query:
System.Data.SqlClient.SqlException:
A transport-level error has occurred when ...
11
votes
13answers
2k views
Is SQL IN bad for performance?
I have a query doing something like:
SELECT FieldX, FieldY FROM A
WHERE FieldW IN (108, 109, 113, 138, 146, 160,
307, 314, 370, 371, 441, 454 ,457, 458, 479, 480,
485, 488, 490, 492, 519, 523, 525, ...
10
votes
11answers
2k views
Is there a “poor man's” alternative to RedGate for scripting out entire database schema?
I'm in a situation where I would to generate a script for a database that I could run on another server and get a database identical to the original one, but without any of the data. In essence, I ...
8
votes
1answer
541 views
TSQL to find if logins have password same as loginname?
I want to check if SQL logins have passwords same as thier login name. E.g. login name 'abc123' has password= 'abc123'.
I need to do this for a security audit across many 2000 and 2005 servers.
Is it ...
8
votes
1answer
8k views
SQL Server : Creating an index on a table variable
Can you create a index on a table variable in SQL Server 2000?
i.e.
DECLARE @TEMPTABLE TABLE (
[ID] [int] NOT NULL PRIMARY KEY
,[Name] [nvarchar] (255) COLLATE DATABASE_DEFAULT NULL ...
8
votes
6answers
858 views
How can I check for average concurrent events in a SQL table based on the date, time and duration of the events?
I have a set of call detail records, and from those records, I'm supposed to determine the average concurrent active calls per system, per hour (at a precision of one minute). If I query 7pm to 8pm, I ...
8
votes
5answers
5k views
Schema, Owner for objects in MS SQL
By default, objects (tables, stored procedures, etc) are set up with the dbo owner/schema (I think ms sql 2000 calls it owner, while ms sql 2005 calls it schema)
The owner/schema is really a role or ...
7
votes
3answers
91 views
11 seconds to delete 240 rows in SQL Server
i am running a delete statement:
DELETE FROM TransactionEntries
WHERE SessionGUID = @SessionGUID
The actual execution plan of the delete is:
Execution Tree
--------------
Clustered Index Delete(
...
7
votes
2answers
306 views
SQL Server Enterprise Manager - Mass Delete of Tables and Changing Ownership of Tables
I have pretty much no experience with SQL Server's Enterprise Manager so I am not sure if this is even possible (or hopefully laughably simple!)
During an import into a database something has ...
7
votes
1answer
187 views
Efficient way to alter 100GB table
We have a number of databases which store 10s to 100s of gigabytes of data in one of the tables. It contains image data. The problem is that a lot of these databases were created improperly. ...
7
votes
1answer
2k views
What is the difference between “db_owner” and “the user that owns the database” in SQL Server 2000?
I'm trying to better understand why one of our database update scripts failed to work properly at a particular customer site, and narrowed it down (I think) to database ownership and roles.
...
7
votes
5answers
5k views
How can I find sql server port number from windows registry?
How can I find sql server port number from windows? Is there any generic way to find port number for sql server 2000, 2005 and 2008?
7
votes
3answers
3k views
What Causes “Internal connection fatal errors”
I've got a number of ASP.Net websites (.Net v3.5) running on a server with a SQL 2000 database backend. For several months, I've been receiving seemingly random InvalidOperationExceptions with the ...
7
votes
13answers
14k views
SQL query to return one single record for each unique value in a column
I have a table in SQL Server 2000 that I am trying to query in a specific way. The best way to show this is with example data.
Behold, [Addresses]:
Name Street City ...
7
votes
5answers
12k views
WHERE IS NULL, IS NOT NULL or NO WHERE clause depending on SQL Server parameter value
I have a stored procedure in SQL Server 2000 that performs a search based on parameter values. For one of the parameters passed in, I need a different WHERE clause depending on its value - the problem ...
7
votes
5answers
403 views
What's the best way to store a title in a database to allow sorting without the leading “The”, “A”
I run (and am presently completely overhauling) a website that deals with theater (njtheater.com if you're interested).
When I query a list of plays from the database, I'd like "The Merchant of ...
6
votes
3answers
144 views
DataInconsistancy in SQL Server 2000 due to Long Running Transaction
We are facing a situation in one of our production server.
We have a particular Store procedure which perform an Insert operation on one of the biggest tables in the DB (It has more than a few million ...
6
votes
4answers
256 views
How can I query 'between' numeric data on a not numeric field?
I've got a query that I've just found in the database that is failing causing a report to fall over. The basic gist of the query:
Select *
From table
Where IsNull(myField, '') <> ''
And ...
6
votes
4answers
434 views
SQL: Group By on Consecutive Records
A slightly tricky SQL question (we are running SQL server 2000).
I have the following table, StoreCount -
WeekEndDate StoreCount
2010-07-25 359
2010-07-18 359
2010-07-11 358
...
6
votes
8answers
882 views
How do I limit a LEFT JOIN to the 1st result in SQL Server?
I have a bit of SQL that is almost doing what I want it to do. I'm working with three tables, a Users, UserPhoneNumbers and UserPhoneNumberTypes. I'm trying to get a list of users with their phone ...
6
votes
8answers
1k views
6
votes
1answer
338 views
How to figure out which column/value the COALESCE operator successfully selected?
I have a table that I wish to find the first non-null value from 3 (and only 3) columns for each ID starting with Col1 then to Col2 then to Col3
Note: Col3 is NEVER NULL
ID Col1 Col2 Col3
...
6
votes
6answers
4k views
What is the limitation in the length of an SqlCommand query
Is there a limitation in the length of a query that SQL Server can handle?
I have a normal SqlCommand object and pass a very long select statement as a string.
The query seems to be fine when ...
6
votes
5answers
2k views
SQL Server: Floor a date in SQL server, but stay deterministic
(This is related to Floor a date in SQL server.)
Does a deterministic expression exist to floor a DATETIME? When I use this as a computed column formula:
DATEADD(dd, DATEDIFF(dd, 0, ...
6
votes
4answers
1k views
Reducing the overhead of a SQL Trace with filters
We have a SQL 2000 server that has widely varied jobs that run at different times of day, or even different days of the month. Normally, we only use the SQL profiler to run traces for very short ...
6
votes
15answers
439 views
Why should I upgrade from SQL2000 to SQL2005?
I'm looking for the single biggest reason you are glad that you've already made the jump from SQL2000 to SQL2005.
5
votes
3answers
63 views
Database schema advice for storing form fields and field values
I've been tasked with creating an application that allows users the ability to enter data into a web form that will be saved and then eventually used to populate pdf form fields.
I'm having trouble ...
5
votes
1answer
135 views
How Can I “flatten” Out My TSQL Results?
Preface: I have looked all over stackoverflow.com and google for this. I have found hundreds of possible answers but either its not the correct SQL Server version or its not for SQL Server at all and ...
5
votes
3answers
139 views
Query extremely slow in code but fast in SSMS
I have a fairly simple query that I keep getting timeouts (it takes over three minutes to complete, I stopped it early so I could post this question) on when it is running in code, however when I run ...
5
votes
1answer
401 views
sql server 2000 try catch
There is no try...catch in sql server 2000 like in 2005?
If not what is the equivalent for try...catch in 2000?
If there is, what is the correct syntax?
5
votes
2answers
317 views
Why do statistics get out of date so quickly in SQL Server?
We have a somewhat complex SQL update query which gets run a few times a month. Most of the time it seems to run really fast, but on some databases, it takes a really long time. After running an ...
5
votes
2answers
584 views
TSQL: Create a Custom Identity off a Custom Identity? (Managing Database Revisions)
I would like to create a custom identity based off an custom identity. Or perhaps something similar to an identity that functions like an auto-incrementing key.
For example if I have an primary key ...
5
votes
2answers
231 views
T-SQL script - logic issues with timeline
Two temp tables are created and then loaded...Here's the schema.
Create table #SH ([date] datetime,
sched_id int,
agent_id int)
Create table #SD (sched_id int,
start_minute ...
5
votes
7answers
714 views
Big parameter list for SQL query
I have a big list of int parameters for a SQL query:
update mytable set col='xyz'
where id in (/* thousands of ints */)
My problem is that in SQL Server 2000 there are a limit for parameters.
I ...
5
votes
3answers
1k views
Selecting SUM of TOP 2 values within a table with multiple GROUP in SQL
I've been playing with sets in SQL Server 2000 and have the following table structure for one of my temp tables (#Periods):
RestCTR HoursCTR Duration Rest
...
5
votes
3answers
1k views
Deadlock caused by SELECT JOIN statement with SQL Server
When executing a SELECT statement with a JOIN of two tables SQL Server seems to
lock both tables of the statement individually. For example by a query like
this:
SELECT ...
FROM
table1
LEFT ...
5
votes
5answers
1k views
SQL Server Management Studio: Import quietly ignoring 99.9% of data
The Problem
i'm trying to import data into a table using SQL Server Management Studio's Import Data task. It only brings in 26 rows, out of the original 49,325. (Edit: That's where 99.9% comes from: ...
5
votes
1answer
1k views
JDBC connection to very busy SQL 2000: selectMethod=cursor vs selectMethod=direct?
In the process of trying to help out an app dev team with performance issues on a SQL 2000 server (from a bunch of Java applications on separate app servers), I ran a SQL trace and discovered that all ...
5
votes
4answers
390 views
Select exactly one row for each employee using unordered field as criteria
I have a data set that looks like the following.
EMPLID PHONE_TYPE PHONE
------ ---------- --------
100 HOME 111-1111
100 WORK 222-2222
101 HOME 333-3333
102 ...
5
votes
2answers
3k views
Wrong week number using DATEPART in SQL Server
I've got the problem that
select datepart(ww, '20100208')
is returning as result week 7 in SQL Server 2000. But 08.02.2010 should be week 6 according to the ISO 8601 specification! This is causing ...
5
votes
2answers
372 views
When do you compact a Sql Server Database?
We have a SQL Server 2000 database that holds most of our teams databases running on a relatively old server.
Lately we have been having some weird slow down issues on some of our database calls in ...
5
votes
2answers
3k views
NHibernate paging with SQL Server
When using SetFirstResult(start) and SetMaxResults(count) methods to implement paging I've noticed that the generated query only does a select top count * from some_table and it does not take the ...
5
votes
5answers
1k views
How can I find unindexed foreign keys in SQL Server
I have a SQL Server 2000 database with approximately 220 tables. These tables have a number foreign key relationships between them. Through performance analysis, we've discovered a number of these ...
5
votes
1answer
2k views
SQL Server Tempdb LOG file growing
On a SQL Server 2000 system, I have a templog.ldf file that seems to grow without bound! But when I check, there are never any open transaction in the tempdb (using DBCC OPENTRAN), nor do I ever use ...
5
votes
4answers
3k views
How to insert JPEG into a SQL Server 2000 database field of image type using Transact SQL
I'm trying to figure out how to insert a .JPG file into a SQL Server 2000 database field of type image using Transact SQL. Thanks.