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 > november 2004 > threads for monday november 8

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

Bulk insert from a client
Posted by Star at 11/8/2004 11:42:59 PM
Hi, I'm trying to make a bulk insert from a client computer that is connected to a SQL Server. However, I have noticed that the files that I want to import need to be on the server, instead of the client. You may not have windows access to the server machine, so I don't see the point of c...more >>

Update statement question
Posted by L.Peter at 11/8/2004 10:07:53 PM
Dear Group, I have this sp: create procedure UpdateUser ( @id char(10), @name char(10), @pwd char(10) ) as update User set name = @name , pwd = @pwd where id=@id return I have a row insert into User values('test','peter','pwd') Question : How can I NOT update field pwd if the @pwd is n...more >>

Help with Multiple Join
Posted by Simon Harris at 11/8/2004 8:27:21 PM
Hi All, I'm having problems with a query, I have three tables: - IMPORTCordlessPhoneProducts: ParentCategory, SKU (and other product related columns not related to this query) - Categories: idCategory, CategoryDescription - Products: idProduct, SKU (and other product related columns not re...more >>

Record Update Locking
Posted by Borikoy at 11/8/2004 7:58:03 PM
How to lock a record so that only one user can update at a time.I try to test my database using two user accessing and editing same data at the same time.The last user who click the save button will be the one who can get the updated data. How can I make the update record available into one us...more >>

Delete statement in stored procedure
Posted by John at 11/8/2004 7:14:29 PM
Hi all, Please help me to write a stored procedure that can delete data from 3 different tables. I can do it with one delete statement per stored procedure but there must be a way of doing it at once. Thanks. ...more >>

query with table join faster?
Posted by Andrew at 11/8/2004 6:44:03 PM
Hello, I got a strange issue. The query with table join is faster than without table join. Here are the two queries. From common sense, it shouldn't be??? --query 1: select * from cashcard_txn_log where cc_tid ='80099314' and CONVERT(char(8), cc_settlementdate, 3) = '05/07/04' order...more >>

Query Analyzer Stumped
Posted by NC Beach Bum at 11/8/2004 6:18:02 PM
When running a Query Analyzer query I want to save the data to a text file. Whast is the text to do this? I also need to run this in a schedule. I can't get the job to run properly in DTS but I can get it to run in Query Analyzer - so how do I get the job to run nightly in Query Analyzer?...more >>

What is this N stand for?
Posted by SMV at 11/8/2004 6:13:01 PM
Hi All, I am new to SQL Server Stored procedures and could any one explains what is mean by N in this SQL server? What is it represents? set @col = N'au_fname' set @sql = N'SELECT @min = convert(varchar(20), MIN(' + @col + N')) Thanks....more >>



last day of month
Posted by Jen at 11/8/2004 5:23:03 PM
Hi, I need to write a sp to decide if the parameter passed in is 15th of the month or last day of the month, how can I get the last day of the month? Thanks...more >>

Problems with creating Stored Procedure from ADO
Posted by Dmitry at 11/8/2004 5:02:47 PM
Hi I try to create SP from ADO. Open connection and excecute queries. con.Execute "SET QUOTED_IDENTIFIER OFF " con.Execute "SET ansinull ON" con.Execute TextProc TextProc content " create procedure BISSGetDllName ( @ID_MESS numeric(10) = 0, @SwiftOperType int = 0, @IsAc...more >>

Aliasing linked server
Posted by CB at 11/8/2004 4:53:31 PM
Hi I am trying to write some queries that run on SQL Server 1, but reference tables on SQL Server 2 using a linked server. I have no problem doing this. My problem is that I will be deploying these databases to more than one client, and the Servername of SQL Server 2 will be different at each ...more >>

How can I have a user select a local MS SQL database using vb.net? TIA SAL
Posted by sal NO[at]SPAM spp.net at 11/8/2004 4:51:28 PM
Greets I have sucessfully created a sql database and vb.net program locally connecting to my local server. (I used visual studio 2003) I would like to send the database along with the compiled vb.net code to the user. The problem is the users machine and msde server are going to have differe...more >>

