Archived Months
January 2003
March 2003
April 2003
May 2003
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
April 2008
all groups > sql server programming > june 2004 > threads for monday june 14

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

How to get distinct... under certain conditions
Posted by dgk at 6/14/2004 11:46:42 PM
I would like to retrieve distinct customer IDs where the customer has at least one record that meets the condition of FieldX <> "Y". I have this: "SELECT distinct CustID FROM Orders order by CustID" but this just gets the list of all customer IDs. (There is no need for an actual customer table)....more >>


System table with DTS Package Names
Posted by Thomas Scheiderich at 6/14/2004 10:59:32 PM
I am trying to use a stored procedure to look for all the DTS packages stored on the system of sql server7 and sql server 2000, Is there a system table where the names are stored? Thanks, Tom ...more >>

Date
Posted by HartmanA at 6/14/2004 8:15:31 PM
Whice Date function would I use If I wanted to take a dateTime field in my table and produce this output. 06/14/04 to 061404 ---> and I need to kept both postions of MMDD Thanks. ...more >>

Format Files
Posted by Andrew Slentz at 6/14/2004 7:19:35 PM
I hope this is an easy one... I have a CSV input file like: id,name,address,phone 1,bob,12 anywhere road, 502-555-1212 2,tom,13 anywhere place, 502-999-9999 How do I setup my format file to not use the first line at all? I've tried /r and /n with no luck. Oh, this is on MS Sql 2000. A...more >>

Same Query Different Results?
Posted by JDP NO[at]SPAM Work at 6/14/2004 6:43:58 PM
SQL 80 SP3 MS Server 2003 Database has AutoUpdate Statistics On, AutoCreateStatistics Off Why would a query return a different number results? Running the query one minute gets 18 records, waiting a few minutes and running it again gets only 1 record. Waiting again, gets 16, then again,...more >>

Session specific cutoff dates
Posted by J. M. De Moor at 6/14/2004 5:43:14 PM
We have an application where a user session is run using point-in-time dates for users that are logged in, serving as sort of a CURRENT_TIMESTAMP replacement value for that session. Transactions and queries are performed based on this point-in-time. We have a table that has user-specific param...more >>

Modified Field?
Posted by Sajid Mansoori at 6/14/2004 5:26:35 PM
Hi, I've a table with numerous of fields. Whenever a user edits some field, I want to store it into history table with the information about the edited field. For e.g. if 'Date of Birth' was edited, then i want to store old DOB and New DOB into history table. Can anyone tell me if there is a g...more >>

Print report directly using reporting service with ASP.net
Posted by Sunny at 6/14/2004 4:55:01 PM
Hi, I am new to reporting service. But it seem to have to do a lot of work on this .... Right now i have a problem I need a button for users to click to directly print a report generated without having to export the report.I don't want the user to go this extra step. The users that will be usin...more >>



Using variable for INT in SELECT TOP...
Posted by Mandy at 6/14/2004 4:52:45 PM
I'm having trouble using the following: DECLARE @topNum INT SELECT @topNum = 5 SELECT TOP @topNum colOne, colTwo FROM #tempTable I get: Incorrect syntax near '@topNum' Any idea what's wrong with this? ...more >>

what changed query.
Posted by qwerty at 6/14/2004 4:03:25 PM
Hello, Here is a example of my table and its setup and how it works. I have a record in a table, when a person changes one or more fields for that record what happens is that a new records is created with the same info as the first records and the changes made. the second record or shall i ...more >>

Version Comparision
Posted by M. Raab at 6/14/2004 3:46:36 PM
is there a published doc or anyone who cares to comment about the relative processing speeds of the various version of SQLServer 2000? we are testing and noticed that SQL developer edition can do simple inserts around 10X faster than Standard edition! is the standard edition crippled? are we for...more >>

