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 > april 2004 > threads for wednesday april 28

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

select 'a',exec sp
Posted by Sohail at 4/28/2004 11:06:01 PM
I want to get output of a stored procedure in a select statement with other columns. how to do that....more >>


why drop constraints before truncate
Posted by Thomas Scheiderich at 4/28/2004 11:03:14 PM
I have a SP that removes the foreign keys, then truncates some files and then adds back the keys. Why do this? For example: ********************************************************************************** ALTER TABLE dbo.SalesFact DROP CONSTRAINT FK_SalesCustomer ALTER TABLE dbo.Sales...more >>

Dynamic SQL
Posted by Sohail at 4/28/2004 10:56:42 PM
I have sql statement in a column like thi select 'select * from table is there any possible way to run all statements like this (in a column) to exec at run time and return me the single value in the respective column ...more >>

Connection or CommandText
Posted by Chris Whitehead at 4/28/2004 9:14:26 PM
Performance speaking - Is there any difference in opening up a recordset using a Connection object opposed to a CommandText object? Thanks, Chris ...more >>

Trouble with Update and LInked Server
Posted by Rob C at 4/28/2004 7:16:52 PM
I am trying to execute an update command in Enterprise Manager. I am trying to update a varchar(2000) column in a SQL Server table with a column from an Access database table that is set up as a linked server. This is the SQL statement: UPDATE MDSAssessment SET ExportString = CAST(MDS...more >>

Installing mdf/ldf database files from C#
Posted by Randy at 4/28/2004 7:14:27 PM
Here's how install my mdf and ldf database files from the command line: osql sp_attach_db @dbname='myDatabase', @filename1=N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\myDatabase.mdf', @filename2=N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\myDatabase.ldf' Any suggestion on how ...more >>

Conditional columns in Select list
Posted by Cipher at 4/28/2004 6:12:50 PM
Is it possible to conditional select fields in SQL Server? I've built a Stored Procedure that returns data from a table based on a passed parameter. For example, I have built something similar to the following ... IF @parameter = 0 SELECT au_id, au_lname, au_fname FROM pubs..authors Els...more >>

how does trigger works?
Posted by Guy Brom at 4/28/2004 4:38:16 PM
Hi there, I have an application that INSERT new records to a database at a rate of 5 items per second (for a period of 10 minutes each hour). The new data arriving to the database should be verified and cross-checked with a different table (a 2-3 seconds process for each new record). Is i...more >>



How to get a list of stored procedures?
Posted by Chris at 4/28/2004 3:51:03 PM
Hi, I'm a bit of a rookie at this I've created many stored procedures for my new database. Now I would like to list all of the names and parameters in a file. Is there an easy way to do this?...more >>

Error handling in SQL Agent Jobs
Posted by SQLGMwork at 4/28/2004 3:38:28 PM
Hello All, I have just read "E Som\mars\kog" text on error handling and found it very useful. Can anyone recommend a URL explaining the use of error handling within Job Steps, especially to force the step to Fail, to allow flow control of the steps. I have used DTS but find it unsatisfactory...more >>

SET ROWCOUNT ?
Posted by Q at 4/28/2004 3:36:04 PM
Hi all Is Set RowCount effect by per connection or entire database If I use Set RowCount to 200 in my long procedures, will that cause any problem for other users in the same database ...more >>

Stored procedure output
Posted by CCA Dave at 4/28/2004 3:23:12 PM
How do I "capture" the output of a stored procedure if it is run by SQL agent. Basically I want to redirect the result set returned into a text file to ftp it. E.g. declare @header as varchar (256) set @header = '*DATABASE:MS_DATA.MDB' + char(13)+char(10) + '*TABLE:MS_Customers'++ ch...more >>

PROC
Posted by Majid LAISSI at 4/28/2004 3:20:31 PM
Hello everybody, I use ORACLE with PROC When I execute this request: EXEC SQL CREATE TABLE SC_PAY_TMP1 AS SELECT * FROM SC_PAYMENTS WHERE auth_date <= to_date(:sqltcDATEFIN,'DD/MM/YYYY hh24:mi:ss') AND auth_date >= to_date(:sqltcDATEDEBUT,'DD/MM/YYYY hh24:mi:ss')...more >>

how to check a #tmp table exist
Posted by Patrick at 4/28/2004 3:06:09 PM
SQL 2000 I need to know if a tmp table ( #MYTMPTABLE ) ecist in the same session I am working or no ! I tried to use information_schema.tables and sysobjects, but it is not there ...... How can I check it out? Thanks in advance, Patrick ...more >>

compound primary key and insert error
Posted by JK at 4/28/2004 2:36:02 PM
Hi We have a table with a compound primary key and are trying to use the following commad to insert some values in to it insert into bigtable (field_a,field_b,field_c) select field_a,field_b,field_c from smallertabl (The PK is made up of field_a and field_B The command give a "Msg 2627 Viola...more >>

Update Fails for sysservers.
Posted by Selva Balaji B at 4/28/2004 2:20:37 PM
Hi All, After renaming my system, Sql Server name also changed. Profiler Title bar displays the old name. When I checked master..sysservers, the new system name is not updated. I am unable to update that table. It throws an error "Ad hoc updates are to system catalogs are not enabled" How do...more >>

inserting SP output into table
Posted by CG at 4/28/2004 1:56:59 PM
I was wondering if there is a direct way to take the result set returned by a SP call, and have it insert into a table. If you know the table schema of the SP result set, and create a temp table, in advance, it seems reasonable and desirable. I can get the same thing done with a cursor, but I w...more >>

Undocumented CONVERT styles
Posted by Vlad Vissoultchev at 4/28/2004 1:50:27 PM
can anyone comment style param produced by this: IF OBJECT_ID('MyTable') IS NOT NULL DROP TABLE MyTable GO CREATE TABLE MyTable ( CD DATETIME NOT NULL DEFAULT { fn CURRENT_DATE() } ) GO SELECT COLUMN_NAME , COLUMN_DEFAULT FROM INFORMATION_SCHEMA.COLUMNS WH...more >>

can't get exclusive access to SQL Server 2000 DB in TSQL
Posted by google.com NO[at]SPAM mcrae.ca at 4/28/2004 1:32:54 PM
Greetings: Here's the TSQL I am attempting to execute: ALTER DATABASE EBroadcastTest SET SINGLE_USER WITH ROLLBACK IMMEDIATE RESTORE DATABASE EBroadcastTest FROM DISK = 'E:\BackupDump\' WITH MEDIANAME = 'EbroadSANDmpWed.bak' , REPL...more >>

SMTP mail in SQL Server
Posted by Jeff at 4/28/2004 1:32:37 PM
I'm planning to use SMTP mail in SQL Server as outlined in: Microsoft Knowledge Base Article - 312839 I can make the mail work, but I have two issues that I cannot figure out (sorry, I'm new in this environment). 1. How can I include a 40K file in the HTMLBody (the output of a sp_makewebtas...more >>

Openning a cursor from a stored procedure
Posted by Adam Jawer at 4/28/2004 1:22:47 PM
How can I use the output from a stored procedure in a cursor? I need to do something like this... Declare myCur Cursor for sp_myprocedure param1, param2 open myCur detch next from MyCur into .... Can anyone help me? Thanks, -Adam...more >>

IF inside a WHERE clause?
Posted by Rick Charnes at 4/28/2004 1:22:31 PM
How can I write this stored procedure so that I'm not repeating the entire SELECT statement for both IF conditions: IF @arg1 = 'Y' THEN SELECT * FROM mytable WHERE a = b AND c = d AND f = g ELSE SELECT * FROM mytable WHERE a = b AND c = d AND f = g AND h = i Thanks....more >>

getdate and dateadd causes Syntax error converting datetime from character string.
Posted by Jim.J at 4/28/2004 1:20:21 PM
Hi, Can anyone help me out here, i get: "Syntax error converting datetime from character string." from the following: alter PROCEDURE spCMS_DomainsList @intDays int, @intUserID varchar(20), @strName varchar(256) AS Declare @Date Datetime, @sql varchar(1500) Set @Date = getdate() S...more >>

AVG function
Posted by Rafael Chemtob at 4/28/2004 1:19:12 PM
Hi, I have a field in my table of type INT. I want a query to return the average of that field based on a criteria though it's not returning the decimal. Any ideas how to get this to return the decimal. thanks rafael ...more >>

Conversion of a Date to a 4 digit period field
Posted by Dr Tarheel at 4/28/2004 1:16:01 PM
Hi, I'd normally keep playing with it until I got it, but the deadline is fast approaching. How would you convert any date to a form of MMYY in a 4 character period field. I'm trying to stuff a '0', but it replaces the 4 on the month side. I got the year just fine. Thanks! ...more >>

String for query condition
Posted by Mark at 4/28/2004 1:08:25 PM
Hi, I pass a string from the htm page multi-select form like 'California,San Francisco,New York,New York City,Texas, 0,Georgia,Atlanta' The string has at least a pair of state and city. Users can select up to max six state and city. If city's value is 0, select all cities. My question is how t...more >>

Last row
Posted by Tim at 4/28/2004 12:54:29 PM
Hi - I have a table with a composite index of id and datetime. How can I select the last row of this group? In other words the one with the most recent date with a given ID? Also if I want to update this row how would the sql be? Thanks in advance....more >>

RAISERROR Behaviour
Posted by Paul Hatcher at 4/28/2004 12:52:02 PM
I have two SPs A and B, with A calling B. What I want is for A to stop processing if the call to B fails so I have code in A like EXEC dbo.B @P1, @P2 IF @@ERROR<> 0 BEGIN SET @Msg = 'B Failed' RAISERROR @Msg, 16, 1 END The problem is that B is raising it's error (same as a...more >>

DDL and Transaction
Posted by Mr.Bug at 4/28/2004 12:31:35 PM
Hi I wanted to know that how Transaction work DDL statements Regards Mr.Bug ...more >>

Is this possible
Posted by Geo at 4/28/2004 12:14:26 PM
(sorry if this comes up as a double post but I forgot to put a subject line teh first time) I have a diary table, which is used for inputting a schedule of intended works. When an item is inserted into the table it is given a status of 'scheduled', a version number (starting at 1) and a unique c...more >>

Bulkinsert Problem
Posted by David N at 4/28/2004 11:56:09 AM
I got a problem with Bulk Insert lately in one of our clients environment. Basically, I have a stored procedure that creates a temporary table, and then use the BULK INSERT INTO.. statement to populate the temp. table with data records from a text file. This simple stored procedure running e...more >>

Reorganize Indexes
Posted by Dan at 4/28/2004 11:32:50 AM
I would like to create a TSQL script, if a table indexes is less than 80% organized they will be reorganized. Please help me create this script. Thanks, Dan ...more >>

Suppressing External Output
Posted by Offeral at 4/28/2004 10:41:05 AM
I have an SP that calls another SP. Is there a way to suppress the output of the secondary SP in the primary window through code Thanks in advance Offey...more >>

Update Query
Posted by Chris Savedge at 4/28/2004 10:32:30 AM
This up date query is failing on the "inner join" syntax. Does anyone know what syntax I should be using? UPDATE proddta.F4101 INNER JOIN proddta.F4106 ON proddta.F4101.IMITM = proddta.F4106.BPITM SET proddta.F4106.BPEFTJ = 104136 WHERE proddta.F4106.BPEFTJ =104121 AND proddta.F4101.IMSRP1)<>...more >>

SET FMTONLY On
Posted by Paul at 4/28/2004 10:00:14 AM
I have a stored procedure which returns rows of data, I'm trying to present the data using Crystal reports. When I point crystal to the stored procedure I get an error message from crystal, when I've investigated futher what Crystal sends to the database is a SET FMTONLY ON, it then runs the s...more >>

Quirky Hang
Posted by Thomas J. Theobald at 4/28/2004 9:31:44 AM
Well, no one in "server" had anything to suggest, maybe you guys have seen this: We've got an installation of MS SQL 2k on a dual-CPU box. System has about 100G free on the drive hosting the database, 50G free on the log drive, and 30G free on the OS host drive. Of the 2G memory, task manage...more >>

bcp question
Posted by Bill at 4/28/2004 9:11:27 AM
How do I bcp data and a header row out to a delimited flat file when the header has more columns than the data without adding extra blank columns to the data? thanks ...more >>

Complex query needed?
Posted by Gerhard at 4/28/2004 9:06:58 AM
I have the following 3 tables Table A Account ID AccountDescr 1 Acme Account 2 Promoz Account 3 Test Account 4 BNZ Account 5 Another Account Table B Account ID MonthlyVal 1 ...more >>

Temporary vs Persistent tables
Posted by Ivan at 4/28/2004 9:03:08 AM
Hello, I want to store some information for a certain period of time (around 20 min.) and I am very interested in performance. I would like to know the advantages and disadvantages of using temporary tables instead of persistent tables. Thanks, Ivan....more >>

Subquery Update Problem
Posted by BobC at 4/28/2004 8:31:56 AM
Hi - I know this has been posted before, but I can't find a solution to my problem. I have two tables: one called Graph with data for a graph in it. Each row has a location name against it, some (but not all) of which I want to replace with a new location name. I am trying the following: ...more >>

run SP in exact time
Posted by alecarnero at 4/28/2004 8:29:59 AM
Which is the best way to run one store procedure, in an interval of time, example every 20 min??? Can be made with a job??? Thanks in advance Alejandro Carnero. ...more >>

Join a table
Posted by Phil396 at 4/28/2004 8:26:32 AM
I need to join a query to another table where there is not going to be a one to one relationship to make the join. The other table has a date column and a customer number. The date column needs to be used in a where clause in my query. I have used select top 1 subqueries in my select statement...more >>

Returning the Server Name
Posted by Peter at 4/28/2004 8:20:23 AM
Hello, Is there a quick and easy way of returning the server name ? Thanks for your time Peter...more >>

Please need help with Cross Join query
Posted by max_btp NO[at]SPAM hotmail.com at 4/28/2004 7:53:24 AM
Hi, I have two tables one for colors and another one for sizes and I need to write a query that would give me all the combinations of sizes and colors for a specific product. Here is how my tables look. SIZES COLORS ________________________ _________...more >>

SQL2K and loops in SP
Posted by Michael Kochendoerfer at 4/28/2004 7:48:02 AM
Hi, another question to the NG (even if the first one was left unanswered). I have to run a stored procedure which gets 40 parameters (needed for encapsulating some business logic without giving access to the related tables). Based on some parameters, different actions have to be processed...more >>

Execute a DB2 Stored Procedure fron SQL Server with Parameter
Posted by Suresh at 4/28/2004 6:56:02 AM
I would appreciate if any one can provide me the syntax of calling a DB2 Stored Procedure with an input parameter here is my code Declare @VAR1 as char(8 SET @VAR1='anything Exec [RECSTDB1LINK]..ES1USP.SAMPLE1 @VAR getting error.. Please help!!! ...more >>

A TOUGH ONE - audit Login, Audit Logout connection
Posted by phil.smith NO[at]SPAM informatics.co.uk at 4/28/2004 5:25:45 AM
Hi all: Hope you can shed some light on this. we have a Vb6 app connecting to a slq server database using ado 2.6. when each client is started they initialize a connection object which is kept open for the life cycle of the client (i know this not recommended but it is an inherited problem)...more >>

Do This in a Query?
Posted by Wayne Wengert at 4/28/2004 4:19:52 AM
I am sure I've seen a way to do this using a query but I cannot recall how to do it and my attempts so far are not working. I have 3 tables, Teachers, Students, Evaluations. A teacher logs in, selects a student to evaluate and when they save that data, a record is added to the Evaluations tabl...more >>

Doubt
Posted by Gokul at 4/28/2004 3:44:55 AM
Can any body provide me with some help on @errorlevel in Microsoft SQL Procedures.Please mail the infomation to my id. mailgoks@rediffmail.com gokuldas@assyst-international.com Regards, Gokul ...more >>

What is wrong with this script
Posted by DBA72 at 4/28/2004 3:36:01 AM
I am trying to disable all FK constraints in my database (so that I can truncate all tables and do a fresh data load). For some reason, the constraints are not disabled after I run this /***Disable all constraints*** SET NOCOUNT O SET ROWCOUNT DECLARE @Count in DECLARE @String nvarchar (1000...more >>

Help with serious Transact Sql statement
Posted by Michael C at 4/28/2004 2:39:06 AM
Hi anyone with the time to help! Any guidance / help would be appreciated with this stored procedure I have been away for so long and my T-Sql is so bad now! I have 5 Tables Table A is one side Table B is many side to table A by TableA.PartNumber Table C is a table to update with PartNum...more >>

Problem with Cast in Stored Procedure
Posted by Johnnie Pickering at 4/28/2004 2:31:03 AM
Greetings I have created this stored procedure where i am getting a value passed to it from an ASP page CREATE PROCEDURE [AddPurchase_SP] @VehicleId int @Item varchar(255) @Recipient varchar(50) @PurchasePrice mone A Insert Into Purchases (VehicleId, Item, Recipient, Purc...more >>

Parsing email addresses via T-SQL
Posted by JT Lovell at 4/28/2004 12:26:28 AM
I have 3 text columns (send_to, send_cc, send_bcc) in a table = dbo.newemail. Each of those tables is a text data type but is limited = to 8000 characters via the application. The data in those columns can = look like this... joe smith; bob; jimbob@site.com; bob smith <bob.smith@site2.com>; ...more >>

Replication between two local databases
Posted by Brian Henry at 4/28/2004 12:06:25 AM
how would I go about replicateing a table across two databases? just a single table on the same local server. Also, are there any disavantages to replication? besides possible delays between changes and when they show up in the replicated database ...more >>


DevelopmentNow Blog