glitch with variant data type parameters
Posted by Bojidar Alexandrov at 11/8/2004 4:43:20 PM
My version of SQL Server: Microsoft SQL Server 2000 - 8.00.878 (Intel X86) Short DDL explaining for what I talk: ------------------ drop table t1 GO create table t1(id int) GO insert into t1(id) values(1) GO print 'no cast' SELECT * from t1 Where id=1 print 'implicit cast. works' SEL...more >>

Problems getting a stored procedure to work
Posted by Ed Handley at 11/8/2004 4:23:32 PM
Hi, We're trying to select a variable number of records from a table and pass them as HTML to send them via CDONTS. This is the stored procedure we're trying to use to get this, but it only brings back the last record in HTML (in query analyser it brings back the lot). Can anyone help plea...more >>

How to determine the current user's rights
Posted by Bob Trabucco at 11/8/2004 2:55:10 PM
Hi all, My .NET application needs to know if the currently logged on user has rights enough to create global tables, indexes, stored procedures, views, etc in the current database. The program runs through routines that create all these tables and we have to make sure there is sufficient...more >>

INSERT Problem
Posted by Pross at 11/8/2004 2:52:31 PM
I have written an application to convert a FoxPro database to SQL Server 2000. Without going into detail, there is a lot of cleaning and reformatting that has to be done to this data as I move it across which is why this is being done with an application as opposed to using DTS. Below is on...more >>

Concurrent Request Problem!!
Posted by Vai2000 at 11/8/2004 2:50:53 PM
Hi All, I have an application which has concurrent users. This application calls an SP whose job is get back an output value after some computation --SET TRANSACTION ISOLATION LEVEL SERIALIZABLE -- Didn't worked out well Computation Algo: DECLARE @MYID INT,@NEWID INT SELECT @MYID=MAX(ID) FROM...more >>

OLAP Timeout
Posted by Patrick at 11/8/2004 2:50:10 PM
Hi Freinds, I am creating some cubes which are based on heavy views of db I am getting timeout when building the cube. SQL server timeout is 0 (unlimited) Where else I can increase timeout for OLAP? Thanks in advance, Pat ...more >>

Cursors (again)
Posted by Billy at 11/8/2004 1:57:06 PM
I have the following T_SQL working (kind of). What it's doing now is completely ignoring the insert statement, which means the @@cursor_rows never = 0. I have 5 records in TableA A - ALPHA B - BRAVO C - ZETA D - DELTA G - GOLF and 6 records in TableB A - ALPHA B - BRAVO C - CHARLIE...more >>

Return two max values
Posted by Maggie at 11/8/2004 1:55:12 PM
I have empolyee payment table by employee number, payment_date, period_end_date and payment. Some time for some employees by each payment_date, there are two or three or four period_end_date. I need write a query to only return last two (period_end_date)s for each payment_date for all emplo...more >>

Comparison
Posted by John at 11/8/2004 1:49:05 PM
According to SQL Server Books Online, "Trailing blanks are ignored in comparisons in non-Unicode data", that is, the expression "abc" is considered equivalent to "abc ". Because this statement is not explicit about how Unicode data is handled, this led me to perform a test with expressions...more >>

permission on column level
Posted by anna at 11/8/2004 1:39:08 PM
I created an access project .adp front-end for my users to maintain my sql 2k database. I have set up two usergroups/Roles - group1 and group2. I have a "Product" table and a view "V_Product". The Access front end is tied to "V_Product". I would like to have group1 to be able to update/inse...more >>

inner join with parameters on 2 DataTables
Posted by Joe1714 at 11/8/2004 1:24:03 PM
Hi - I am trying to create an inner join on 2 DataTables in a DataSet. I am also using a parameter to use in the Where clause. Since a DataSet is an in memory, I was hoping this was possible but so far have not had any luck. Is it possible? Thanks....more >>

Can not drop a trigger
Posted by divyeshkhatri NO[at]SPAM hotmail.com at 11/8/2004 1:18:31 PM
Hello, I am trying to drop a trigger using Query Analyzer or Enterprise Manager but it takes forever (ran for 1hr) but still didn't drop the trigger. I had to cancel the query. It is simple update trigger. Any ideas or any help will be greatly appreciated. Divyesh...more >>

