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 > february 2004 > threads for thursday february 26

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

Overflowed int column
Posted by Roger K. Denison at 2/26/2004 10:13:42 PM
I am trying to run a stored procedure but I get the following error: Server: Msg 248, Level 16, State 1, Procedure sp_MarriageLookup, Line 34 The conversion of the varchar value '2820103430' overflowed an int column. Maximum integer value exceeded. Stored Procedure: Unifirst919.dbo.sp_Mar...more >>

this one is weird- seems all of them true to me
Posted by chaudley at 2/26/2004 9:46:30 PM
Need suggestion pls. Which one of the following statements regarding Data Transformation Service packages is FALSE? Choice 1 Packages can be scheduled to run unattended. Choice 2 Packages can import Oracle's native database structures to SQL Server. Choice 3 Packages c...more >>

Trigger in System table
Posted by Guru S. anand at 2/26/2004 9:46:04 PM
Hi all Is it advisible to have a trigger in the system table? I need to keep a trigger in the SYSJOBHISTORY of msdb. I need some sugesstion. Thanks in advance Anand....more >>

Sql Help
Posted by vduggins NO[at]SPAM dalcom.org at 2/26/2004 9:45:42 PM
I need a little help, I have written this SQL query - CREATE OR REPLACE VIEW PRODUCT_COUNT AS SELECT SUM(f.CUSTOMER_COUNT) NUMBER_OF_CUSTOMERS, t.DATEIN, f.PRODUCT_KEY, p.FULL_DESCRIPTION FROM TIME t, SALESFACT f, Product p WHERE t.TIME_KEY = f.TIME_KEY AND f.PRODUCT_KEY = p.PRODUCT_KEY ...more >>

2pc
Posted by jack at 2/26/2004 8:59:09 PM
Which component coordinates the 2 Phase Commit process? Thanks. ...more >>

Auto growth question - query timeouts?
Posted by None at 2/26/2004 8:49:31 PM
So my ADO.NET application (using OleDb provider) sometimes has query timeouts on INSERTs and the only way to get it working again is to reboot the computer. This happens very infrequently, typically weeks or months apart. I'm wondering if this is happening when the database is increased in s...more >>

Dynamic SQL?
Posted by klnorris NO[at]SPAM comcast.net at 2/26/2004 8:33:58 PM
I'm trying to understand how SQL Server implements Dynamic SQL. I would think that dynamic SQL is SQL generated on the fly in a client application and then passed to SQL Server through OLEDB as a string for execution. Is this what it is or is it something that can be implemented in T-SQL? Plea...more >>

Need help with this
Posted by chaudley at 2/26/2004 8:24:05 PM
As a general rule, which one of the following should the columns participating in a nonclustered index exhibit? Choice 1 They must be used in retrievals based on an exact value match. Choice 2 A foreign key column in a decision support system Choice 3 They must be the tar...more >>



struggling with this
Posted by chaudley at 2/26/2004 7:49:12 PM
What effect do Savepoints have on a situation in which a distributed query fails when attempting to modify data on multiple servers? Choice 1 Savepoints on all the OLE DB compliant databases are applied, but data on other types of remote servers are rolled back. Choice 2 Save...more >>

and this too thanks a lot.
Posted by chaudley at 2/26/2004 7:48:32 PM
Which one of the following cursor types is a Fast Forward cursor converted to if remote tables on linked servers are referenced in its SELECT statement? Choice 1 Dynamic Choice 2 Disconnected Choice 3 Keyset Choice 4 Forward_Only Choice 5 Static ...more >>

Pls help with the answer
Posted by chaudley at 2/26/2004 7:47:54 PM
Hi this is one of the question in a certification exam: Dim oConn Dim sSQL Set oConn = CreateObject("ADODB.Connection") oConn.open "Provider=SQLOLEDB.1;Data Source=dwserver; InitialCatalog=somedb;user id=sa;password=xxx;" sSQL = "sp_DoSomeWork" oConn.execut...more >>

Need answer to this
Posted by chaudley at 2/26/2004 7:46:15 PM
Which SQL Server 2000 tool contain the "Transact-SQL Debugger?" Choice 1 Query Analyzer Choice 2 Profiler Troubleshooter Choice 3 Enterprise Manager Choice 4 isql Choice 5 SQL Profiler Thanks a lot. ...more >>

Combining one to many tables into single record with a procedure
Posted by brawclif NO[at]SPAM bigpond.net.au at 2/26/2004 6:20:02 PM
Hi, I am new to SQL server and unsure of the best way to build output from multiple tables and ouput with a single procedure. The requirement is to build a single porcedure which combines data from 2 tables which are in a one to many relationship. The output requires matching records in the m...more >>