SQL howto question
Posted by Glenn Carr at 6/14/2004 3:35:49 PM
I have the following table: game_dates: id (PK) name (CHAR) date_order (NUMBER) I'm am trying to determine how to select 2 rows starting with a given ID, ordered by date_order. Here's my futile attempt: SELECT id,name,date_order FROM game_dates WHERE id IN ( ...more >>

Changing owner in User-Defined Data Type
Posted by Steven Wong at 6/14/2004 2:44:52 PM
Does anyone know how to change the owner of a user-defined data type? Would like to changed it to reference 'dbo' as the owner. I cannot drop the user-defined data type and re-create it because they are currently being referenced in the database tables. Looked into a couple of pre-defin...more >>

Identity Column Overflow
Posted by dougfgorton at 6/14/2004 2:09:02 PM
INSERT INTO INVENTORYTRANS SELECT EdpNo,TransactionNo,TransactionDate,TransactionTime, UserID,FromRef,'80BULK',Qty,TransactionCost,CartonCapacity, ' ',Status,AddlProdCst,OldAddlCost,FIFONo FROM GTSUploadData The INVENTORYTRANS table has a sixteenth column SLOTID which is an ide...more >>

BULKIMPORTSTREAM returned 0x8007045a
Posted by Xing at 6/14/2004 2:01:42 PM
Hi All, I am having problem running bulk insert statements at a client's site. We use tempdb to do bulk insertion. Thus the code involves creating a table on tempdb and then 'bulk insert'. The connecting login is bulk insert administrator, dbo of both the production database and the tem...more >>

Error with Linked servers
Posted by Lalit at 6/14/2004 1:10:03 PM
I am getting this error : [OLE/DB provider returned message: Cannot start more transactions on this session.] I am trying to update some data on SQL 2000 server from SQL 7.0 server through link server. Update query is written in Exec statement. What could be the work around for this proble...more >>

easy cursor problem
Posted by Louis Jones at 6/14/2004 1:01:30 PM
Hello, Can i change the active (current)database in a cursor? Here is my TSQL, and i need to to cycle through all of my DBs. i error out at the "Use " statement below. running SQL7SP4 .... any ideas? THANKS!!! set nocount on DECLARE db_info CURSOR FOR select distinct name fro...more >>

Not sure how to join these 2 tables
Posted by Saga at 6/14/2004 12:59:08 PM
Hi all, I have two tables, on holds info on sales personnel, the other holds info on sales. Sales people work in teams of two or three, where each sales person may change teams at any time. Sales are broken down into three types of sales: "product line", "accessory" and "misc" Each rec...more >>

Best way to combine data from SQL-Server2000 and DB2
Posted by Andreas.Bretl at 6/14/2004 12:58:07 PM
Hi all, What's the best way to combine data from SQL-Server2000 and DB2 Could anybody please be so kind and give me a hint about that? I already tried some approaches: - linked servers (failed due to connection problems - I could not get the thing up running) - DTS served import -table...more >>

SQL tuning
Posted by Nesaar at 6/14/2004 12:55:16 PM
Hi. Does anyone perhaps know of a way to re-write this query to perhaps make it a bit faster. It used to be a single select statement but then i had to break it up to cater for specific exclusions. I have added indexes and so on. Any ideas? Thanks N SELECT qrt.QuarterlyClientID, qrt.Client...more >>

URGENT-HELP CREATE TABLE PERMISSIONS
Posted by Laurent Lemire at 6/14/2004 12:39:07 PM
Here is the situation. I want to prevent the developers to CREATE TABLE. But if I do that the developer won't be able to create temporary tables, which should be granted. How do I solve this problem? ...more >>

General network error
Posted by David Mohandas at 6/14/2004 12:24:59 PM
We are getting an error when we try to use NT authentication for domain users. When we try to login through the query analyzer using NT authentication we are getting the error "[Microsoft][ODBC SQL Driver][Shared memory] General network error, check your documentation." We added the domain us...more >>

function + text problem
Posted by Lasse Edsvik at 6/14/2004 11:44:02 AM
Hello I have a fuction that sends email that looks like this: ALTER FUNCTION dbo.SendEmail(@Email varchar(256),@SenderEmail varchar(256), @Subject varchar(400), @Mailbody text, @Priority tinyint) RETURNS tinyint AS BEGIN DECLARE @hr int, @Object int, @Message int, @Return...more >>

Swap values of multiple columns with a CASE statement
Posted by Iris at 6/14/2004 11:43:46 AM
Hi all. Help for a newbie would be greatly appreciated. I'm trying to update existing data that came from an Access database, and when I'm finished, none of the columns will be allowed to have null values. But, the existing data does contain nulls. So, within the same table, I need to swap ...more >>

is there limit to num of cols .net dataAdapter supports?
Posted by Rich at 6/14/2004 11:11:42 AM
Hello, I have to support a non-Microsoft/non-rdbms application that contains some sets of data with 180+ columns (I have no say-so in the design of this app). This includes reading the data into sql Server tables (daily - DTS not an option because too many faults with the data - and the ...more >>

Getting error DB_E_ERRORSINCOMMAND when I call execute for the 2nd time....
Posted by Ralph Krausse at 6/14/2004 9:58:41 AM
I created a class that uses the same _CommandPtr and _RecordsetPtr. Since I will be make recurring function calls, I didn't want delete the objects and recreate them using CreateInstance(). I call my first stored procedure, it works fine but when I call my second stored procedure, it fails and re...more >>

How to Select from Stored Procedure?
Posted by Dmitriy Bessmertnyy at 6/14/2004 9:55:54 AM
Hi! I have a stored procedure which returns some hundreds of records. Now I need to select several records from this SP by some criteria,in other words, I need to make subselection. In InterBase it was so easy, like this: SELECT * FROM MyStoredProcedure(<someParams>) WHERE myField=... So ...more >>

SP with condition
Posted by Vlad at 6/14/2004 9:52:18 AM
I need to retrieve records from several linked tables using several criterias such as SalesmanID, InvoceDate, ShipDate and some others. In one case SalesmanID will not be passed as a parameter. If so then WHERE clause will not include SalesmanID and SP will return records for all Salesmen. In ca...more >>

Validation Text
Posted by chris.charlesworth NO[at]SPAM national-ice-centre.com at 6/14/2004 9:38:32 AM
Hi, we are upsizing from Access to SQL Server 2000 I have set up constraints for a table in SQL Server 2000 Enterprise Manager, The consraints are only simple ie: ([Surname] is not null) we are using Access as the front end and i have noticed you are able to specify the validation text if the ...more >>

sql2k: ole db timeout
Posted by RP at 6/14/2004 9:16:12 AM
Hi all, i have a job which basically executes a SP that does 2 things a). backup a db b) call SP on linked server with parameters such as path to .bak file etc which restores the db. This works fine for databases lets say under 100MB. For any DB over that size I get an "OLE DB TIMEOUT" error. I h...more >>