exporting stored procedure
Posted by Ing. Branislav Gerzo at 11/8/2004 1:12:08 PM
Hi gurus, is there any command, which exports stored procedure from MSSQL ? I need export stored procedure into txt file, so some program could looks like: exportsp [needed db, connect definitions] name_of_sp > myfile.txt is something like this possible, or I have to clicking ? -- In...more >>

Ad hoc queries
Posted by Robert Taylor at 11/8/2004 1:10:30 PM
Is there a way, short of a global change to the registry, to allow a specific database login account to have the power to run ad hoc queries? I have several scripts that query Excel and Fixed Length delimited files for import purposes. I have to be logged in as a system admin in order to run ...more >>

user variables in WHERE clause
Posted by Jamie Owens at 11/8/2004 1:08:27 PM
Hello, I have a small program in which I'm using a variable in the WHERE clause. Are you allowed to do this, or is there a trick to it? This code retrieves no records: Declare @mod_field varchar(32) set @mod_field = 'myField' SELECT id FR...more >>

Table Size Formula
Posted by danjam at 11/8/2004 1:04:08 PM
Hi, Where can I find the formula that tells me the exact page footprint of a table's columns? Books Online has a bunch of stuff on how to estimate the amount of disk space a table will take based on general factors about its column structure. However, I have not found the exact formula th...more >>

