all groups > sql server programming > july 2004 > threads for tuesday july 13
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Records subclassing architecture
Posted by Guy Gani at 7/13/2004 11:46:58 PM
Hi,
I need to design a table that stores products prices and can be subclassed.
Each product has it's own unique ID and a default price. Those prices can be
changed for specific customers, however for other customers without a
specific price, the default price is to be user.
It gets more comp... more >>
uniqueidentifier column
Posted by Fernando Chilvarguer at 7/13/2004 9:00:18 PM
I'm using a uniqueidentifier column as the "identity" primary key column for
a table.
How can I retrieve the value of that column after an insert (using NEWID())?
I tried something like:
"INSERT INTO TABLE........... SELECT @@Identity"
The @@Identity does not work in this case. It returns NUL... more >>
SP Problem
Posted by Wayne Wengert at 7/13/2004 8:42:57 PM
I am trying to write a SP which will accomplish the following:
Return a row for every entry in the "Regionals" table where the field "CG"
is 1 and for those rows whose ID ("RegionalID") appears in the
RegRegistration table for a selected value of UnitID, certain fields will
have values (instea... more >>
how to know dependent tables?
Posted by Kamran at 7/13/2004 5:57:29 PM
Hi,
In my upsize program I have to first delete record(s) in each SQL table and
then insert data. If table has 'Enforced relationship for INSERTs and
UPDATEs' checked, then I cannot delete records before deleting in reference
table(s).
How can I extract table(s) list (by SQL queries) of su... more >>
DEADLOCKS
Posted by Gina L. Hernandez at 7/13/2004 5:03:39 PM
Hello :
I have a table called invmstr, and my WEB-SYSTEM written in VISUAL.NET and
ASP.NET and SQLSERVER, is giving me a lot of deadlocks because all my users
are trying to update, write or delete this table. What should I set in
the database or in my stored procedures to avoid this deadl... more >>
problem with query (joins and sp)
Posted by Chris at 7/13/2004 4:49:01 PM
Hi,
I have the foll query
SELECT number,sum(po_quantity_sold)
from po_data_file
join {call PO..P_GetSale}
on number = number
and po_file_date >= 2004-01-01
group by po_quantity_sold
The stored proc called is
USE OP
GO
IF EXISTS(SELECT name FROM sysobjects
WHERE na... more >>
how to assign the contents of a field to a variable
Posted by Robin Boyd at 7/13/2004 4:32:54 PM
Hi all,
I am trying to assing the value of a field (stored in a variable) to another
variable. I have tried various approaches with no success :(
here is the code I am working with...
--SELECT@CurrFieldValue = CustomerID FROM[Inserted]
SET @MySQL = 'SELECT @CurrFieldValue = ' + @CurrFiel... more >>
get the MAX of each set
Posted by Matias Woloski at 7/13/2004 4:21:39 PM
I have this set of data
number dateEntered
1 2004-06-15
1 2004-06-18
2 2004-06-15
3 2004-04-15
3 2004-05-15
I want a query that allow me to get the MAX (dateentered) of each set. So I
would get this:
number dateEntered
1 2004-06-18
2 ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
CASE Statement Problems
Posted by Jeremy at 7/13/2004 3:27:03 PM
I am attempting to run a CASE statement. Unfortunatley, I am having problems.
The following statement works great:
SELECT MESSAGE_CONTENT =
CASE
WHEN (TRANS_ID = 1089486738 AND MESSAGE_CONTENT='ID_FLAG="YES" INTRODUCTION_TYPE="PRODUCTION"') THEN Success
ELSE 'Z'
END
FROM T_TABLE
... more >>
Syntax error converting character string to smalldatetime data typ
Posted by Arzan at 7/13/2004 3:25:02 PM
Hi,
I am trying to load data from table to another. My source table contains smalldatetime values stored with datatype char(19) and my destination table has the datatype smalldatetime.
Ideally when i insert data from char to datetime the convertion shall take place implicitly however it does... more >>
How to Order these Records?
Posted by Miguel Dias Moura at 7/13/2004 2:41:13 PM
Hello,
i have this SQL code in my dataSet (I am working in ASP.Net / VB):
SELECT Author, COUNT(Author) AS totalDocuments
FROM documents
GROUP BY Author
ORDER BY COUNT(Author) DESC
What i want to do is this:
> When there are 2 Authors which published the same number of documents, i
wa... more >>
Querying data from part of a column in a database table
Posted by Jimmy Tran at 7/13/2004 2:36:38 PM
Hi All,
I just have a simple question and I hope I posted this message in the
right forum; if not, please forgive me.
I have a table from someone that contains employee names, the table has
only one column which holds lastname, firstname, and middle initial.
TABLE EMLOYEE:
Name
Miller, ... more >>
Can I optimize this query?
Posted by F HS at 7/13/2004 2:36:33 PM
Hi!
I have written a stored proc that supports a MS access front-end app
which allows to pass 4 or a combo of any four parameters. Please see the
code:
CREATE proc up_FTr
@contract varchar(20) = '%' ,
@CCAN varchar(40) = '%' ,
@customer varchar(40) = '%' ,
@legacy varchar(40) ... more >>
How to sort NULLs?
Posted by Shabnam Naghshineh at 7/13/2004 2:36:19 PM
Hi All,
I have a table with 3 columns. Product, Location and Value. The data
looks like this:
NULL NULL 100
Atlanta NULL 50
Atlanta Cookie1 30
Atlanta Cookie2 20
Dallas NULL 120
Dallas Cookie1 80
Dallas ... more >>
backup-how to find mapped drive
Posted by rajani at 7/13/2004 2:35:02 PM
Hi friends
I am trying to create a backup job on sql server 2000 server.
I want backup files to be on different machine.I created a mapped drive thr windows explorer.
when i open sql server (destination path on sql server back wizard screen) i dont see the mapped drive.it only displays current ma... more >>
datetime Datatype
Posted by Panks at 7/13/2004 2:27:05 PM
datetime Datatype displays both time and date. I want to display only date
and not time. Is there any such datatype?
Panks
... more >>
OPENROWSET parameter list
Posted by Tzvika at 7/13/2004 2:09:35 PM
SELECT a.*
FROM OPENROWSET('SQLOLEDB','seattle1';'manager';'MyPass',
'SELECT * FROM pubs.dbo.authors ORDER BY au_lname, au_fname') AS a
how can I replace the provider name with a parameter ?
Why doesnt that work :
DECLARE @prov varchar(50)
select @prov = 'SQLOLEDB'
SELECT a.*
FROM O... more >>
Re: Update Trigger
Posted by boblotz2001 NO[at]SPAM yahoo.com at 7/13/2004 1:58:57 PM
Sounds like your application is trying to commit the transaction even
though your trigger did a ROLLBACK. See if the application is missing
the error handling code to detect that the transaction has been
aborted.
Bob
... more >>
Rounding to nearest x dollars
Posted by Chris at 7/13/2004 1:50:49 PM
I need an easy way to round a value up or down to the nearest x dollars.
E.g. $11.50 - I want to round up to the nearest 5 dollars to return $15.
Is is easily possible to achieve this in SQL, maybe using a function?
Thanks,
Chris
... more >>
Restoring log problem...
Posted by Greg at 7/13/2004 1:47:43 PM
The SQL statement below works for other but not for me. Anyone know why?
RESTORE LOG testdb FROM DISK=N'C:\Program Files\Microsoft SQL
Server\MSSQL\BACKUP\test-Backup.BAK' WITH RECOVERY,STOPAT='07/12/2004'
The error I get is: "The preceding restore operation did not specify WITH
NORECOVERY ... more >>
question about tempdb
Posted by joe at 7/13/2004 1:33:16 PM
Hi everyone, is it true that everyone who has access to a sqlserver will
have full right to tempdb?
if this is true, then following steps are not neccessary. please give your
commands. thanks
exec tempdb..sp_grantdbaccess 'joe'
exec tempdb..sp_addrolemember 'db_owner','joe'
... more >>
Trigger Question
Posted by GeorgeP at 7/13/2004 1:09:07 PM
Hi All,
I have a table with 3 fields in it.
drinkName varchar(25),Ingredient(varchar(50),Per(float)
I need to create either a check constraint or a trigger to
limit the sum(Per) to a max of 100%
I have been banging my head against the wall trying to
solve this. Can anyone shed a lit... more >>
Between Datetime value
Posted by Drew at 7/13/2004 12:57:45 PM
I know this topic has been brought up a whole bunch, but after searching the
newsgroups, I haven't found a fix.
I have a small table with 5 fields, ApptName, ApptDoctor, ApptDate,
ApptTime, ApptNotes.
I need to retrieve the data from the database that is between 2 dates. I
have tried this ... more >>
UPDATE column with different values
Posted by Nate S at 7/13/2004 12:54:02 PM
I want to update a column in a table with a value. The value would be determined by the amount in another column in that table. Basically, I have a po_text1 column and a total column. I want the po_text1 column to be updated with 'Expense' if the total column is <= 500 or be updated with 'Capital' i... more >>
SQL Server 2005 - Beta 2
Posted by Kent leonard at 7/13/2004 12:39:39 PM
What's the word on when it will be released? All data I
find says first half of 2004 (which just ended). I have a
MSDN Universal subscription.... more >>
recursive queries
Posted by harshal mistry at 7/13/2004 11:59:59 AM
I have a following structure
table A
userid ReferedBy
B A
C B
Table B
Userid compID
A Alpha
B self
C self
now the scenario is :
the user A is from the company "Alpha"
he introduces user B, who registers in the system his company bcomes "self",
now B inturn refers u... more >>
Export Database
Posted by Novice at 7/13/2004 11:56:44 AM
For a database called "test" with two tables "table1" and "table2"
what is the SQL command to EXPORT all of the records in each table to
a csv file.
Can it be done where the first record is the field names?
... more >>
Restoring
Posted by Brian Shannon at 7/13/2004 11:50:32 AM
My OS just crashed on my test server and I have a bunch of procedures in the
DB's. I can piggy back the drive to grab any data I need from the hard
drive. I need to restore the DB's that were on the test servers drive.
If I get the .mdb and .ldf files from the disk can I attach them to anothe... more >>
Credit Balance
Posted by Blaumann at 7/13/2004 11:30:19 AM
This should be an easy one, but I am drawing a blank...
I have CreditAccounts with a Credit limit.
Say Account#1 has $4000 credit limit.
Account#2 had a $10000 credit limit.
CREATE TABLE Accounts(AccountID int, CreditLimit int)
Then I have a charge table:
Account#1, spend $100 on July-2
... more >>
Searching in a field for the actual character %
Posted by Jesse O at 7/13/2004 11:29:44 AM
I want to search for any field with the character % in it.
Of course this is the wildcard, so how can I find fields with the actual
charater in it?
select
name
from
product
where
name like ??
... more >>
TOP with variable
Posted by Andre at 7/13/2004 11:00:49 AM
I am trying to use a variable with the TOP function, but
I noticed it doesn't work. Can anyone tell me how to
dynamically change the number that the TOP function
returns. I am trying to use for a paging app we have on
the web. Thanks.
SELECT TOP @pagesize * FROM ProviderSearch WHERE Pr... more >>
Delete Query?
Posted by Chris Cairns at 7/13/2004 10:47:55 AM
I need to do something like the following. I need to delete records in one
table using a query from another table. This looks like it would work but
it returns more than one record which is not allowed. Is there a way to
use a join and specify which table to delete?? How is this done?
... more >>
Show databases
Posted by Novice at 7/13/2004 10:47:31 AM
WHat is the proper SQL Command for osql.exe to show all the databases
and all the tables on the local ms sql server?... more >>
IsNumeric and Cast
Posted by John Francisco Williams at 7/13/2004 10:40:21 AM
I have a column that has a substring with values that are supposed to be
numeric, but sometimes there's garbage in the field. If I use "IsNumeric" to
test the field, it returns as numeric even when there's letters. I first
thought there were hex, but that doesn't seem to be the reason. See this:
... more >>
Numeric range query help needed
Posted by manso at 7/13/2004 10:14:09 AM
Hi,
I have a tblTable1 containing approximately 1.5 million rows. Looks like
this
==================
create table tblTable (
[Col1] [numeric](10, 0) NOT NULL ,
[Col2] [numeric](10, 0) NOT NULL ,
[Col3] [varchar] (150) NOT NULL )
==================
I have a clustered unique index on... more >>
Syntax problem with select from (if (exists (select....
Posted by Jochen Daum at 7/13/2004 10:02:05 AM
Hi,
I want to integrate a subquery returning a boolean value into a query,
but I seem to have a synatx problem:
Simplified it is
select x from (if (exists (select 1)) 1 as x) as y (x)
I am always confused by the lack of a 'then' so I think thats probably
where my mistake lies, but I ca... more >>
monitoring users tables...
Posted by Viviana Kern at 7/13/2004 9:40:13 AM
In our system we have triggers of several tables.
Last day when a worked whith system, I detected that the
trigger was not found. I executed sp_help trigger and the
objects not found.
It is possible to monitoring who user has dropped it ??
I was probeing to create a trigger for deleted in
s... more >>
Lock in Temporary table
Posted by Viviana Kern at 7/13/2004 9:34:07 AM
How I can set a type of locks for a temporary table ??
I need to set a page or table lock.
TIA... more >>
ISDATE and Determinism
Posted by boblotz2001 NO[at]SPAM yahoo.com at 7/13/2004 9:31:28 AM
Hey there,
I am trying to create an index on a computed column and getting
nowhere. For the life of me I can't get ISDATE to be deterministic.
To simplify the problem if I define the column as:
[some_date] AS ISDATE(CONVERT(datetime, [action_date], 112))
I get an error:
Cannot create... more >>
DTS pkg to VB6 to VB.Net problem
Posted by Rich at 7/13/2004 9:24:59 AM
Hello,
I saved a DTS packaged down to a VB6 module. If I compile
this module in VB6 it runs fine. But I would like to
incorporate the code into a VB.net app. I am having a lot
of problems with this. I have turned Option Strict Off
(for now) and even with that I still get 3 types of er... more >>
BeginTrans
Posted by Vlad at 7/13/2004 9:09:32 AM
I'm rewriting VB6 application working with DAO Access 2000 into SQL Server
2000 version.
Access version used to use BeginTrans, CommitTrans and Rollback method of
DAO.Workspace object to handle transactions.
If I replace those calls with BeginTrans, CommitTrans and RollbackTrans
methods of ADO.... more >>
SHRINKDATABASE
Posted by Krygim at 7/13/2004 9:02:57 AM
Does the work done by DBCC SHRINKDATABASE include what DBCC CLEANTABLE dose?
TIA
... more >>
Record Number
Posted by Filippo Bettinaglio at 7/13/2004 8:52:10 AM
Hi,
I have a simple SELECT statement,
SELECT * FROM table1
which returns 10 records, is it possible have back
in the dataset also the record number as a field.
I mean instead of
A
B
C
D
....
....
have back
1 A
2 B
3 C
4 D
5 ...
6 ...
Thanks
FILIPPO
... more >>
Uploading Large File to SQL
Posted by - Steve - at 7/13/2004 8:45:06 AM
I have the following function that is supposed to save a file to a SQL =
server. It works fine when the file is under about 5mb, but bigger than =
that and after I hit submit (which eventually fires off this function) =
it get a 400 page error.
private void btnUpload_Click(object sender, Syst... more >>
Trying to avoid a CURSOR update.
Posted by Tony Zessin at 7/13/2004 8:30:45 AM
I have two tables. One which details the amount a well was dug for that
day, and another which shows the well's depth.
Here is the schema
CREATE TABLE DigLog (WellID int, DigTime datetime, DigDepthMeters int)
CREATE TABLE WellDepthHistory(WellID int, DepthDate datetime, DepthMeters
int)
E... more >>
Using SQL to reset IDENTITY field
Posted by paul.thomas NO[at]SPAM corpoflondon.gov.uk at 7/13/2004 6:49:22 AM
Hi everyone,
I want to clear a table down and reset the IDENTITY field.
Without dropping and recreating the table is there and easy way?
Thanks
Paul... more >>
BCP -k option - Very urgent
Posted by ganesh.kaliaperumal NO[at]SPAM wipro.com at 7/13/2004 6:02:21 AM
Hi Everyone,
I tried to bcp in the data file to a table in sqlserver 2000.
The data file has got few blanks in certain columns.
My requirement is all those blanks has to be converted null while bcp
in the data.
1. I have tried giving the option -k - Didn't work
2. I have tried creating a ... more >>
Table parameters
Posted by Jo Goos at 7/13/2004 5:17:03 AM
Hello,
I'm currently searching the ability to create a stored procedure with a table parameter. I thought it was possible to create such procedures as of SQL 2000.
I'm having trouble with finding the right syntax.
Has someone done this before and give me the syntax please?
Kind regards... more >>
Range query optimization help?
Posted by Mischa Sandberg at 7/13/2004 5:16:41 AM
SUMMARY
I have a transaction table requiring a major batch conversion.
For each row in 'MeterEvent', I need to look up its recorded Amp value
in a static table of nonintersecting ranges (one set of ranges per Meter).
There are 1-3000 ranges >>>per Meter<<<, and about 100K meters.
The naive qu... more >>
Performance ideas - comparing first N chars of 2 TEXT columns
Posted by nonnb NO[at]SPAM webmail.co.za at 7/13/2004 5:13:01 AM
Hi
Would appreciate ideas on how to optimise a query which needs to
compare 2 text fields in a table (obviously these cols are not
indexed).
As SQL doesn't allow TEXT column comparison, am currently doing a
compare on the first 800 chars of to eachother, like so:
if not exists (select ..... more >>
Build and Restructure a table
Posted by Peter Newman at 7/13/2004 3:57:02 AM
i have a table containing an money field for every day over a three day period. Currently the table runs from 01/06 to 31/08, for each of our clients
ie
Client 01/06 02/06 03/06 ...... 01/07 02/07 etc
111111 0.00 125.00 0.00 99.00 0.00
... more >>
best way in querying the table
Posted by mak at 7/13/2004 3:09:03 AM
hi all
i have a table with one field (number-primary key) ,contains data like below.
number
1
3
7
8
9
10
now. i need to query the above table to get the following result(in ranges)
1-1
3-3
7-10
how z it possible.any help on this
... more >>
exceeding the maximum allowable size of 8060 for a row
Posted by moondaddy at 7/13/2004 1:40:30 AM
I'm trying to do inserts on a table and am exceeding the maximum allowable
size of 8060 for a row. My problem is that 2 of the columns need to hold
the xml from a dataset (one dataset per column) and each dataset has a
length exceeding 4000. What are my options to get around this problem?
B... more >>
Hierarchic tables in Queries ??
Posted by Claude Vernier at 7/13/2004 1:37:03 AM
Hello,
I'm used since several years to create tables, stored procs and inner joins...
So, I can tell that I know SQL syntax a little bit, still I would need help on this one.
The client gave me a CSV file of subject:
PARENT ID Name_E Name_F
------ ----- ------ ------
1024 1 Groceries .... more >>
HOWTO: Update SQL-Table from an Access DB
Posted by Christian at 7/13/2004 12:04:01 AM
Hello @all
ive a daily generated MS-Access Database with round about 250.000 Records. With them i must update a sql-Server DB-Table with three fields.
Actualy i connect to the ms-access DB with an oledb.datareader (.NET), read thru the whole Access db, test for every Record existing in the SQ... more >>
|