0
votes
1answer
23 views
Save Sql Recordset into the csv file with well formatted?
I need to dump my sql query result into the text file. i have created the following query,
DECLARE @cmd VARCHAR(2048)
SET @cmd = 'OSQL -Slocalhost '
+ ' -UCRN370 -P …
0
votes
6answers
57 views
how can I add 2 digit together in SQL Server 2000
Hi,
suppose I have a number 62. This is composed of 2 digits
How can add 2 digit together divide by 10 and if result = something like 6.2 just take reminder
declare @Number int …
0
votes
4answers
84 views
How Can I determine is digit Even number?
hi guys
Bit rusty on the old sql.
Can you help?
Given a number eg 1 or 2 or 4 I need to determine if it's even or odd number and do some calculation
depending if even or odd .
…
0
votes
4answers
47 views
How can I parse a string in sql?
Hi
I am passing a string in a stored procedure (sql Server 2000) like this "123456788997877" (please note I dont have delimited pipes etc...)
I need to do some calculations for ea …
0
votes
2answers
23 views
How do you concatenate strings inside of a CONTAINS in SQL Server 2008?
SQL Server 2008 is telling me that it doesn't like the "+" in the CONTAINS.
Not sure what I'm doing wrong here.
INSERT INTO dbo.tblImportTitles
(
ImportTitleGUID,
UserGUID …
2
votes
5answers
56 views
How do I exclude Weekend days in a SQL Server query?
How do I exclude values in a DateTime column that are Saturdays or Sundays?
For example, given the following data:
date_created
'2009-11-26 09:00:00' -- Thursday
'2009-11-27 09: …
0
votes
3answers
23 views
How to use variable in target database name for insert statement?
I want to declare a server name and use this name in an insert statement. So far all i got is an error message.
declare @machine nvarchar(6);
declare @bar nvarchar(3);
set @machin …
0
votes
2answers
41 views
SQL-update squence number for duplicate records
sorry the expected result is
'''''''''''''''''''''''''''''''''''''''''''
regno rowid
100 1
100 2
100 3
200 null
300 4
300 …
0
votes
3answers
25 views
Is it possible to restore a SQL Server database from a virtual drive?
In SQL Server Management Studio, if I attempt to restore a database from a backup file with a command like:
RESTORE DATABASE somedatabase FROM DISK = '<virtual disk>:\<pa …
1
vote
7answers
86 views
How to keep an audit/history of changes to the table
I've been asked to create a simple DataGrid-style application to edit a single table of a database, and that's easy enough. But part of the request is to create an audit trail of c …
1
vote
7answers
85 views
JOIN over multiple columns?
Hi folks,
I have a database-table with the following structure:
id1 | id2 | weight
Now I want to sum up the weight for all entries, that have in id1 or id2 a given value.
SELE …
0
votes
3answers
21 views
dispalying error returned by stored procedure in .aspx form
hey
i have a stored procedure which i use to insert values in a table...if i implement error handling in it using @@ERROR and if i it returns error in a variable @myError can i d …
0
votes
6answers
66 views
Fast way to eyeball possible duplicate rows in a table?
Similar: http://stackoverflow.com/questions/91784
I have a feeling this is impossible and I'm going to have to do it the tedious way, but I'll see what you guys have to say.
I ha …
2
votes
3answers
25 views
Counts for lots of boolean fields in one sql query?
Not sure exactly how to explain this but Imaging you have a table with lots of boolean fields like this......
Table: Cars
Columns:
Automatic: boolean
Silver: boolean
…
6
votes
10answers
201 views
Should NULLS be handled in code or in the database? Advantages and Disadvantages?
I have several questions regarding where to handle nulls. Let me set up a scenario. Imagine I have a table that has 5 varchar(50) columns to use as an example when providing reason …

