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 > december 2003 > threads for monday december 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

range of holes
Posted by Noam at 12/29/2003 11:00:52 PM
hi, I have a table of tasks with time: select taskid, startTime, endTime from Tasks when no task was running ? many thanks ...more >>

Table Datatype in Proc
Posted by Umer Minhas at 12/29/2003 10:46:04 PM
Hi How can I use Table Datatype in Procedure as an input variable. The problem is that I have different triggers on different transactional tables. These triggers are used to log the changes via insert in some other table (this table is static in all cases). Here I need that trigger passes the v...more >>

How do I get the datetime stamp into ISO format YYYYMMDD?
Posted by SniperX at 12/29/2003 10:21:11 PM
I need to convert the datetime into YYYYMMDD. BOL says using style value 12 or 112 should put it in the correct format, but that is not what its returning SELECT CONVERT(DATETIME, GETDATE(), 112 gives me 2003-12-30 01:17:26.75 When I want 2003123 Does anyone know what I am doing wrong ...more >>

reading from information_schema unreliable
Posted by Shailesh Humbad at 12/29/2003 8:10:33 PM
The following simple queries on information_schema are not working reliably from my ASP 3.0 web page. 1. query to get list of non-system databases SELECT CATALOG_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE CATALOG_NAME NOT IN ('master','tempdb','model','msdb') 2. query to verify a select...more >>

tran and sp
Posted by newb at 12/29/2003 6:57:04 PM
I have a procedure, say procedure A which calls Procedures B and proc. B calls procedure C , I have started a tran in Proc A with <begin tran mytran > do I need to start more tran for procedures B and C. Currently it is like this create proc a as begin begin tran t1 <do some update tas...more >>

weird question
Posted by amita at 12/29/2003 6:49:22 PM
Can anybody tell me the dates (may ve appox.) sql server 6.5 sql server 7.0 sql server 2000 were realesed to production TIA ...more >>

BCP OUT
Posted by Allan Wang at 12/29/2003 5:11:28 PM
Hi there, How can I use BCP utility to BCP OUT data with first column is column name. I am using SQL Server 7. Thanks in advance. Allan ...more >>

merge one database into another
Posted by Mustapha Amrani at 12/29/2003 3:43:20 PM
I have two databases data1 and data2, I would like to copy the contents of data2 into data1. Both databases have the same structure. How can I do this in Server 2000? Thanks Mustapha ...more >>



find dependencies of object
Posted by joe at 12/29/2003 3:33:42 PM
Hi, I used sp_depends to find out what objects contain inside an object such as store procedure. sp_depends 'store_procedure_1' but I only get objects from current database, can I get objects from outside of database? is there a function in sql server 2000 allow me to find out t...more >>

BCP Zero Fill Blanks
Posted by dontspammenow NO[at]SPAM yahoo.com at 12/29/2003 3:30:59 PM
I'm doing an export of a file from SQL Server via BCP. On a field defined as numeric 9(10,0), I take the field and translate it into a SQLCHAR in my format file. If the number is less than 10 positions, the result is left justified with trailing blanks. Is there any way to convert the blanks ...more >>

SP Union SP?
Posted by BenignVanilla at 12/29/2003 3:21:34 PM
I have a system that uses a stored procedure called from a VB application using a series of custom classes. Each call to the SP uses different arguments to attain the specific result set. We recently had a requirement that essentially equates to a union of the two of the data sets. Is there an...more >>

Can a word document be saved into a SQL Server table?
Posted by Chris Straub at 12/29/2003 3:13:44 PM
Can a word document be saved in a SQL Server column using c#?...more >>

Excel, OpenRowset, and alpha/numeric data
Posted by William Morris at 12/29/2003 3:06:30 PM
Windows 2000 Office 2000 MSSQL 2000 (seeing a pattern yet?) Trying to query an Excel file from Query Analyzer using OpenRowset. It works fine except with columns whose data contains a mix of alpha-numeric characters. A column of: 1234 2345 3456 4567 FOO 5678 6789 BAR imports as...more >>

Fine tune TSQL
Posted by culam at 12/29/2003 3:03:14 PM
Hi, I have an online application that access data from a view. Unfortunately it is extremely slow. How can I fine tune the code below to run faster. SELECT acct, final_decision,( SELECT COUNT(DISTINCT final_decision) FROM sale t1 WHERE t1.acct = t2.acct) FROM sale t2 Thanks, Cula...more >>

help on query
Posted by Jen at 12/29/2003 2:07:42 PM
Hi, this query works before, but now it gets: Server: Msg 8114, Level 16, State 5, Line 1 Error converting data type varchar to numeric. here is the simplified query SELECT top 10 * FROM table1, table2, table3 WHERE table1.id = table2.id AND table2.type_id = table3.type...more >>

Programmatically restore databases
Posted by GriffithsJ at 12/29/2003 2:05:55 PM
Hi I am using an application (Robocopy) to copy a series of database back-ups (*.bak) from one machine to another. What I then want to do is to go through the folder containing these back-up files and restore databases from them. However, I don't know in advance the names of the files, bu...more >>

Re: Excel, OpenRowset, and alpha/numeric data
Posted by oj at 12/29/2003 1:45:37 PM
Found the article... http://support.microsoft.com/?id=194124 -- -oj http://www.rac4sql.net "oj" <nospam_ojngo@home.com> wrote in message news:... > This is a limitation of Excel ISAM driver. The determined/sampled datatype is > based on the majority. Once this is selected, the rest w...more >>

Oracle Linked Server
Posted by don schilling at 12/29/2003 1:36:49 PM
I have a perfectly functioning linked server. Created in SQL 2000 to Oracle 9i. The SQL openQuery function works fine. But I dont know how to run a proc that lives on the Oracle db and requires an input param. I've tried using "Exec OracleSrv..Scott.TEST1 1736". Test1 is my proc, 1736 is the numb...more >>

Failed SPROC Why?
Posted by Rick at 12/29/2003 1:22:17 PM
I am working on a stored procedure (see below) that creates a cursor with var_id and var_desc fields from a linked server. It needs to loop through the cursor and try an insert (via another stored procedure call) for each row into a table in a database on the local server. If the row already e...more >>

How to retrieve the current replication text size of a database
Posted by Zeng at 12/29/2003 12:10:00 PM
I read about how to use sp_configure with "max text repl size" to set the max text size for replication but how do I retrieve the current max size for replicating text? Thanks! ...more >>

Key design help
Posted by Jeff Fisher at 12/29/2003 12:06:05 PM
I have a question about database design. I have inherited a system that archives data generated from an older financial system. The problem I am facing is that this system does not have the ability to increase its invoice number size over 999999 and we are turning over invoice numbers. I am curio...more >>

Alter Column
Posted by dorothy NO[at]SPAM boesel.net at 12/29/2003 12:03:21 PM
I have been trying to change a column value using the following statement: ALTER TABLE tablename ALTER COLUMN column_name varchar(30) The response that I get is: Server: Msg 170, Level 15, State 1, Line 2 Line 2: Incorrect syntax near 'COLUMN'. The column was originally a varchar(10) ...more >>

Using variables in top
Posted by Matija Brnetic at 12/29/2003 12:00:25 PM
I am using stored procedures to fetch data from database, and I want to control how many rows I fetch. How to use a variable in select command with top parametar something like this ? CREATE PROCEDURE abc (@n varchar(2)) as select top @n * from bbb go thnx ...more >>

DTS limitations
Posted by brian at 12/29/2003 11:50:15 AM
I have a table with all the header information for an order. All that is not included in this table is information pertaiining to order lines of the order. The tables are relational so the header table has all numbers in it. I need to export this information for a non relational databas...more >>

Using LIKE against a variable in a stored procedure
Posted by J.Martin at 12/29/2003 11:41:18 AM
Gang, Having a little problem, and I'm hoping that wiser heads than mine can point me in the right direction. I'm trying to use a stored procedure to execute a query that is doing partial substring seaches of a keyword table. I was using the CONTAINS sql method in SQL Server, but run into...more >>

passing Image blob to SP
Posted by Rafael Chemtob at 12/29/2003 11:12:43 AM
Hi, I have a stored procedure that accepts an image parameter from a VB app. In VB, i declare the parameter as "adBinary" and in the stored procedure, it's declared as "Image". When I try to execute the insert statement, it fails. If I comment out the image field of the Insert statement, it w...more >>

Good Practices
Posted by Alejo at 12/29/2003 10:53:23 AM
Hi all: Hope somebody could give me some good practices to go on. Supose the following tables: create table ClientTypes ( lClientTypeID numeric identity not null, sDescription VARCHAR(100) not null, iActive smallint not null ) on [PRIMARY] create table Clients ( lClien...more >>

Locking issue SQL 2000 with application
Posted by Jackson Hull at 12/29/2003 10:46:45 AM
I have an application that is misbehaving -- the application writes to the database without locking parent tables. The problem I have is that a routine I run changes the primary keys in the parent table before the application has written to all child tables, causing the application to f...more >>

Differentiate Upper / Lower Case in REPLACE String function
Posted by Kaz at 12/29/2003 10:43:24 AM
-- I'm using SQL Server 2000, Is there any way Tran-SQL , return 'abxxxfghiCDE' -- instead of 'abxxxfghixxx' using the following statement?. Thank you in advance. SELECT REPLACE('abcdefghiCDE','cde','xxx') GO abxxxfghixxx ...more >>

Verbose Deadlock debug info
Posted by Twiggy at 12/29/2003 10:41:10 AM
Lately my application has started to deadlock on a stored procedure that until now did not. I'm about to dig in and figure out the cause. The transaction does effect a lot of tables and I'm sure SQL is doing a table lock where a row or page lock would suffice. My question is how can I get my app...more >>

IF EXISTS statement
Posted by simon at 12/29/2003 10:39:03 AM
declare @startDate as datetime declare @endDate as datetime set @startDate='20031210 7:01:03' set @endDate='20031210 7:01:05' if exists( select * from cpoTimeSlot where (ts_startDate > @startDate AND ts_startDate < @endDate) OR (ts_endDate >@startDate AND ts_endDate < @endDate) ) select ...more >>

DataType for IP
Posted by Dan at 12/29/2003 10:26:30 AM
We need to start collecting the source IP for an application. What would be the best datatype to store that info in? Thanks in advance for your help Dan...more >>

Local Scope for @@Error ?
Posted by don schilling at 12/29/2003 9:21:33 AM
Is there a local version of @@Error like there is for @@Identity. For @@Identity you use the function SCOPE_IDENTITY(). Does @@Error need somehting like this? ...more >>

query hard to explain
Posted by peg at 12/29/2003 8:38:29 AM
I have a query that i'm not sure how to compose there are 3 tables Table1 VendorID ProductID Table2 ProductID (various other fields) Table3 VendorID ProductUD Basically Table1 will have the majority of the records. IF Table2 has productID that is Table1 THEN there has to be a ...more >>

Delete record in 2 tables linked with an id
Posted by dave at 12/29/2003 8:36:08 AM
I have a quote table and a quote detail table. I need to delete all quotes that belong to the contact that I want to delete, and I also need to delete the quote detail records that are linked to the quote table. So each record in the quote table has a contactID field and the quote and quoteDetail...more >>

Slow Table Opening - 5 min
Posted by Gerard at 12/29/2003 8:20:57 AM
We are in the middle of an upgrade here. We are going from a straight Access database with VBA front end, to SQL Server 2000 with a VB front end using ADO. We are mid- way. Right now we are at the point of having all the VBA code in Access using SQL Server and ADO. I am connecting to SQ...more >>

Database Name Reference
Posted by Leo at 12/29/2003 8:16:47 AM
Is there a way to reference the database name using a variable? Something like this??? sp_DeleteJobItem @NewJobID, @DatabaseName CREATE PROCEDURE sp_DeleteJobItem @NewJobID int, @DatabaseName as DELETE @DataBaseName.dbo.Job_Item WHERE Job_ID = @NewJobID...more >>

Very slow queries from ASP
Posted by berber at 12/29/2003 6:35:01 AM
Hi I'm seeing a very weird (and new) phenomena on two of my IIS servers. Suddenly, queries are very very slow. The weird part is that if i run the query from Query Analyzer it works great (0 seconds) but if i run it from ASP i get a very slow response and sometimes even timeout. any ...more >>

time cross-cut
Posted by Noam at 12/29/2003 4:31:25 AM
hi, I have a table of tasks with time: select taskid, startTime, endTime from Tasks when no task was running ? ( i need it by ranges of time ) many thanks ...more >>

SP output to file or table?
Posted by hansje at 12/29/2003 4:11:56 AM
So how can I send the results from a system-SP to a table or a file? I wish to run the procedure sp_publication_validation each night, because during the day it would probably be too much of a strain on an already busy DBserver. How can I capture the output in a file opr a table? Tnx, Hans ...more >>

What does F1 mean???
Posted by lentyai NO[at]SPAM inbox.ru at 12/29/2003 3:57:43 AM
Hi, all! When I'm trying to import data from Excel using DTS object in VB one of the params specified are: oCustomTask1.SourceSQLStatement = "select `F1` from `'Sheet1$'`" What is F1? Actually what I need is to specify a range of cells in the Excel to import into SQL tables. This could be a ...more >>

Query help sum distinct
Posted by M Forsberg at 12/29/2003 3:51:11 AM
Can someone help me with a query? example create table #test_order (ordernumber smallint, order_value numeric(8,2)) create table #test_orderrow (ordernumber int, row smallint, itemnumber varchar(20) ) insert into #test_order values (1, 1023.50) insert into #test_order values (2, ...more >>

Transaction Log Full -- Please Help
Posted by Satish at 12/29/2003 3:00:08 AM
Hi All, I have a serious problem with my database. Even after periodic backup of my transaction log, the size of the log file is increasing significantly. I was told that periodic transaction log backup prevents the increase of transaction log space. My backup plan is like thi...more >>

CREATE ASSERTION with Microsoft SQL Server
Posted by Morten Gulbrandsen at 12/29/2003 1:42:57 AM
Hi programmers, Please, how can this be coded in Microsoft SQL Server CREATE TABLE EMPLOYEE ( FNAME VARCHAR(15) NOT NULL, MINIT CHAR, LNAME VARCHAR(15) NOT NULL, SSN CHAR(9) NOT NULL, BDATE DATE, ADDRESS VARCHAR(30), SEX CHAR, SALARY DECIMA...more >>

Latches & Sysprocess
Posted by Anand at 12/29/2003 12:40:07 AM
Hello All, When I queried sysprocesses, following was the output. spid waittime lastwaittype waitresource 1 407 SLEEP 2 23907 RESOURCE_QUEUE 3 3782 RESOURCE_QUEUE 4 0 PAGEIOLATCH_SH 1:1:1095 5 0 WRITELOG 6 3873657 RESOURCE_QUEUE 7 43000 RESOURCE_QUEUE 8 0 MISCELLANEOUS 9 0 WRIT...more >>

SQl Server Agent
Posted by Gary Smith at 12/29/2003 12:16:08 AM
How to get notified when the SQL server agent stops ? Gary ...more >>


DevelopmentNow Blog