Renaming A Column In SQL Server 2000
Posted by Erin Peterson at 2/26/2004 6:16:48 PM
Hi all. I apologize in advance if this a newbie question but my SQL expertise is only a little bit better than rudimentary. I have several columns in several different tables in a SQL Server 2K database that I want to rename. All of these columns have data in them so its not as simple as d...more >>

CASE and UPDATE
Posted by shank at 2/26/2004 6:09:50 PM
I need to UPDATE the [ShippingMethod] field. I can't get the syntax correct. Can someone give me a clue here? thanks! UPDATE Orders SET ShippingMethod = CASE WHEN 'UPS Ground (No Saturdays)' THEN SET ShippingMethod = 'UPS' END WHEN 'UPS 2nd Day (No Saturdays)' THEN SET ...more >>

Understanding non-equity join criteria
Posted by Dave at 2/26/2004 6:08:13 PM
I have two tables (DDL included at end) that contain the following rows... ord table ordid paydate amt ----------- ------------ ----------- 123 1/2/04 100 123 1/5/04 -10 124 1/6/04 80 125 1/8/04 200 125 1/8/04 ...more >>

Trouble with NULL values
Posted by Buddy G at 2/26/2004 5:57:19 PM
On Sql server 7.0... I'm running a query against a table that has the field "patient_age". Data: Patient_age varchar nulls allowed. When a patient is between birth and 30 days old, the data will be '0D' to '30D' Then '4W' to '11W' Then '3M' to '11M' Then '1' to 'whatever' The table ha...more >>

Catch error on server side or on T-SQL
Posted by Hoang Duc Chau at 2/26/2004 5:46:00 PM
Hi all, we have a #table with more than 10,000 record. we have two solutions for catch duplicate #key (#key is primary key field) error when update or insert solution 1: using select first then using insert: Create procedure dbo.InsertValue @errorcode int output, @key int, ...., .... a...more >>

Two tables and count
Posted by Andrew Banks at 2/26/2004 5:22:50 PM
I have two tables in my DB for an e-commerce app. This allows for 1 order to have multiple products. I want to select the OrderID from the Orders table but only when all the corresponding records in the OrderDetails table all have their Despatched value = 0. Can anyone offer any help please? Sim...more >>

SQL Server Error
Posted by Anna at 2/26/2004 5:09:04 PM
I am facing the following error.Anybody knows the reason...? SqlDumpExceptionHandler: Process 223 generated fatal exception c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server is terminating this process. ...more >>

