Use this tag for questions specific to the 2000 version of Microsoft's SQL Server. Note that as of April 9, 2013, Microsoft no longer supports this version of SQL Server, to the point that even security patches are no longer created.
0
votes
1answer
7 views
How do replication agents enable NOT FOR REPLICATION mode?
How do triggers/identity columns/check contrains marked as NOT FOR REPLICATION get bypassed when the user connecting is a "replication agent"?
If i am an SQL Server replication agent, and i connect ...
1
vote
1answer
21 views
Intermittant “Server does not exist or access denied”
Recently had a server die and had to rebuild it from backups. Now I'm getting intermittent failures from several of my Access applications (which work using linked tables and passthrough queries). I ...
0
votes
1answer
13 views
What does this code line is doing
In reference to my question,
Converting a big stored procedure into a view
In SP i have this code line,
@countCrates = COUNT(DISTINCT ISNULL(countCratesAddress, 'EMPTY')) , @FirstCrateAddres = ...
0
votes
0answers
9 views
Converting a big stored procedure into a view
I have a stored procedure of around 500 lines developed by an ex-employee.
Is there anyway I can convert it into a View. Going through it is hard; it's complex and I don't know much sql.
Is there ...
0
votes
0answers
5 views
Debugging stored procedure in SQL Server 2000
I am a noob when it comes to SQL Server, however if someone can drive me to right road please.
I have a stored procedure al least of 200 lines. and I execute it using EXEC
Since it's returning like ...
-2
votes
1answer
34 views
Error while updating table row [closed]
i am trying to add data to a new row but getting this error,
Table just has 2 columns
ID-1 as varchar(50)
ID-2 as varchar(50)
when i enter this
...
0
votes
2answers
31 views
Writing jpeg image into a SQL Server 2000 style TEXT field
I have a client who is asking me to import jpeg files into their SQL Server database.
The problem is that their database vendor originally build the product in SQL Server 2000 (or earlier) although ...
0
votes
1answer
61 views
sql server 2000 the GROUP_CONCAT() function
I tried to use the GROUP_CONCAT function in SQL Server 2000 but it returns an error:
'group_concat' is not a recognized function name"
so I guess there is an other function for group_concat in ...
0
votes
1answer
11 views
Computing value of field based on next row in SSIS
I have a contract table with BeginDate fields but no end date on a SQL Server 2000 database (cringe). I'm using an SSIS package designed in the 2008 environment to move data from this table into a ...
0
votes
0answers
24 views
In SQL Server 2000 or greater is their a system primary key associated with each row [migrated]
Does a system primary key or unique identifier for each row in a table exist? Like @@ROWID, @@IDENTIFER, or some other identifier that uniquely identifies each row regardless of how it was created. ...
1
vote
1answer
49 views
is there a possibility to run sys.dm_exec_sql_text in sql server 2000
Does any know if this query can be converted and run in sql 2000
SELECT deqs.last_execution_time AS [Time], dest.TEXT AS [Query]
FROM sys.dm_exec_query_stats AS deqs
CROSS APPLY ...
0
votes
2answers
27 views
Referring to a column from a different table in inner join select
I'm trying to join onto an inner query, which is having it's results filtered by a value in the other table, so I can select the top result and use a value in it multiple times in my main select ...
0
votes
1answer
21 views
web application development and database replication
Good Afternoon at GMT +8
I have to deploy a project using ASP.net to create a online payslip viewer. the problem is, our network would not host the web app, it would be from a different network, ...
-1
votes
0answers
28 views
SQL Server does not exist or access denied [closed]
Anybody can assist on how to resolve this kind of error? I have already checked the windows firewall in the server but still fails to connect. I have also tried to do TELNET and fails to connect also.
...
-2
votes
2answers
50 views
T-SQL List Tables, Columns
In T-SQL (SQL Server 2000). How can I list all tables and columns in a database?
Also, in a separate query is there a way to list all columns along with data type and constraints (NULLS, etc). ...
2
votes
1answer
44 views
What do these NULLS mean?
From this page over at Microsoft; http://msdn.microsoft.com/en-us/library/cc626305.aspx, they give examples on how to use paramaterized queries by showing how to properly build an array. Here is a ...
2
votes
1answer
35 views
How can I update Crate IDs of List of Fruits in single SQL query in c#
In reference to my question,
how can i update SQL table logic
I want a query which will do something like this,
I my last question was confusing hence I am asking a different question.
How can I ...
0
votes
2answers
36 views
Conditional Join on multiple fields in the same table
I have a scenario where you have two tables as below where in both tables, either the person_id or organisation_id is populated
Table_1
email_id, person_id, organisation_id, email_address Usage
...
0
votes
1answer
21 views
Using SQLSRV_FIELD_METADATA is there a way to return full name data types, like VARCHAR or INT?
Dear intelligent people of the internets,
Using SQLSRV on SQL Server 2000 I'm trying to echo out the column data types and lengths using the SQLSRV_FIELD_METADATA function but only a number is passed ...
1
vote
1answer
21 views
Max NVARCHAR length
I am waiting a stored procedure that creates a script more than 4000 characters in SQL Server 2000. I am using NVARCHAR (4000) but when I use NVARCHAR (MAX) I am getting this error.
What type can I ...
0
votes
1answer
41 views
Stored Procedure Update no Common Field Table
I have 2 tables, Table A has Order No, Order Line, receiving no, receiving date, receiving qty.
Order Order Line Receiving No Receiving Date Receiving Qty
A 1 455555 12/01/2013 ...
0
votes
2answers
75 views
SQL Server Stored Procedure Creating Duplicates
I am running a website using SQL Server 2008 and ASP.NET 4.0. I am trying to trace an issue down that my stored procedure is creating duplicate entries for the same date. Originally I thought this may ...
4
votes
1answer
40 views
Extracting data based on data in multiple columns and rows
I have the following data which represents a call flow coming into our centre and being transferred to a consultant (CSO).
CallID Sequence Action Location Input NextLocation
...
0
votes
0answers
20 views
Unable to Connect java to SQL Server 2000 consistently
The error says firewall is blocking and TCP connection not established.
I am using SQL Server 2000 and try to connect it using 1433. In network setting tcp/ip is enabled and port 1433 is mentioned.
...
1
vote
2answers
55 views
Identity field disbaled in SQL Server Enterprise Manager
CREATE TABLE Persons
(
P_Id int NOT NULL AUTO_INCREMENT,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255),
PRIMARY KEY (P_Id)
)
I know the above code ...
0
votes
1answer
16 views
Joining three views into one and then using FOR XML RAW
I am trying to join 3 views like this and then output XML,
view4 equal (SELECT *
FROM view1
Join
SELECT *
FROM view2
Join
SELECT *
FROM view3)
FOR XML RAW;
...
-1
votes
1answer
37 views
Getting SQL view output as xml ( is it even possible ? )
I have a massive view and using a SQL query I want to produce output as XML.
So if I query SQL it gives me back XML.
I have no idea how to do it so please point me in right direction.
SADLY it's ...
0
votes
2answers
40 views
Update second digit in a column
How to update the second digit in a 16 digit number to '1' ?
This should be an easy one, but I have not had any luck.
I am working with SQL Server 2000 and 2005 (multiple environments - same ...
0
votes
1answer
24 views
specific sql query optimization. slow performance
I have this query which gives me result which I need but executes very slowly. Slowliness is because [Contoso$Item Ledger Entry] table has ~0.6M records.
Please advice how to optimize/simplify this ...
0
votes
0answers
56 views
Upgrade from IIS 6.0 to IIS 7.5 and SQL Server 2000 to SQL Server 2008
Old environment - ASP.NET 2.0 Application running on Windows 2003 (32bit) environment pointing to another Windows 2003 (32 bit) Machine running SQL Server 2000 database. Connects via connection string ...
1
vote
2answers
77 views
Excel query showing different result than SSMS query
I have had an odd error I cannot explain. Basically, I am running a query to my SQL database using excel and am having non-existent data pop up when it comes to a very particular order in my database.
...
0
votes
2answers
110 views
Performance function SQL Server
I'm creating function to return me a number of worked minutes between two dates.
This returns me the exact number of minuts but when I use it on many records, the treatment is very long.
I have 3 ...
5
votes
5answers
96 views
How to extract file names from a field that contains html content in sql server?
We have a cms system that write html content blocks into sql server database.
I know the table name and field name where these html content blocks reside.
Some html contains links () to pdf files. ...
0
votes
1answer
52 views
A domain error occurred in SQL Server 2000 while updating the data
I have created a function like the one below
ALTER FUNCTION fn_Calc
(@Lat1 Float,
@Lng1 Float,
@Lat2 Float,
@Lng2 Float)
RETURNS Float
AS
BEGIN
Declare @x as Float
Declare @y as ...
-2
votes
0answers
53 views
BCP Command to import xlsx file in sql server 2000 [closed]
Can any one tell me whether it is possible to import an xlsx file into sql server 2000.
If Yes then how can we select only specific columns from the xlsx file to import it in sql server 2000.
Thanks ...
-1
votes
2answers
50 views
How to Return Database Result based on CASE statements?
I have an application right now that has special user roles hardwired into the executable. It is tamper proof, but is a bit of a mess when it comes to new hires, role changes, etc.
So, I want to ...
1
vote
3answers
57 views
What is the correct Select Statement for this?
//This is my Table 1
TransactionNum Type
65658 0
65659 0
65660 449
65661 0
//This is My Table 2
Type ...
1
vote
1answer
45 views
Merge replication between sql server 2008 and 2000
Good day guys, I have one issue I'm trying to organise Merge replication between two servers 2000 and 2008. I tried two variants:
First: I made publication at Sql server 2000 and when I tried to ...
0
votes
0answers
25 views
Is there any difference between executing a bare-word stored procedure and using EXEC (in ADODB)?
Context: JScript, ADODB.Connection, Windows Server 2003, SQL Server 2000
Given the following code
var dsn = "DRIVER={SQL ...
4
votes
1answer
84 views
The column prefix '%s' does not match with a table name or alias name used in the query
i'm trying to run a query against a remote 2000 server; but the query that the local server is generating is incorrect, and causes the remote server to return the error:
The column prefix ...
1
vote
2answers
42 views
SQL Generate Missing Records in SELECT
Using MS SQL Server 8.0.760 (2000)
I have a Table like this:
Table A
Day | Hour | Value
2012-10-01| 12 | 780
2012-10-01| 14 | 678
2012-11-02| 08 | 123
2012-11-02| 09 | 473
Expected ...
0
votes
2answers
100 views
Convert varchar to nvarchar
My company use sql server 2000 to store data . There is a table with a column named 'Vattu' .
The problem is that : this column declare as varchar data type , however it's save both unicode and anscii ...
0
votes
0answers
33 views
Q Stored procedure and trigger using ORM model
I have this Model of a thermostat which shows the different relationships between the elements of the database:
picture of orm model in this link: Problems with writing SQL Stored Procedure + Trigger
...
0
votes
0answers
19 views
Fairly simple stored procedure timing out. Why?
Context: SQL Server 2000, Windows Server 2003
This stored procedure is timing out and I can't figure out why. Any clues?
CREATE PROCEDURE TransferIssuesDelete
AS
INSERT INTO CoreTable
SELECT ...
-2
votes
1answer
40 views
Can't create new table
I'm new to SQL Server 2000 and face a problem. I want to make a new table but I encounter an error message with the following code:
create table Buku
(
Kode_Buku char(5) constraint PK_Kode_Buku ...
0
votes
2answers
45 views
Alternative to relying on execution order of conditions in SQL 'where' clause
In languages such as JavaScript you can have 2 conditional statements and "protect" the second one with the first one. For instance:
if( scarryObject != null && scarryObject.scarryMethod() ) ...
0
votes
0answers
38 views
Invalid cursor state'
Query Engine Error: '24000:[Microsoft][ODBC SQL Server Driver]Invalid cursor state'
could you please help me
0
votes
1answer
323 views
How to store UTF-8 bytes from a C# String in a SQL Server 2000 TEXT column
I have an existing SQL Server 2000 database that stores UTF-8 representations of text in a TEXT column. I don't have the option of modifying the type of the column, and must be able to store non-ASCII ...
2
votes
2answers
76 views
SQL Database Connection is not establishing with java Web Application server which is in DMZ
I have a Java web application which deployed at DMZ server. I have written the below code for local machine database connection establishment in web application
url= jdbc:microsoft:sqlserver://" + ...
0
votes
1answer
44 views
Returning Max value from Multiple rows/columns
I am using SQL 2000 for this. Given the following table:
F1 D1 D2 D3 LN
==================================================
1 1/1 1/1 1/1 ...
