Groups | Blog | Home


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
August 2008


all groups > sql server programming > july 2004 > threads for thursday july 29

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

Direct text file output from T-SQL
Posted by B. Chernick at 7/29/2004 8:37:11 PM
Is it possible in T-SQL to directly send query results to a text file without the use of command line utilities and command shell procedure calls? (The only reason I ask is because a friend of mine insists he once used something like a 'SET OUTPUT <filename>' command with SELECT. I think he's...more >>

Return the Set Difference of a tuple, how??
Posted by Brad at 7/29/2004 6:52:27 PM
Here's a stumper: I have two queries, on two different tables, that return a set tuple, ie, select distinct a, b from table_1 select distinct c, d from table_2 How do I combine the queries to return the set difference of (a, b) - (c, d)?? The example to perform a set d...more >>

Remote connect
Posted by Just D. at 7/29/2004 6:48:46 PM
All, Could anybody remind me a string to connect to a remote MS SQL Server exposed on the Internet using IP/Port#/Login/Database/Table? Thanks, Dmitri. ...more >>

How to use "FETCH" to update a value of each row in the table
Posted by Ray at 7/29/2004 6:47:38 PM
Hi all, I would like to ask how to update a value of each row from a table using "FETCH". For example, I would like to insert a key like 1 to 10000 in a table with 10000 records. How can I do that? Should I use "FETCH"? Thanks a lot, Ray ...more >>

Job XXX started successfully.
Posted by David N at 7/29/2004 6:05:44 PM
Hi All, I have a stored procedure that is called by C# code to start a SQL agent job. The stored procedure simply call the MS SQL system procedure msdb..sp_start_job to start the job. The problem is that after the job started, the message "Job XXX started successfully." is raised and the ...more >>

How can I do a "bulk delete"?
Posted by Need more Zzzz at 7/29/2004 5:13:01 PM
I'm trying to archive data in a live database with very large tables and am using bcp to copy data to files, but I need a good method to delete all the records that I just copied, without blocking access to the tables. The problem is that the database has many active connections throughout the day a...more >>

Importing textfile into a cell
Posted by IT Dep at 7/29/2004 4:21:22 PM
Hi I am trying to import some text files into MS SQL 2000. I want to import them into a table with the first column being the filename (excluding the extension) and the second colunm being the contents of the textfile, I want the entire textifle to fit into the one cell (ignoring any commas, ...more >>

Import Multiline text
Posted by IT Dep at 7/29/2004 4:18:20 PM
Hi How would I go about importing a multiline text file into a single cell in SQL? And what dataformat should I use to store multiline text data. On importing I want to ignore any commas, etc and interprit it including the CRs into one cell. Thanks Dan ...more >>



Garbled rowset results
Posted by maloel at 7/29/2004 4:17:41 PM
I do the following: SELECT * FROM Item_treeOptions() And get back ~3000 rows. But when I try the following: SELECT COUNT(*) FROM Item_treeOptions() I get a count of >6000. Looking inside the rowset returned, it seems the data has somehow been truncated, as if subsequent rows have overw...more >>

SUM (transtime) Arithmetic overflow
Posted by Ramesh at 7/29/2004 4:07:52 PM
I get "Arithmetic overflow error converting expression to data type int" when I run a simple query .. Select id , SUM (transtime) from table1 group by id The "SUM (transtime) " throws this error which tries to sum up very large value . the SQL DB is SQL 7.0 How do I get rid of this err...more >>

question about queries inside a trigger
Posted by Kenny at 7/29/2004 3:53:16 PM
Hi, I know when you run a query the first time, it cache the execution plan and syscacheobjects table, and second time or third time when you run the same query, it will reuse the execution plan, therefore it 's faster than first time. but what if a query is inside a trigger, and this query...more >>

EXECUTE error
Posted by Rob at 7/29/2004 3:46:47 PM
Hello: I'm using the following script to prepare a select statement into a variable and then in executing that select statement: --start of script declare @dbname varchar(30) declare @tbname varchar(30) declare @last_bkup_file varchar(255) declare @sql varchar(500) set @dbname='CCQ' ...more >>

T-SQL Question
Posted by t at 7/29/2004 2:57:40 PM
How can I find list of columns that are not Primary Key from table I tried : select distinct s1.name as 'table name', s2.name as 'column name', s3.status, s3.colid as 'cons col id', s2.colid as 'col col id' FROM dbo.sysobjects s1, dbo.syscolumns s2, dbo.sysconstraints s3 where ...more >>

UPDATE question
Posted by Edgard Riba at 7/29/2004 2:48:47 PM
Hi, I have three fields which I want to concatenate into one, but I want the last one to be zero padded on the left to a specific width: Fields and example values (all are integers): Company Type Account 11 4 456 12 3 3342 ...more >>

SQL Text to Time
Posted by Matt. at 7/29/2004 2:36:18 PM
Hi all! The text below is from a view I'm trying to create via Enterprise Manager. The columns eMonth, eDay, eYear, etc. are all NCHAR. I want the view to create a real date and time. Then I can actually do some calculations on counting records in certain 24 hour periods. But I keep getting...more >>

Concatenating with null values
Posted by youngeagle at 7/29/2004 2:21:15 PM
I have a query that joins and displays several values as one, converting them to a string, but if any of those fields are null, it returns null. For instance, if all fields have values, I get "abc", but if b is null, I get null returned instead of "ac" Select ColA + " - " + ColB + " - " + Co...more >>

updating null values in a table with null values
Posted by WeeMan43 at 7/29/2004 2:15:12 PM
Hi, I'm trying to update a row in a table that has 87 columns. I'm doing this update because an insert has failed, which means that only some of the columns need to be updated. An insert only fails in my program if there is already an entry for the current row that matches (i.e. each row has a un...more >>

Moving from varchar to nvarchar
Posted by Guy Brom at 7/29/2004 1:47:36 PM
Hi there, I've created a new (utf-8) web-application that works with unicode, as a new update from my old ASCII application. How can I convert and export the varchar data to nvarchar. Will something like this work? INSERT INTO dbo.NewDB.Table1 (id, title, description) SELECT id, N'titl...more >>

Delete from Opendatasource()
Posted by news NO[at]SPAM netzfische.de at 7/29/2004 1:35:14 PM
Hi, I've a problem with the following SQL Statement: DELETE AK FROM OPENDATASOURCE('SQLOLEDB','Data Source=myserver;Initial Catalog=mycatalog;User ID=myuser;Password=mypw;').mydatabase.mytableowner.mytable AK left outer join localtable lt on lt.field1 = AK.field1 where AK.field2 = 0 Whe...more >>

SQL Server Royalty
Posted by Farhan at 7/29/2004 1:25:07 PM
I don't know where to ask this question, I am hoping someone will clarify this for me. We are evaluating several ERP systems, but when it comes to choosing the database. All the software vendors say that they have to pay approx. 10% Royalty to Microsoft to develop their applications on SQL...more >>

Break in SQL connection over wireless networks
Posted by Sathish at 7/29/2004 1:14:03 PM
Hi All, I'm developing a (Client-Server)database application in VB inorder to work in wireless environment (CDMA or WLAN). The problem i'm facing is, though the wireless network are not stable as compared to wired networks between Client & server; I'm getting an SQL timeout error. Does...more >>

Cloning Records for Additional Building units
Posted by FloridaJoe at 7/29/2004 12:37:22 PM
I have a property table indexed on an autonumber primary key, with a subsidiary one-to-many contacts table. I have to add additional properties for many condos and businesses with unit numbers, duplicating the property info, and the contact records, just adding in the unit number. Does anyone kn...more >>

passing variables
Posted by Rob at 7/29/2004 12:34:34 PM
Hi, As part of something larger in scope, with the following script, what I'd like to do, is to pass one variable to another (as seen in the EXECUTE statement): -- start of script declare @dbname varchar(30) declare @tbname varchar(30) declare @last_bkup_file varchar(255) set @dbn...more >>

What does Enterprise Manager use for Grid display?
Posted by thadfield NO[at]SPAM hotmail.com at 7/29/2004 11:52:51 AM
If you're in Enterprise Manager, and you right click a table and select return all rows, the results are displayed in a Grid. Does anyone know what type of control this grid is? Is this a grid that is available for distribution / programming / reuse? The reason I am asking is becuase that co...more >>

Database design question
Posted by Anders at 7/29/2004 11:49:38 AM
We need to create a lookup structure that can contain a flexible amount of attributes. We have discussed different design solutions for lookup-functionality, and come up with this suggestion: The "lookup" structure will be defined by three tables. The "Element" table, the "Attribute" tabl...more >>

import multiple text file into cell
Posted by IT Dep at 7/29/2004 11:31:36 AM
Hi, Still having the same problem (as follows), I had posted it before but haven't managed to resolve the issue. Sorry for reposting it. I am trying to import some text files into MS SQL 2000. I want to import them into a table with the first column being the filename (excluding the ext...more >>

Error when trigger attempts to run a stored proc on linked server
Posted by troyl NO[at]SPAM mediserve.com at 7/29/2004 11:20:29 AM
I am having am getting the following error message when I attempt to updated a table that fires a trigger that calls a stored proc on a linked server. Server: Msg 7391, Level 16, State 1, Procedure tr_CreatSilkIssue, Line 45 The operation could not be performed because the OLE DB provider 'S...more >>

Not In and Not Exists
Posted by Ivan Lai at 7/29/2004 11:16:45 AM
It's there anyone expert can teach me whats difference between using "Not in" and "Not Exists" in my SQL? Because I found out that "Not Exists" is faster than "Not in". However, my question is when I will to use "Not in" instead of "Not Exists"? Thanks ;) ...more >>

xp_sendmail using different sender name
Posted by SQL Apprentice at 7/29/2004 10:45:54 AM
Hello, How do I change the sender name when using xp_sendmail? For example...the sender in my mapi profile is "michael" So when I use xp_sendmail, it will show: From: michael To: Robert Subject: test Message: testing EXEC xp_sendmail @recipients = 'robert', ...more >>

HELP PLEASE! Stopping duplicate entries
Posted by Lou at 7/29/2004 10:31:08 AM
I have just upsized an Access database, that was at 2G limit to a SQL Server backend and I am having a problem with one of my columns. I have a column [EquipID] this field was unique and you cannot enter a duplicate ID. This function is not working now that I have upsized I need it to w...more >>

Capturing errors in Stored Procedure
Posted by Jonathan Blitz at 7/29/2004 10:06:57 AM
How do I capture an SQL statement error in a stored procedure? I have tried using @@error but the stoped procedure "dies' before the check on the flag. What am I doing wrong? -- Jonathan Blitz AnyKey Limited Israel "When things seem bad Don't worry and shout Just count up the times ...more >>

How to show custom msg instead of Sql builtin Msg?
Posted by xs at 7/29/2004 9:29:02 AM
I would like to show my own messages and display it to the user in an output parameter using a sproc. But it seems that whenever there is an error Sql Server's builtin messages will always be displayed instead of my friendlier messages. For example when there is a violation of the foreign key err...more >>

delete question???
Posted by REMOVETHISyabbadoo_2004 NO[at]SPAM hotmail.com at 7/29/2004 9:14:52 AM
Start in the middle of a large record set... ..moveNext Now, assuming the cursor is sitting on record n... ..delete Compared to the *original* record set where is the cursor now? n (it was deleted but no .update) n + 1 n - 1 ...more >>

shared identiy column
Posted by tanalbit NO[at]SPAM aol.com at 7/29/2004 8:51:56 AM
Is there any way to share an identity column between two tables so that they both use unique values? For instance, these would be the identity values for successive inserts to table 1 and table 2. Table 1: 1 2 Table 2: 3 Table 1: 4 In Oracle I could use a sequence to accomplish ...more >>

Compute Column Using Columns Aliases wth in the Same Query (Easy 1 I'm sure)
Posted by Erik Grob at 7/29/2004 8:51:38 AM
PLEASE REPLY TO GROUP SO SOMEONE ELSE CAN LEARN TOO. How can I calculate RushAvg below. Basically I am trying to use the Aliases of columns within the same SELECT to compute another column: ________________ Select into MyFlatFile ( Select TeamMemeberID, (RushingYards/RushNum) as RushAvg...more >>

Need to update column with part of another column?
Posted by John Rugo at 7/29/2004 8:50:21 AM
Hi All, Can someone help me figure out the proper functions to update a column with part of another column? Basically I have a column with phone numbers. I created a new column specifically to hold Area Codes. I need to get the area code from the phone number and update the AreaCode column. ...more >>

Require Tunning Tips
Posted by Bhaskar at 7/29/2004 8:07:42 AM
Hi, I have one table with 14 million records. I am trying to update 3 million records in that table. Update query is taking more than 20 mins to update 3 million records. I am using all possible where conditions. Can anybody suggest some tips to tune the update query. Already i have po...more >>

Carriage returns
Posted by Dave F at 7/29/2004 7:21:51 AM
How can I use T-SQL to remove CR/LF from data I need to migrate into MS CRM? I am bringing data in from Outlook and it apparantly has some sort of line breaks that are causing individual records to be imported as 2 or more records. How do I write T-SQL to remove these breaks? IOW, how do I...more >>

Calculation Result Different btwn SQL 2k & Excel
Posted by jj_hil at 7/29/2004 7:10:40 AM
The core problem... we have a calculated production number for January and another number for February, but when we calculate the value for "the year through February" it doesn't match January Result + February Result. These values come from multiple records per month. I've been researc...more >>

Heterogeneous Query Error Message
Posted by Raul at 7/29/2004 5:55:00 AM
I'm trying to write a stored procedure and I get the following error when I try to save the procedure: Heterogeneous queries requires the ANSI_NULLS and ANSI_WARNINGS options to be set for the connection. Enable these options and reissue your query. I thought I set these options by righ...more >>

Table Reconcile
Posted by Peter Newman at 7/29/2004 5:38:02 AM
I have two table, Header Table containing Header records for Client files, and Breakdown Table containg breakdowns of the Header records Both tables have a varchar (20) called LedgerKey, which links the records together. The ledgerKey is Unique in the headers table If a record in the...more >>

Tunning update query
Posted by Bhaskar at 7/29/2004 5:12:56 AM
Hi, I have one table with 14 million records. I am trying to update 3 million records in that table. Update query is taking more than 20 mins to update 3 million records. I am using all possible where conditions. Can anybody suggest some tips to tune the update query. Thanks in advance...more >>

handling errors in sql server
Posted by Anuradha at 7/29/2004 3:08:55 AM
Hi All, I have a work table from which i need to insert the data to the master tables. This iam doing it using a cursor (for i need the info on what records have gone in successfully and what aren't.) But say incase in the middle, if the 5th rec is going to fail --> because of primary key v...more >>

cross tab query from Access
Posted by Aleks at 7/29/2004 2:27:55 AM
Hi, I am still working on this cross tab query, I started by using Access, created a query and called it "jen", this is the query: SELECT Atts.UserId, Users.MailStr, Users.MaidenNm, Cases.Id, Cases.CaseId FROM (Atts INNER JOIN Cases ON Atts.CaseId=Cases.Id) INNER JOIN Users ON Atts.UserId=U...more >>

Why do I need to execute it twice?
Posted by priyanka at 7/29/2004 2:19:26 AM
Hi, When I execute my code for the first time, the data remains untouched, but on executing it the second time, i get the desired results. Why? SET NOCOUNT ON DECLARE cnames_cursor CURSOR FOR SELECT CUST_NAME FROM dbo.T_CUSTOMERS FOR UPDATE OPEN cnames_cursor DECLARE @custna...more >>

Optional parameter in a user function
Posted by checcouno at 7/29/2004 2:13:44 AM
is it possible use an optional parameter with a user defined function in SQL server? Thanks...more >>

Delete and Opendatasource
Posted by mschwanz NO[at]SPAM netzfische.de at 7/29/2004 1:51:21 AM
Hi, I've a problem with a delete statement containing an Opendatasource table and a local table, which are joined. SQL: DELETE AK FROM OPENDATASOURCE('SQLOLEDB','Data Source=myServer; Initial Catalog=myDataBase; User ID=myUser;Password=myPassword;').myDatabase.myDBUser.myTable AK LE...more >>

main table
Posted by James Autry at 7/29/2004 1:34:39 AM
I was asked by another software engineer where the "main table" of a relational database was. I have not worked with relational databases extensively, but never really heard this term applied to one. What is really meant here? Thanks ...more >>

Problems using a Table Variable
Posted by J. Persson at 7/29/2004 1:31:48 AM
Hi In our system I have discovered that a stored procedure, changed (but apparently not well tested) by some of my colleagues to use a table variable @TaskOrg instead of an earlier temporary table #TaskOrg. It works fine most of the time but in the code part shown here it goes wrong be...more >>

sql server 2005
Posted by elhayanymustapha at 7/29/2004 1:17:03 AM
I'm trying SQL Server 2005 beta 2 "Yukon" because i'm interested in some functionalities, such as using OLAP Services, XQuery and XPath over XML files and the metadata management. Unfortunately, I'm just able to load my database, but cannot use OLAP services (with Intelligent Business Studio) be...more >>

Error on Full-Text
Posted by Sathya at 7/29/2004 12:20:45 AM
I'm getting the following error even after installing SP3 Server: Msg 7607, Level 17, State 1, Line 1 Search on full-text catalog 'egpl_kb_index_on_attachment' for database ID 8, table ID 1694629080 with search condition '"want"' failed with unknown result (80040406). Please help me in this r...more >>


DevelopmentNow Blog