SQL Check Constraint
Posted by Chad Easley at 6/14/2004 9:13:08 AM
Hey everyone! I need the syntax for MS SQL Server 2000 for a constraint. Here's what I'm trying to do, in plain english: If [Terminal]='Wilmington, DE' then [Wilmington_Data] is not null Basically, if the Terminal field is equal to Wilmington, DE, then I want the user to be required to pu...more >>

Evaluating field contents given a field name
Posted by Bernie Beattie at 6/14/2004 8:15:01 AM
I want to set a variable to a field's contents given a field name. e.g I have a loop which gets each column name that has been updated into a variable. I now want to store the contents of that field in another variable and concatenate them together into an audit string. I've tried the following: ...more >>

Sorting by datetime
Posted by vman916 at 6/14/2004 7:59:01 AM
Group, I am hoping someone can help me. I have the following stored Procedure that I am trying to sort by the Year and then by the month, but it will not work. Can anyone tell me how to do this correctly? Thanks. Tx, Virgil Carroll ALTER PROCEDURE fosterparent.sp_FPNReports_elearningCou...more >>

Adding a UNIQUE constraint
Posted by Tom T. at 6/14/2004 7:21:02 AM
Hi all! This is making me nuts. Using SQL 2000, I am trying to add a UNIQUE constraint to an existing table (already populated with data). I have "scrubbed" the data so that the only repeated values are NULL. According to all the documentation I can find, UNIQUE constraints are allowed where...more >>

data insertion
Posted by Denis Crotty at 6/14/2004 7:07:01 AM
Hi, I think this a real newbie question. My client wants certain users to have the ability to insert data into fields that were left null, but not be able to change fields that were entered. Is this possible? Thanks, Denis...more >>

Limitation in Data Extraction Using Osql
Posted by San at 6/14/2004 5:48:01 AM
Hi, We are using OSQL utility to extract data from database and making one txt file. It has limitation of 1000 chars per line. But we want to print more than 1000 chars per line. Is there any other way to print more than 1000 chars per line. Thanks, San...more >>

How to access field contents generically in trigger
Posted by Bernie Beattie at 6/14/2004 4:46:01 AM
I am trying to create Insert/Update/Delete triggers on my tables but I want a generic trigger that will work for all tables. Basically I want to write a string back to an audit table which will contain the updated field name + the old and new field value. I have managed to get the updated field na...more >>

sql server job
Posted by Gabriel at 6/14/2004 3:00:29 AM
Hi! When I execute a stored procedure using ms sql server job engine, the job always fails. Stored procedure reads data from a text file and writes data into sql server database table. The job has only one step, 'exec @spname', when I evoke the execution of the SP from query analyzer (...more >>

Exploring the transaction log files.
Posted by sqlseeker at 6/14/2004 2:02:01 AM
I want to examine the contents of log files and data files. How these files are structured , what is their file format and other detail. Any idea about API's or some resource through which we can explore the transaction log. Many tools like Log Explorer by Lumigent and SQL Apex etc are capabl...more >>


DevelopmentNow Blog