If I am adding a record to a table using a SP, how can I make the SP return
Posted by Dan at 2/26/2004 5:06:10 PM
the one of the records fields Little example Table ID (int, auto indentity(0, 1) Name varchar(30 My SP takes in the Name value as a parameter, but I would like the stored procedure to return the ID field if the record was added and return -1 if not. Thanks...more >>

how to create cursor which holds data and then available in layout's data environment ?
Posted by mac at 2/26/2004 5:03:39 PM
I am using SQL2K as backend and vfp6 as frontend. How can I save my selection of records into cursor and then make it available in my layout's data environment ? Any suggestion ? Thx ...more >>

add new colum to a table from a variable
Posted by M Harding at 2/26/2004 4:47:03 PM
is there a way to add a column to a table using a variable as the column name? as I would like to add a couple of columns with the same prefix eg set @species = 'cod' alter table #totlen ADD @species +'wt' decimal(10,2) null alter table #totlen ADD @species +'len' decimal(10,2) null Than...more >>

Nested SELECT possible like this example?
Posted by Andreas Klemt at 2/26/2004 4:23:06 PM
Hello, I would like to do something like this but this doesn't work. SELECT userName, ( SELECT avg(sales) as avgSale FROM sales WHERE sales.userID = users.uersID ) FROM users WHERE age > 42 Result should be: userName avgSale Mike 3999 Tony 200 Th...more >>

Ad hoc queries with OPENROWSET
Posted by TWiSTeD ViBE at 2/26/2004 4:19:21 PM
Hi, I have a Stored Procedure that uses the OPENROWSET command. Everything runs fine when the Stored Procedure is run via SQL Query Anaylser however when the same command is executed via ADO (on an ASP page) the following error occours:- Microsoft OLE DB Provider for SQL Server error '800...more >>

Can`t call CURRENT_TIMESTAMP from within a user-defined function
Posted by Boaz Ben-Porat at 2/26/2004 4:18:54 PM
Sql Server doesn`t allow use of CURRENT_TIMESTAMP from within a user-defined function. It does allow this in a stored procedure. Is there somethin I àm missing or is it a bug ? Here is a sample (a very simple and dumb one) function where this problem appears: CREATE FUNCTION yesterday() RE...more >>

Insert command not appending to table
Posted by at 2/26/2004 4:06:17 PM
Hello, I am using insert to insert a record into a database, and when I run a select * query I am expecting (and requiring) this record to be the last record in the result, but it is going into the top part. What can I do to control this? ...more >>

bitwise operation questions
Posted by Craig Buchanan at 2/26/2004 4:02:16 PM
I would like to store mailing-list preferences in an Int field using bitwise operators, but I'm having a bit of difficultly. The field is named 'EmailFlags'. The values for the lists are: 1=ListA, 2=ListB and 4=ListC. Questions: 1). If I want to set the preference value to include listb...more >>

build where condition
Posted by Uri Dimant at 2/26/2004 3:54:35 PM
Hi, folks My friend was asking by interviewer the next question. There is GUID that users will be able to choose company/or few comanies , then from combobox will be selected one of these comparisons (<,>,>=,<=,like) and then one more parameter let me say like age . The interviewer asked...more >>

SELECT TOP X (Pass parameter to X)
Posted by Guadala Harry at 2/26/2004 3:26:19 PM
I would like to include the following SQL statement in a stored procedure - but with an integer parameter/variable passed to the TOP clause (in place of 5 in the code below). SELECT TOP 5 * FROM products WHERE productid NOT IN (SELECT TOP 5 productid FROM products ORDER BY productid) ORDER...more >>

Problem with a Temporary Table
Posted by rwmorrison NO[at]SPAM bigfoot.com at 2/26/2004 2:12:52 PM
I have an ASP page that uses vbscript running against a SQL Server 2000 database (version 8.00.818). This procedure creates several temporary tables, all of which were working fine until I added the most recent temporary table. The code that creates this table is: SQLQuerySelect = "select ...more >>

ASP and stored procedure
Posted by John Berman at 2/26/2004 2:10:55 PM
Hi I have some experince with ASP and databases in General, however Stored Procedures are new. I need to call a stored procedure and have bene told I need to to the following: declare @gmnv varchar(20) EXEC GMW_NV_Create @gmnv OUTPUT EXEC GMW_NV_SetValue @gmnv, 'contact', 'CURE' ...more >>

sp_executesql
Posted by Fabrizio Maccarrone at 2/26/2004 1:26:59 PM
Why doesn't it work? =========================== USE Northwind exec master.dbo.sp_executesql N'select top 1 * from @tabella', N'@tabella varchar(20)', @tabella = 'Customers' =========================== How can I passtha param @tabella in my statement to pass it to sp_executesql? ...more >>

Script to find out about what database an object belongs to
Posted by Jorge at 2/26/2004 1:11:10 PM
I'd like to know if there a script that would allow me to find out what database an object (table, stored proc) belongs to....more >>

Find without a recordset?
Posted by Gerard at 2/26/2004 12:24:26 PM
Quick and simple. I am running SQL2K on Win2K. I'm pretty sure the answer is no, but... Can you do a search against a table without bringing it in through a recordset and using the .find method. I.E. Do Until rst.EOF rst.Find "ID = ABC" rst.MoveNext Loop I understand ...more >>

More than 255 bytes in Last TSQL Command batch?
Posted by Richard B. P. at 2/26/2004 12:12:08 PM
Hi everybody, Is there a way of viewing more than 255 bytes in the enterprise manager or the query analyzer of the last TSQL Command batch executed? Thank's in advance. - Richard *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded f...more >>

Specific Types of Cursors
Posted by klnorris NO[at]SPAM comcast.net at 2/26/2004 12:11:21 PM
How do you open a specific type of cursor rather than accepting the default type which I think is dynamic? Please give an example. Thanks! ...more >>

Create Custom Error Message
Posted by jasonl22 NO[at]SPAM yahoo.com at 2/26/2004 12:11:20 PM
When viewing the job history in sql server 2000, after you click on the step ID, log data is displayed in a window at the bottom of the GUI screen displaying the error message. I am raising a custom error message via a T-SQL statement using RAISE ERROR to write to this window. This works for j...more >>

good TSQL site/ class
Posted by chris at 2/26/2004 12:04:04 PM
I was wondering if anyone knew of a good TSQL site or class for more advance development. I was looking specifically for something that does something along these lines; 1: Shows the tables involved. 2: Shows the desired output. 3: Leaves it up to you to figure it out. Any ideas??? TI...more >>

Get newest entry for each employee
Posted by Patrick Rouse at 2/26/2004 11:56:05 AM
id int identity primary key, EmployeeID int, TranDate datetime, TranCategory char(3 Table includes many different entries for each EmployeeID, and can be from any number of categories. I'm trying to write a query to get the newest entry for each EmployeeID where the TranCategory = Any help app...more >>

Error when trying to execute an SP for insert data in Oracle with Linked Server
Posted by Fernando M. Lopes at 2/26/2004 11:33:53 AM
Hello ALL, I have some procedures in SQL and them will insert data in a Oracles tables, using Linked Server. When I try to execute one of my stored procedures, I got this error: Server: Msg 7391, Level 16, State 1, Line 1 The operation could not be performed because the OLE DB provider 'MSDAO...more >>

Date format
Posted by Olivia at 2/26/2004 11:15:27 AM
I use the "CONVERT(DATETIME, Col1, 101) AS Col1" to convert the source string data and that is how my dateype is showing in my sql server environment: 2002-11-19 00:00:00.000 Question 1: How can I have this showing the actual time instead of only zeros? Question 2: How can I have showin...more >>

Changed from ODBC to OLEDB, now stored procedure doesn't work
Posted by slide NO[at]SPAM backpacker.com at 2/26/2004 11:11:25 AM
Hoping someone can help me with this problem. I'm using ado to connect to a SQL Server database. I recently changed my connection string from : var m_sDSN = "Data Source=mydsn;User ID=user;Password=pw"; to var m_sDSN = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=...more >>

Modifying temporary tables errors
Posted by Paul Lush at 2/26/2004 10:54:33 AM
MSSQL 2000 SP3 and Im trying to add a column to a temporary table as the real table is huge SELECT DataT.* INTO #ptable FROM DataT ALTER TABLE #ptable ADD NEWCOLUMN int UPDATE #ptable SET #ptable.NEWCOLUMN = 1 The update reports back Server: Msg 207, Level 16, State 1, Line 3 Invalid...more >>

ROLLBACK TRAN / TRIGGER
Posted by Joe at 2/26/2004 10:30:35 AM
I'm struggling with understanding how a SP ROLLBACK will happen when a trigger fails. If in the calling SP is wrapped in a transaction and a simple SQL call is made that envokes a trigger - but the trigger fails - will the calling object be aware that the trigger failed or do I have to build l...more >>

Storing the result of a EXEC(something) in a variable
Posted by Fernando M. Lopes at 2/26/2004 10:22:14 AM
Hello ALL, I have this error code. DECLARE @SQL VARCHAR(1000) DECLARE @INC_LINHA INT SET @SQL = '(SELECT MAX(LINHA) FROM ''' + @TOTAL_PATH + ''')' SET @INC_LINHA = EXEC(@SQL) IF @INC_LINHA IS NULL OR @INC_LINHA = '' SET @INC_LINHA = 1 ELSE SET @INC_LINHA = @INC_LINHA + 1 So, I need t...more >>

Simple UPDATE query?
Posted by SLE at 2/26/2004 10:20:26 AM
Hi there, Sorry for not posting any DLL, the example is too simple. Suppose I've got a single table with two columns, Number and Item: Number, Item 1, null 1, null 2, null 2, null 2, null 3, null 3, null etc. I want to write an update query which results in the following data: N...more >>

Trying to get two decimals after converting data type
Posted by b_russ NO[at]SPAM yahoo.com at 2/26/2004 10:16:32 AM
Hi, I'm trying to get two decimals from [Res_Time] after converting the data type: Select AVG(Convert(decimal(10,2), (datediff(hour, ([date_Created]-.333), ([date_closed]-5.0417))))) AS Res_Time from cube.dbo.cube_Siebel_SR where.... Instead I get 6 decimals like 51.941176 Any sugge...more >>

Urgent!! How to recover the deleted table
Posted by Rayman at 2/26/2004 9:58:50 AM
Hi All, I have accidentally deleted some of the table in the database,=20 anyone could tell me how to recover the deleted table? I have a full backup of the database (1 week before) and the transaction log , so what action should I take to recover it?=20 Thanks for your advice!! Br, Ray...more >>

Help with Select query
Posted by abc NO[at]SPAM helloall.com at 2/26/2004 9:40:04 AM
Hi, I have two tables containing minutely readings: Create Table IncOnOff (OnOffId int identity(1,1) primary key, [Datetime] smalldatetime, OnOff bit) Create Table TagMin (Tagkey int identity(1,1) primary key, [Datetime] smalldatetime,Value real) insert into IncOnOff Values('2004-0...more >>

Need to read/write an image file (.jpg)
Posted by Bill Borg at 2/26/2004 9:16:07 AM
Hello all Pretty basic, but I can't figure out the right syntax for getting an image file (.jpg) into the database, and then reading it back out again as a file. All my handy SQL books skip over this bit I'm building an ASP.NET app, and want to store small gif's and jpg's in the database itself...more >>

Best Practice to Encapsulate Update to Table
Posted by ERob29 at 2/26/2004 9:12:38 AM
I have a table which I need to retrieve a particular field's value and then increment this field and return the incremented field to the calling program. I thought the best practice would be to use a scalar function. However, I have found out that a function cannot update tables. Therefore, I am ...more >>

function argument and odbc escape syntax
Posted by Scott Morris at 2/26/2004 9:00:59 AM
SQL 2000 (8.0.760) I have the following trivial function. The contents of the returned table are not material . create function dbo.test (@testdate datetime) returns table return select * from dbo.AUDIT where CREATED_DATE >= @testdate go As far as I can tell, the following should be va...more >>

Stored procedure/trigger and scripts
Posted by Scott Elgram at 2/26/2004 9:00:21 AM
Hello, I am in need of a way to use a stored procedure/trigger to execute a script. Here's the situation. About 3 weeks ago Microsoft released an update to IE 6 that eliminated the ability to pass a username and password through the URL in a website. My company used this feature to al...more >>

Remainder
Posted by seytonjones NO[at]SPAM hotmail.com at 2/26/2004 8:47:54 AM
How can I get the remainder of a value using a SELECT statement in SQL Server. I had hoped I could use a MOD function, but that does not appear to be the case. SELECT MOD(5,2) giving me a remainder or result of 1. Thanks Steve...more >>

GetDate(): Bug? Feature? Anomaly?
Posted by Scott McNair at 2/26/2004 8:31:42 AM
Run this in query analyzer: select GetDate() as 'DATE', LTRIM(GetDate()) as 'DATE 2' Notice what happens to DATE 2. Why?...more >>

Linked server and distributed trans (not loopback!)
Posted by Alexey.Aksyonenko NO[at]SPAM coanetwork.com at 2/26/2004 7:43:32 AM
Hi. I am getting the following error running one of my SPs: ------------------- Server: Msg 7391, Level 16, State 1, Procedure sp_SignUpMain, Line 1520 The operation could not be performed because the OLE DB provider 'SQLOLEDB' was unable to begin a distributed transaction. [OLE/DB provider r...more >>

Error installing MSDE 2k Analysis services
Posted by M K at 2/26/2004 7:16:09 AM
I get a message An error occurred during the move data process: -14 when Microsoft SQL Server 2000 Analysis Services SP3 Setup.exe reaches 99%...more >>

User Defined Functions ???
Posted by Martin at 2/26/2004 4:04:07 AM
Hi, Can someone tell me or point me in the right direction regarding user defined functions ? Within Ent Manager I can't find an example or help within the MS product. I thought Master or Northwind woul have one! How do create one? I assume if i created a function ConvertX i would us...more >>

CASE Statement Question
Posted by GS at 2/26/2004 3:11:44 AM
Hi all Can anyone explain me why I can't able to get the following SQL to run declare @test as int set @test = -1 select A= case @test when -1 then 'dgffg' when 0 then null else @test end Whereas below can execute..... declare @test as int set @test = -1 ...more >>

full text search in russian
Posted by lamer at 2/26/2004 2:51:06 AM
Hi, guru' As far as I understand, MS SQL2000 makes good full text search in English but ignores all Russian words. Is there a way overcoming this trouble Thanks and breg...more >>

Retrieve error text from extended stored proc
Posted by Lee Schipper at 2/26/2004 1:23:58 AM
SQL Server 2000. I am calling an extended stored procedure that returns an error code (0 or 1) and error text on failure. On failure I would like to record the error into a log, but I cannot figure out how to retrieve the text into a stored procedure variable The extended stored proc is xp...more >>

running accumulative value in select statement
Posted by kriste at 2/26/2004 1:19:19 AM
Hi, I need to format a report in following layout: Day Withdrawal Deposit Balance =20 *** ********** ******* ******* 1/1 1000 1/4 -200 ?? 800 1/5 +500 ?? 1300 =20 1/6 -250 ...more >>

IF Statement
Posted by Khurram Chaudhary at 2/26/2004 12:21:32 AM
Hi, I can't seem to get this to work but everything looks good to me: IF (@DisciplineCode IS NOT NULL ) OR (@DisciplineCode <> 'ALL') SET @X = @X + 1 Any suggestions would be great. Khurram ...more >>


DevelopmentNow Blog