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 > june 2005 > threads for tuesday june 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

Transactions...
Posted by Mike Labosh at 6/28/2005 9:49:49 PM
Let's say I have a big fat SP that goes something like this: BEGIN TRANSACTION -- Outer transaction -- Do some stuff. BEGIN TRANSACTION -- Inner Transaction 'A': Do other Stuff COMMIT TRANSACTION BEGIN TRANSACTION -- Inner Transaction 'B': Do More ...more >>

Reliability of saving C# doubles in SQL Server... infinities and NaNs?
Posted by TargetedConvergence NO[at]SPAM newsgroup.nospam at 6/28/2005 9:40:09 PM
I am writing an engineering solution on top of Office and SQL Server. Dealing with IEEE double-precision floating point is always a pain, even with software tools that support it. It appears SQL Server does not even claim to support it. Exhaustive searching has not turned up some basic answers...more >>

Fetch With Do..While Problems ?
Posted by Oded Dror at 6/28/2005 9:08:37 PM
Hi there, Please take a look at the code here. USE Northwind GO DECLARE emp_cursor CURSOR FOR SELECT * FROM Employees SET ROWCOUNT 2 -----------------> I try to retrive two records at the time but with no sucsess. GO OPEN emp_cursor GO FETCH NEXT FROM emp_cursor WHILE (@@FETCH_ST...more >>

TSQL to get space used
Posted by Hassan at 6/28/2005 8:36:46 PM
I would like to get space used for the data and index for each database with a query.. Such as DBname Data Index DB1 1000MB 2000MB DB2 500MB 100MB I looked at sp_spaceused , but cant seem to figure out how to write the SQL to get me what i w...more >>

Stupid Enterprise Manager!
Posted by Mike Labosh at 6/28/2005 4:40:17 PM
Dig this: IF EXISTS ( SELECT * FROM SysObjects WHERE Type = 'U' AND Name = 'CMRPhone' ) DROP TABLE dbo.CMRPhone GO CREATE TABLE dbo.CMRPhone ( CMRKey INT NOT NULL IDENTITY(1, 1), PhoneNumber NVARCHAR(40), PhoneNumberKey INT ) GO ALTER TABLE dbo.CMRPhone ADD CONSTRAI...more >>

Strange Trigger
Posted by Ed at 6/28/2005 4:05:02 PM
Hi, I have a very strange situation. I have a stored procedure to insert data into a table called "Job", in the Job table, I have an Insert Trigger to insert another table called "Audit". The strange thing is the whole process always stops at the end of the trigger and doesn't return to...more >>

SQL Paging not working???
Posted by Eddie at 6/28/2005 3:03:39 PM
Only 3 records out of 40 are being returned? Does anyone know why? Thanks! Ed 01: SET NOCOUNT ON 02: 03: DECLARE @pagenum INT 04: DECLARE @perpage INT 05: SET @pagenum = 1 06: SET @perpage = 20 07: 08: DECLARE @ubound INT 09: DECLARE @lbound INT 10: DECLARE @pages INT 11: DECLARE...more >>

Help - Version Error Message
Posted by Sandy at 6/28/2005 1:27:01 PM
Hello - I am getting the following error when debugging in vb .net. Naturally, I am getting no connection to the database - ServerVersion <error: an exception of type: {System.InvalidOperationException} occurred> String I originally built this database in a trial version of Sql Server ...more >>



Linked server using IBM OLE DB Provider for DB2 provider
Posted by Venkat at 6/28/2005 12:57:31 PM
Hi folks, I am creating a linked server to connect to IBM DB2 UDB Server. I succeeded when I created a DSN using "IBM DB2 ODBC DRIVER" and use the DSN in Linked Server after selecting "Microsoft OLE DB Provider for ODBC Drivers" as the Provider Name. But if I select "IBM OLE DB Provider for...more >>

Monitoring and scheduling
Posted by NitnP at 6/28/2005 12:40:02 PM
Hi , I have twoTables. 1>tblSchedule and 2>tblActive. tblSchedule has the predefined times events. tblSchedule stores thousand of events. Typical record of tblSchedule is like: EventID EventDateTime Description --------------------------------------- 1 06/24/05 9:15 B'Day 2 ...more >>

Initialize multiple local variables from one SELECT statement
Posted by Concatto at 6/28/2005 12:22:06 PM
Hello, Is there a way to initialized multiple local variables using a single select statement? For example: declare @var1 char declare @var2 char -- I know that this is valid: set @var1 = (select name from CUSTOMER where customerNumber = 1200) -- however, this is invalid syntax:...more >>

User that can run jobs
Posted by Evgeny Kleiman at 6/28/2005 12:11:49 PM
Hello I need to define a user of SQL Server 2000 that could run jobs. At present time I succeeded only in the case that the user has rights of system administrator (in Enterprise Manager in Logins I click right on the user and in Properties/Server Roles I check box System administrator). B...more >>

Bulk Insert a file from network
Posted by Mike at 6/28/2005 12:08:02 PM
Hi, I would like to do a bulk insert from a file in my webserver but I get an error when I try something like this: (I will be using this from an ASP.Net page) Bulk Insert temp_supress_emails from //servername/folder/filename 1) How can i solve this? 2) Can I give a condition so that only th...more >>

Problem with Unicode chars and "like" in a query
Posted by Kavitha at 6/28/2005 11:39:01 AM
I have a Users table which contains a nvarchar column LastName. The first query below returns me all the records with LastName containing "opez" or "ópez" in them. But the second query returns only records with "lopez" in the lastname and not records that contain "lópez". Can anyone please tel...more >>

UDF Better?
Posted by tshad at 6/28/2005 11:24:17 AM
I have a function I am creating as a UDF and was curious as to whether it is better to use the UDF or to just do the conversion in the select statement. What I am doing is formatting a money field in various forms depending whether the amount is >= 1000. If the amount >= 1000, it rounds th...more >>

True | False
Posted by Gérard Leclercq at 6/28/2005 11:02:55 AM
Hi, I always used ACCESS, after update my Yes/No fields are converted to BIT and since than i can't use TRUE or FALSE in my Sql ? With =0 or =1 it works fine. Is this normal in MS SQL ? or is there another way to use True and False. Example "Select * From table where myField=True" (not ...more >>

How can I obtain all the SQL SERVER's names in a 2000 domain?
Posted by Enric at 6/28/2005 10:59:05 AM
Dear all, Regarding the aforementioned question I don't know if launching one script in VB and retrieving all the names is compulsory. Is there any way or method for obtain that info via job/sp? I hope have been sufficiently explicit. Thanks in advance and regards, ...more >>

formatting dates in t-SQL
Posted by Chris Strug at 6/28/2005 10:57:41 AM
Hi, First of all, I realise that this is a big no-no and that date formating should be done on a client. However my application at the moment requires that a Shift and WorkDay is obtained from the transaction dates. As the shifts are quite obscure I have created a table in which I take shif...more >>

Retrieve Trigger body text in SQL
Posted by Henrik Skak Pedersen at 6/28/2005 10:51:14 AM
Hi, Is it possible to retrieve the body text of a trigger through SQL? Regards Henrik Skak Pedersen ...more >>

Free "space allocated" is 0
Posted by fniles at 6/28/2005 10:49:42 AM
We set our SQL Server database to "Automatically grow file" and "Unrestricted file growth". Why in the TaskPad view, the free "space allocated" is 0 ? Thank you. ...more >>

linked server and query
Posted by Kalyan at 6/28/2005 10:47:16 AM
Hi I am trying to run following query insert into work_viewtable exec ATH.At.dbo.ContactInfo It gives following error Server: Msg 7399, Level 16, State 1, Line 1 OLE DB provider 'SQLOLEDB' reported an error. [OLE/DB provider returned message: Cannot start transaction while in fir...more >>

Calling/Creating UDF
Posted by tshad at 6/28/2005 10:37:08 AM
I have a UDF that I am starting to build: **************************************** Create Function Money2String ( @Amount Money ) returns varChar(80) As begin Declare @NewAmount varchar(80) select @NewAmount = convert(varChar(80),@Amount,1) return @NewAmount end *********************...more >>

Assignment of @owner_login_name for scripted jobs
Posted by LP at 6/28/2005 10:03:03 AM
I'm scripting a SQL Server job so that it runs on different server instances. I generate this job script from our development machine and store it in Source Safe then pass the script to an osql script that runs it. When I create the script it has @owner_login_name = N'servername\username',...more >>

does sum function have a limit?
Posted by Fab at 6/28/2005 9:51:16 AM
Hello I have a quick question about sum. im working on summing very large numbers i.e.=20 14,289,648,007=20 But it not summing up right for some reason. does the sum function have a limit on how big of a number it can sum?...more >>

NVARCHAR not handling unicode string
Posted by bryan at 6/28/2005 9:44:33 AM
I have a situation with a c# application attempting to store and look up some unicode value in an NVARCHAR. Apparently the system is having issues dealing with some Unicode values on inserts or lookups. My tables: /* table containing terms */ CREATE TABLE [dbo].[TermTable] ( [TermID] [i...more >>

Distributed SQL Servers advice
Posted by Yaniv at 6/28/2005 9:06:02 AM
Hi, I'd like your advice on the following matter: I have 2 (or more) sql server on my network all familiar with one another. I'd like to execute a procedure on server A which executes another procedure on server A and B at the same time. is it possible using a stored procedure, or i nee...more >>

Transation deadlock on cluster environment
Posted by Kevin Yu at 6/28/2005 8:38:16 AM
hi all got a situation here, there are 3 app server that are running a same application to delete records in the sql server periodically. what happen is that they all start up at the same time to delete records on the same table.(this could be fixed by varying the start up time on each app s...more >>

SQL Ranges
Posted by Opyuse at 6/28/2005 7:25:05 AM
I was recently running over the a Query feature I set up for a datbase application I produced and discovered a strange error. The Error is with a Year fields. The user, can enter a range of type year to query ie. 1970 - 1983 and so on... the first 14 records stored are of the year 1969 i...more >>

Using Table Variable to simulate Array
Posted by Concatto at 6/28/2005 6:31:05 AM
Hello, I want to use a table variable to simulate an array in a stored procedure. Has anyone done this? Or can someone help me to write a short SQL script to process a table variable as an array? For example below, I have a table variable @Tbl contains 2 columns RowIndex and VoteCount. ...more >>

Dynamic Trigger creation ?!
Posted by PhiberOptic at 6/28/2005 6:03:06 AM
Hi, on my MS SQL Server 2000 I created a temporary Table in which i insert Data trough an Office Web Component. This temporary table is created from a querry over a few other tables. Now my idea is to create a trigger on this temp table, so that every time a value is updated this change is...more >>

Assigning to a variable the result of calling a SP
Posted by João Costa at 6/28/2005 4:02:02 AM
Hello all I need to call a stored procedure wich returns a select statement with 3 values. Is there a way to assign one of the 3 returned values to a variable (or all). Only one value returned matters. THANKS IN ADVANCE...more >>

Warning: Null value is eliminated
Posted by trans53 at 6/28/2005 1:37:08 AM
HI all, question for you please: i created temp table and populated with data. all the columns in temp table has data and there are no NULL’s in any column. Here when i try to join on the permanent table i got this error message: Warning: Null value is eliminated by an aggregate or ...more >>

Storing details of query plan for a running Stored Proc
Posted by KCSL at 6/28/2005 1:35:05 AM
We call Stored Procs from Visual Basic/ADO. Does anybody know of a way I can generate the execution plan for the proc and retrieve it back over the ADO connection so I can store it. The aim is to to be able to tag certain stored procs to store their query plans so we can analyse them later...more >>

Problem with PrimaryKey change in Audit table
Posted by Henrik Skak Pedersen at 6/28/2005 12:00:00 AM
Hello, I have created an audit trigger, which I am using on all my tables. But I have a problem if my primary key changes. Then the trigger create an update audit transaction with the new primary key, which I guess is ok, but I somehow also have to create a primary key change audit transact...more >>

problems with datetime
Posted by TomislaW at 6/28/2005 12:00:00 AM
I have table that holds dates when some accommodation is occupied I have problem to check if that accommodation is occupied between '2005-07-01' and '2005-07-08' How to do that select? --table CREATE TABLE [Periods] ( [id] [int] IDENTITY (1, 1) NOT NULL , [fromdate] [smalld...more >>

Stored Procedure too long ?
Posted by Support at 6/28/2005 12:00:00 AM
Hello: I have a stored procedure that is called by a job that unzips a file and then sends the name of the file to another stored procedure for processing.... However, recently (we upgraded our server but that may have nothing to do with it), the second stored procedure just stops midway. I...more >>

Serious problem with revoked select rights on columns
Posted by Jan Becker at 6/28/2005 12:00:00 AM
Hi NG, when select rights in table XYZ have been revoked for column A then the query select * from XYZ raises the error "#230, Severity 14 The select right for the A-column of the XYZ-object, test database, owner 'dbo' has been denied." (just a rough translation, I only have the Ge...more >>

insert from CSV file
Posted by Joel Gacosta at 6/28/2005 12:00:00 AM
Hi All, I have a sample CSV text file below that I want to insert in a table with the ff columns. c_event char(10), c_date char(15), c_time char(15), c_id char(20), c_info char(20) ====sample CSV===== start,1/16/2005,16:15:20,eac99e1d,3233155101:? start,1/16/2005,16:15:21,eac99e1d,800...more >>

Datetime to a string in SELECT clause
Posted by Man Utd at 6/28/2005 12:00:00 AM
How do I display the datetime in a format: dd/mm/yyyy ? I tried SELECT Name, CAST(CONVERT(datetime, DateOfBirth, 103) as varchar(12)) FROM Employee It displays the format as like: Jul 12 2000 Jan 1 1988 ...more >>

Adding up calltimes
Posted by ninel gorbunov via SQLMonster.com at 6/28/2005 12:00:00 AM
I have the following table: Employee Login Logout 1 08:00:00 13:30:00 2 09:25:00 16:25:00 3 13:00:00 19:00:00 How can I add these up to get a total calltime that looks like this: Emp1: 05:30:00 Emp2: 07:00:00 Emp3: 06:00:00 Thanks, Ninel ...more >>

COALSEC
Posted by Man Utd at 6/28/2005 12:00:00 AM
Why the call of this function COALSEC always has an empty string inside ? eg COALSEC(myName, '') ...more >>

How to know list of relationship on a database?
Posted by Bpk. Adi Wira Kusuma at 6/28/2005 12:00:00 AM
How to know list of relationship on a database? Because I wanna make a document of relationship. ...more >>


DevelopmentNow Blog