indexing on temporary table
Posted by dance2die at 11/8/2004 12:38:05 PM
I have a function which returns a table. ========== CREATE FUNCTION fnExample() RETURNS @ExampleTable TABLE ( f1 char(8) not null , f2 datetime not null , f3 varchar(100) PRIMARY KEY(f1, f2) ) AS ''' Fill up the temporary table... RETURN GO ========== I have set fields "f1", "f...more >>

Retrieving a column formula
Posted by rgblkcal NO[at]SPAM iwon.com at 11/8/2004 12:34:47 PM
I am designing a report to use as a data dictionary for my database. I am able to retrieve all of the information I need on the database tables and columns except the column formula. How do I query SQL server to retreive formulas enterd for columns?...more >>

Conditional Where Clause?
Posted by John Rugo at 11/8/2004 12:30:06 PM
Hi All, Is it possible to create a conditional Where Clause similar to the idea below? Create Procedure dbo.usf_Get_Stuff @vtype Bit As Select field1, field2 FROM Table1 Where field1 = '123' Case When @vtype = 1 Then 'And (DateCompleted Is Null)' Go Any help would be great!, Joh...more >>

IF or CASE inside query
Posted by Just D. at 11/8/2004 12:23:18 PM
All, Is it possible to use IF or CASE / ELSE inside the query? The problem is following. The application saves the log on the database so that the SessionStart and SessionFinish are DateTime. If the session started then the SessionStart=GETDATE(), but the column SessionFinish should be NULL un...more >>

datetime convert question
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 11/8/2004 12:21:14 PM
I am trying to select values from a table where the date has passed. the problem is the date is stored as an integer. query ddl and comments below. drop table #Temp create table #Temp (pk int identity, dateasint int) insert into #Temp (dateasint) values (20040501) insert into #T...more >>

IF or CASE inside query
Posted by Just D. at 11/8/2004 12:19:34 PM
All, Is it possible to use IF or CASE / ELSE inside the query? The problem is following. The application saves the log on the database so that the SessionStart and SessionFinish are DateTime. If the session started then the SessionStart=GETDATE(), but the column SessionFinish should be NULL...more >>

Cursors
Posted by Billy at 11/8/2004 12:19:06 PM
Does anyone know why this code doesn't work? When I check the syntax, it shows errors on lines 23 and 25 (the END statements) Thx for the help ---------------------------------------------------------------------------- declare @code as varchar(10), @description as varchar(50) declare...more >>

Trouble using Max() with IN
Posted by DC Gringo at 11/8/2004 12:11:03 PM
I'm having trouble getting query results that I want. Suppose the table looks like this: mewr_id, rpt_published, country_id --------------------------------- id1, 1/2/2004, ab id2, 1/5/2004, ab id3, 1/8/2004, bc id4, 1/9/2004, bc the joined table is: cy_id, abbr ---------------- ab,...more >>

HELP: [SQL-DMO]CreateFile error on 'MyBox.MyDatabase.PRC'
Posted by silversalmon25 NO[at]SPAM yahoo.com at 11/8/2004 12:05:52 PM
Suddenly when I try to generate scripts in Enterprise Manager an error occurs that reads as follows: [SQL-DMO]CreateFile error on 'MyBox.MyDatabase.PRC' The script file is still generated (preview does not show). The script file however does not contain any scripts for my stored procedures. A...more >>

Join Table with additional restriction
Posted by MEG at 11/8/2004 11:35:02 AM
I have two tables, I am linking The first is a transaction table with medical procedures (primary). The second contains cost data for the medical procedures (secondary). I have had selection criteria on the transaction table only. Now I am modifying the medical procedures table to have a y...more >>

using Function IN()
Posted by Kjell Brandes at 11/8/2004 11:20:42 AM
Please help me with this one. I wrote a function that returns a string that contains a lot of commaseparated values, this is returned from the function as varchar(1000). When using this function in querys like this SELECT....... FROM..... WHERE 555 IN(dbo.functionName(ARG)) where dbo.fu...more >>

First and last day of the month
Posted by jaylou at 11/8/2004 11:18:04 AM
Hi All, I have a stored Proc that I run that pulls information from last month. running this manually is fine by changing the dates and passing them thru. Since I Always want the entire month of the previous month I am running this, is there a way to get the first day of last month and the la...more >>

Insert select statement and null value
Posted by Todd Hazer at 11/8/2004 11:12:25 AM
I'm trying to use "INSERT INTO Columns... SELECT Columns..." and its not inserting the rows where one of the columns in the select statement is null. Does anyone know why this might be happening? I have been trying to use a case statement to change the null value to a string but this also do...more >>

PARAMETERS FOR STORED PROCEDURES (APPEND, UPDATE)
Posted by Zlatko at 11/8/2004 11:07:31 AM
A question concerning Access Project with SQL Server: I use a stored procedure that is calling several other stored procedure which update or append values in several tables. All of them are stored procedures with input parameters by which they filter rows to be updated or inserted into other ...more >>

return Time portion of datetime field?
Posted by Ron at 11/8/2004 10:55:28 AM
Greetings, how to get just the time value from a dateTime field? For example: declare @d1 datetime set @d1 = '15:17:21' select @d1 gives --->>>1900-01-01 15:17:21.000 select convert(char(20), @d1, 1) gives --->>>01/01/00 How can I get just 15:17:21:000? or bette...more >>

Error 3621 when casting a bit during update
Posted by L Gonzales at 11/8/2004 10:51:40 AM
All, How come I am getting this error Executed as user: CLC_DOMAIN\SQLAdmin. String or binary data would be truncated. [SQLSTATE 22001] (Error 8152) The statement has been terminated. [SQLSTATE 01000] (Error 3621). The step failed. when I run this t-sql as a job but runs ok if I run...more >>

Can I use SQL for WMI rather than VBScript ??
Posted by BFord NO[at]SPAM eftpos.co.nz at 11/8/2004 10:51:31 AM
I would like to use WMI to get information on what Services are currently running on a range of computers, but do not want to use VBScript. Can I use SQL instead to do something like the following ?? Set oWin32_Services = _ GetObject("winmgmts:{impersonationLevel=impersonate}!//" & _ ...more >>

Case statment where clause problem
Posted by Agnes at 11/8/2004 10:15:24 AM
my SP like that, and I got the error near 'like' , Could someone be kind to help me take a look ? thanks in advance CREATE PROCEDURE dbo.companyinfo_tax_list @tcotype varchar(2), @searchcode varchar(11), @searchname varchar(40) as select cinfo.CoCode,cinfo.CoName,cinfo.CoAdd1,cinfo.CoAdd2...more >>

updatetext() help request
Posted by Jim Bancroft at 11/8/2004 10:04:04 AM
Hi everyone, I have an ntext field that needs a section replaced. I've been reading about the "updatetext" function (the replace function doesn't work on ntext fields, I've learned) and experimenting with it...unsuccessfully, I'm afraid to say. All the updatetext examples I've seen...more >>

Exposing a Variable
Posted by kbrown NO[at]SPAM interflow.net at 11/8/2004 9:53:08 AM
I'm curious if anyone has done this. It seems so simple. Anyone have any suggestions? I am dynamically creating variables: @input1 and @input2. I want to print their values, but can't figure out how to expose them to be evaluated instead of interpreted as a string. If anyone has used tcl ...more >>

Query reduction for gurus
Posted by lembe NO[at]SPAM swing.be at 11/8/2004 9:34:55 AM
Hi, I faced to the following problem. I would like to express the next query such that condition1 appears only 1 time in the query SELECT * FROM mytable WHERE mytable.time = (SELECT MIN(time) FROM mytable WHERE condition1) AND condition1 condition1 may be complex. Actually, what...more >>

sp_xml_preparedocument
Posted by Damon Allison at 11/8/2004 8:33:53 AM
Hello everyone: Under heavy load, our calls to sp_xml_preparedocument are failing for what appears to be a lack of available memory. I'm assuming one of our SP's has a leak and is not removing the xml document in proper fashion, perhaps when an error occurs. I'd love to take the advice of ...more >>

With Encryption option for SP
Posted by Cpatel at 11/8/2004 7:08:20 AM
Hi, I'm wondering about what will be the impact of encrypting all sps in application. would it slower down performance or no impact at all? thanks in advance. CNP....more >>

sqldmo - simple list of arguments and data types
Posted by ramadan at 11/8/2004 5:43:04 AM
Hi, I loaded in a DB the list of (collections/ objects) and their (methods and properties) as described in msdn. I need to add the arguments and data types for the methods and properties. These are listed in VB Object Browser in the Microsoft Development Environment). Is there a way to easi...more >>

SQL Code for Archiving Server Event Logs
Posted by Phill Heath at 11/8/2004 5:39:04 AM
Hi I would like to create a stored proc which will get a specified servers event logs export them to text files and clear the log. I already have a cursor which will read the server details from a table but don't know how to export the logs or even if thats possible. Thanks Phill...more >>

Update to Date
Posted by Sam at 11/8/2004 4:51:01 AM
Hi all, I have a column, which I’ve set as Datetime and I want to just enter the year portion. For instance Column A is written 08/11/2004 (UK) and I want to enter this into column B (the one I’ve set as date) and just return 2004. So far I’ve not achieved this as a date data type. I...more >>

Deleting Backups
Posted by Mark Harris at 11/8/2004 3:45:02 AM
Hi All Apologies for this posting coming in THIS group, but there didn't appear to be any group that was appropriate!? Anyway, my question is "How do i delete backups from a backup set?". I have a single file to which all the backups for the database i work with go to ... them being a Wee...more >>

multiple ORDER BY clauses?
Posted by Dan Nash at 11/8/2004 3:34:02 AM
Hi guys I have an interesting problem with an SQL statement, hopefully you can help! Basically, I've got a Contacts database, with names, phone numbers etc. Just one table. What I want to do is list the contacts in a certain order. I want to be able to show contacts alphabetically, based...more >>

Table Variables + ADO ==> SP performance
Posted by Arun at 11/8/2004 3:28:56 AM
I have a stored procedure in SQL server 2000 that uses table variables. When I execute this from query analyser, it takes roughly 2 minutes. I tried calling this SP from a VB stub using ADO and it seems to execute at the same 2 min. But when this is called from Web interface (ASP) using AD...more >>

Unique PK across two tables?
Posted by Stephen Hewlett at 11/8/2004 12:37:39 AM
Hi, Is it possible to have two tables where the primary keys are unique across both of them, so that if an automatically generated ID corrisponds to a row in one table that same ID will not be used for a row in the other table, and vice versa? Describing the background to this in terms o...more >>


DevelopmentNow Blog