Tagged Questions
0
votes
0answers
19 views
Query without having to specify table's schema [migrated]
I imported a bunch of tables from SQL Server 2000 to my 2008 database. All the imported tables are prefixed with my username eg: erpadmin.tablename.
In the table properties it lists 'erpadmin' as the ...
1
vote
1answer
21 views
SQL Server: Splitting string by '/' and put each split element into a different column
I have a table on an external site that I need to copy to a local DB, but with some transformations. One of the columns I have to heavily modify is called product_url. The URL is in the form ...
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
64 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 ...
1
vote
1answer
52 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
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
55 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
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
1answer
22 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 ...
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 ...
-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 ...
1
vote
2answers
78 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
54 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 ...
4
votes
1answer
87 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 ...
0
votes
1answer
27 views
comparing results from live and test servers in sql
here is my situation.
I have 2 databases which is a live and test database, the live is updated with data and the test database has data one month later than the live.
so i am simulating the work ...
0
votes
1answer
55 views
What is the correct sql script for this select Statement?
This is my script
SELECT iBranch_num,
CASE WHEN iPatient_typ=1 THEN COUNT(iPatient_num) ELSE 0 END AS [New Patient],
CASE WHEN iPatient_typ=2 THEN COUNT(iPatient_num) ELSE 0 END AS [Buying ...
1
vote
1answer
262 views
Restore a SQL Server 2000 backup on SQL Server 2012
I have got following error message while restoring a backup from SQL Server 2000 to the latest version. I do not know the old version, now I am using SQL Server 2012 (11.0.3128.0).
The error message ...
0
votes
1answer
40 views
How to query INFORMATION_SCHEMA.VIEWS
While working within SQL Server 2000, on one of the legacy systems, I ran the following query
SELECT * FROM INFORMATION_SCHEMA.VIEWS
where VIEW_DEFINITION LIKE '%XXXX%'
and got a result set with ...
0
votes
2answers
46 views
SQL Server 2000 grouping scenario, every 3 hours
I have a scenario I need help with. I have to create a sql query using SQL Server 2000 that will do the following:
I have data that looks like the table below. I need to find a way to determine an ...
0
votes
0answers
80 views
SQL Server 2008 R2 Upgrade Advisor - Checks Database db_compat level or Server Version?
My current Database Server is SQL Server 2008 R2 and the database compatibility level is 80. I wanted to check the issues with my database if it will be upgraded to compatibility level 100.
I found ...
0
votes
4answers
124 views
How to increment DateTime column by a second for every row?
Suppose that I have this Time value: 09:00:00
And I have a table with a column Time, and I have three records in it.
I want to update those 3 records with that time but with the Time value ...
0
votes
0answers
376 views
Concatenate multiple rows into a single cell in a table with multiple columns?
I am using SQL Server 2000. I book meetings and A/V equipment for a company. I would like to concatenate the string fields in the 'AV Equipment' column.
Here is my current syntax, for reference:
...
0
votes
3answers
42 views
How to select records where all of their statuses are zero?
Suppose I have following tables
Person table and personStatus table.
declare @Persons table
(PersonId int)
insert into @Persons select 10
insert into @Persons select 11
declare @PersonStatus ...
0
votes
2answers
104 views
Need to create triggers for audit tracking, getting “incorrect syntax?”
I have one table Products on which i need to create trigger to update changes (new data) in data in another table Products_audit which has same columns with same data.
I've tried following:
CREATE ...
1
vote
2answers
62 views
Count average cost and update cost of all products in column with conditions
please help me with following:
I have table "Products" and have following task: Count average cost and update cost of all products in column "UnitPrice" with conditions if current price > average ...
-4
votes
1answer
218 views
'ROW_NUMBER' is not a recognized function name [closed]
My query:
select
row_number() over(partition by line_no order by line_NO) as orce
from tx_hsa_summ
This is my query when ever I use the over function I keep getting this error
Msg 195, ...
0
votes
0answers
75 views
Update linked tables with multiple rows
I have an existing database with a table structure like this:
TABLE [Parent]
[Parent_ID] UNIQUEIDENTIFIER
TABLE [ChildA]
[ChildA_ID] INT
[Parent_ID] UNIQUEIDENTIFIER FK -> ...
1
vote
1answer
61 views
Optimizing SQL Server query
SELECT TOP 10 dic.item_cd,
dic.item_knm,
dic.item_enm
FROM tbus.dt_item_com dic
INNER JOIN tbus.mfProd mfp ON dic.item_cd LIKE mfp.prodId
INNER JOIN tbus.plu_category plc ...
0
votes
1answer
144 views
Date variable in SQL server 2000 and crystal report
Due to the constraints I have now, i am still using SQL server 2000 the problem is the client wants a report which should retrieve date variables (namely date_from and Date_to). the date should only ...
0
votes
1answer
60 views
SQL Server Job Dependency
I have a job in SQL Server 2000 which runs every night and refreshes the data, I have another job which runs after the data refreshes and update some records. Both of these jobs are not connected to ...
0
votes
0answers
70 views
PATINDEX parameters SQL Server 2000
Looking for some best practice advice here
I require similar functionality as REGEX however I have both SQL Server 2000 and 2008 instances which run the same codebase.
I would like to store the ...
0
votes
1answer
81 views
SQL Create Table [Default]
Can I specify DEFAULT to get the exact value of a column?
I am creating a Serial table, with range, some has From and To and some are just singular.
Therefore I have two columns: [Serial_Fr] & ...
2
votes
3answers
85 views
sql union remove “semi-duplicates”
I'm doing a union like so
select name, price from products where project = 10 // prio 1
union
select name, price from products where customer = 5 // prio 2
union
select name, price from products ...
0
votes
1answer
95 views
Remote function calls not allowed within a function
Scalar values functions fails after calling remote function. Is there any way to call remote server function ?
This is the code
ALTER FUNCTION [dbo].[fnGetCatalogNumber]
(
-- Add the parameters ...
1
vote
2answers
63 views
Sql Server. Why field value of [almost] any type may be treated as quoted string in Query/DML?
I discovered SUDDENLY that in SQL Server (2000) any field type value may be treated as quoted string (in query or DML).
Question:
Is it normal behavior or accidentally successful result?
Example:
...
0
votes
1answer
112 views
Transact SQL - Inserting All Dates With A Specified Gap In Minutes
I have a table of suitable rooms
DECLARE @tblSuitableRooms TABLE
(
RoomID BIGINT PRIMARY KEY NOT NULL,
StartTime DATETIME NULL,
EndTime DATETIME NULL,
RoomStartTime DATETIME NULL,
...
0
votes
1answer
82 views
Migrate SQL Server 2000 data to SQL Server 2008
I want to migrate 2 database from my old SQL Server 2000 to my new server with the 2008 version.
I do that with the Management Studio 2008 with the export data task. It works fine and no error occurs ...
1
vote
2answers
66 views
How to determine which row caused an error - ERROR CHECKING
I saw that another poster (WolfiG) had asked a very similar question, but I don't see the answer.
(I understand the error message, and am NOT looking for how to fix the error, I AM trying to ...
1
vote
1answer
86 views
Store a XML file
I am currently researching the best way to store a .xml file in SQL Server 2000.
I don't necessarily need to map the xml fields and shred the .xml file into database. I'm really just looking for a ...
0
votes
1answer
516 views
Searching for a string in all tables of database in SQL Server 2000
There are many answers in many places about this question, such as:
Search for a string in an all the tables, rows and columns of a DB
However I am using SQL Server 2000 and need to do the same ...
0
votes
3answers
142 views
How can I put a trigger on a system table to gather historical data?
I'm able to implement trigger on user define table but not on system table (log_shipping_primaries and log_shipping_secondaries), it store info about when the backup .bak file was generated and when ...
0
votes
1answer
121 views
SQL Server 2000 Truncate Deadlock
We are currently running a database on SQL Server 2000. The database constantly imports data from flat files for later querying. This process is done by a series of SQL Server stored procedures and ...
28
votes
1answer
1k views
How to fix the embedded text qualifier issue while exporting data to CSV flat file?
RFC 4180:
RFC 4180 defines Common Format and MIME Type for Comma-Separated Values (CSV) Files. One of the requirements of the RFC 4180 is stated as below. This is the point #7 in the RFC link.
If ...
0
votes
0answers
116 views
SQL Server 2000 not installing
I have a problem.. I'm trying to install SQL Server 2000 Enterprise Edition on to Windows XP Professional in Cloud hosting, and the installation stops in stage "Starting the server and set your ...
1
vote
1answer
75 views
Combining multiple text fields into one text field
I'm trying to merge multiple text columns into one concatenated text column. Each of the fields were previously used for various descriptions, but per new reqs, I need all of those fields to be ...


