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 > november 2004 > threads for thursday november 11

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

transform data
Posted by Ezekiƫl at 11/11/2004 11:00:53 PM
Hello, I've a normalized table where i store items as records like: id | type | value 1 | begindate | 01-01-2004 2 | enddate | 31-01-2004 etc... How can i transform it so that the data looks like this: begindate | enddate 01-01-2004 | 31-01-2004 Can this be done within sql ...more >>

Start a DTS when file arrives..?
Posted by Kent Johnson at 11/11/2004 10:20:03 PM
Hi all, How can I get a DTS package to start when a files arrives to a certain FTP-area? Is this possible without using the scheduler? /Kent J. ...more >>

To use a function or view?
Posted by Tumurbaatar S. at 11/11/2004 9:13:50 PM
There're 2 related, master-detail tables: Service and ServiceBill. To get some information about "service", I need to SELECT all columns from the master table and some aggregate value from the detail one: SELECT s.*, SUM(b.Value) FROM Service s INNER JOIN ServiceBill b ON s.ServiceID ...more >>

UNION ALL followed by a JOIN
Posted by Stephen Howe at 11/11/2004 8:41:27 PM
Can I do a UNION ALL between 2 tables followed by a JOIN to a 3rd table from the result of the union? I am having problems getting the syntax right Thanks Stephen ...more >>

Size limit for inserting rows
Posted by Leila at 11/11/2004 8:04:41 PM
Hi, When I create this table: create table #tmp( c1 varchar(8000), c2 varchar(8000)) I receive this warning: Warning: The table '#tmp' has been created but its maximum row size (16025) exceeds the maximum number of bytes per row (8060). INSERT or UPDATE of a row in this table will fail if ...more >>

Drop table/Create table fails not repeatable
Posted by dreadnought8 NO[at]SPAM hotmail.com at 11/11/2004 8:00:08 PM
I run this code twice. The first time it works, the 2nd time it crashes on line 6, says There is already an object named 'MyJunk' in the database. IF DB_ID('MyJUNK') IS NOT NULL BEGIN DROP TABLE MyJUNK END CREATE TABLE MyJUNK(ClientId nVarChar (3), ProdGroupId nVarChar (40), OwnerId nV...more >>

Calculating required date
Posted by Leila at 11/11/2004 7:58:54 PM
Hi, This command generates error: select dateadd(day,-226898,getdate()) Server: Msg 517, Level 16, State 1, Line 1 Adding a value to a 'datetime' column caused overflow. Is there any solution to calculate my required date? Thanks in advance. Leila ...more >>

SQL Trigger and Microsoft Access
Posted by annerowe NO[at]SPAM consultant.com at 11/11/2004 6:57:48 PM
I have an SQL Trigger which update data in a table. The table is linked in Access When updating data in Access, if the trigger is fired, I got the following message: "This record has been changed by another user since you started editing it." How can I update the data anyway, with the result o...more >>



Data Access
Posted by Lina Manjarres at 11/11/2004 6:23:03 PM
I am trying to make a select that access 2 databases at the same time. Those databases are located at a different servers. My problem is that I get an error message saying that the remote server is not configure for DATA ACCESS. So, I try to make a serverlink to see if that solve my problem. Bu...more >>

parsing TEXT datatype
Posted by Andre at 11/11/2004 6:01:04 PM
I have a parsing function that accepts a varchar(8000) string. Unfortunately, the incoming string is now longer than 8k, so my only option appears to be to convert it to "text" datatype. However, one of the things I do inside my parsing function doesn't accept a text datatype. Can anyone t...more >>

A question about INSERT and RANK
Posted by Uncle Ben at 11/11/2004 5:47:04 PM
I want to insert data from one table into another in the following manner Insert Into User_Group ( UserID, Fname, Lname, Rank ) select UserID, Fname, Lname, ***** from Users Where OfficeID in (2, 3, 10) order by CreateDate I want the RANK column in User_Group to have sequential num...more >>

Recursion problem
Posted by Tristan Marsh at 11/11/2004 4:59:02 PM
I'm having a problem with recursion. I am creating data items that are choices (if <data><operator><number/string/null> then list of <data>) and the data items inside the choice can themselves be choices. It is not only data items table I need to get back. Aswell I need the relations for t...more >>

Create view with table from another database
Posted by Geoff at 11/11/2004 4:52:47 PM
Is there a way to create a view in one database that uses a table in another database on the same SQL2000 server? ...more >>

Dynamic sql
Posted by Tudor Sofron at 11/11/2004 4:48:41 PM
Hi, could somebody help me with this simple problem: declare @databasename varchar (30) set @databasename = 'xxx' use @databasename Why isn't it working or what is the right syntax? Thanks, Tudor ...more >>

Reuse Calculated fields in Select Queries
Posted by Raterus at 11/11/2004 4:42:25 PM
Hi, Say I have this example select query. Select field1+field2 as Calc1, field3+field4 as Calc2, Calc1 + Calc2 as = Calc3 From myTable This produces an error, but is there a way I can do this? I'd really = hate to have to repeat my calculation each time I'd like to reuse it. Thanks f...more >>

Can I store an excel document in sql
Posted by Mark at 11/11/2004 4:22:25 PM
Can I store an excel document in a table using Sql Server 2000? If so can anyone provide samples or websites to read more about it? Thank you in advance ...more >>

how to copy column names from query analyzer
Posted by meg at 11/11/2004 3:43:43 PM
Is there a way when copying query results to capture the column names at the same time? Thanks! :) ...more >>

SQL Help Please
Posted by Phill at 11/11/2004 3:40:07 PM
I am trying to update a column with a count of sales transaction minus the return transaction. Sales transactions are TransType=1 and return transactions are TransType=2. Can I do this in one query? This is what I have: UPDATE Reporting_ByProgramMembership SET MembersWTransactLW ...more >>

Debugging 100% processor usage
Posted by Mark Shaw at 11/11/2004 2:49:14 PM
Hi all, I've got a fairly old Pentium2 machine running NT4 Server, 256Mb ram, SQL Server 2000. Our application runs on the same machine as the sql server, and it reads data from the network socket, writes to disk and performs a COM call to SQL Server to bulk insert the file. Every so often (appr...more >>

dynamic sql question
Posted by exBK at 11/11/2004 2:47:08 PM
I have a cursor where I loop through a set of employee_ids. While inside the cursor, I have a second set of cursor, which gets the column_name from information "information_schema.columns" for a given table. The problem I have run into in the following code is: EXECUTE sp_executesql @stmt ...more >>

Trigger Help
Posted by Lontae Jones at 11/11/2004 2:11:02 PM
I have following trigger that creates 4 agents in my agent table. I am using this to hash my passwords UPDATE Agent SET passwd = dbo.ud_MakeSHA1(Passwd) If I place that at the end of my trigger it hashes all passwords in the agent table I need to only has the new entires as they are in...more >>

Showing the money data type
Posted by Tomislav Bilic at 11/11/2004 1:52:02 PM
Good day, If I have the money datatype in the table, how to make the function that will show field: 6000.0000 -> 6.000,00 kn field: 1234.5678 -> 1.234,57 kn TNX in advance... -- Tomislav Bilic Escape d.o.o. http://www.escapestudio.net -- GSM: +385 91 577 1025 ICQ: 1824223...more >>

Transaction Log
Posted by Ed at 11/11/2004 12:28:02 PM
Hi, I am still not sure if everytime I backup the Transaction Log, the Log file will be truncated and removed all the Old Log data. If that is the case how come my original Log File is about 800 MB and after tuncate, it has about 200 MB not close to 0 MB??? Can someone explain to me plea...more >>

Backup / Copy Diagrams
Posted by Mike Labosh at 11/11/2004 12:24:57 PM
I have lots of database diagrams on the "big momma server". I have a copy of that database on my laptop for dev purposes. I would like to copy the diagrams across. I have used DTS in the past to do this with tables and stuff, but I can't see how to get it to copy the diagrams. Could I get ...more >>

Relational Integrity and Replication ???
Posted by Patrick at 11/11/2004 12:15:50 PM
Hi Friends, I have a db with more than 350 table, most of them have Relational Integrity with PK and FK we want to have this DB replication to another server. What are the potential problems and solutions? I had experienced problems and conflicts if db has Relational Integrity. Thanks i...more >>

Simple Select question :)
Posted by meg at 11/11/2004 12:14:56 PM
How do you write a select statement that has a 3 table join, but you only want * from the first table (without listing out each column)? Select * from Table1 t1, join Table2 t2 on t1.id = t2.id join Table3 t3 on t2.id = t3.id where t3.sr = 1234 ...more >>

Importing Access Database - Security
Posted by Paul at 11/11/2004 12:06:57 PM
Hi All I have received an access database to import into sql server, but when I try to open it I get the message: - You do not have the necessary permissions to use the '(unknown)' object. Have your system administrator or the person who created this object establish the appropriate permiss...more >>

Insert blank row after a group of records.
Posted by mike_olivieri NO[at]SPAM comcast.net at 11/11/2004 11:59:47 AM
Hello. Quick question? I have a query that pulls the following results (which is also the table structure more or less): customer_id vendor cost 1 SM 32.00 1 S3 12.99 2 A2 ...more >>

Should be simple but....
Posted by Geir Holme at 11/11/2004 11:44:55 AM
Hi all. I have a litle chalange picking 5 rows sumarizing the price and group by the customer. I want my list to put my spesifik customer into the midle row (3) and the 2 customer that has shopped for more in the next rows (4 and 5) and the 2 customers that has shopped for less in the 2 first...more >>

SQL Sort Order Question
Posted by Mark at 11/11/2004 11:34:07 AM
I just ran sp_helpsort on one of our databases and I had the following output ri Server default collation ------------------------------------------------------------------------------...more >>

random records and paging
Posted by Richard Wilde at 11/11/2004 10:54:07 AM
I know that it is relatively easy to return random records using the newid() function SELECT * FROM Northwind..Orders ORDER BY NEWID() However I was wondering what the best approach would be for paging of these results? My client web application would require to show 20 results at a ti...more >>

Count Results of Union Query
Posted by Tod at 11/11/2004 10:50:32 AM
Pardon my newbieness. I'm coming from an Access world and trying to figure out how to do this in T-SQL: I have a Union query that looks something like this: SELECT CASE WHEN ConditionA THEN 'Result A' WHEN ConditionB THEN 'Result B' ELSE FieldValue END AS 'Groups' FROM T...more >>

Automate sql scripts to run
Posted by Joel at 11/11/2004 10:46:50 AM
How do you automate sql scripts to execute from either a batch file or inside Query Analyzer. Joel ...more >>

transaction question
Posted by Britney at 11/11/2004 10:45:02 AM
I use begin transaction statement inside a procedure called "test", "test" will insert one row or two to a couple tables. I opened 2 windows in query analyzer with this statement declare @i int while @i<1000 begin exec test @test_id = @i @i=@i+1 end I ran them simontaneously, two of sta...more >>

Returning an XML Table into a Variable
Posted by Steve S. at 11/11/2004 10:33:58 AM
I am attempting to create an HTML formatted email and send it all from within SQL server. In order to do this I need to retrieve records from an orders database. I achieve this by: SELECT [tr].itemQty [td] , [tr].itemSku [td] , replace( products.VNDR_Item_Desc, '&', 'AND...more >>

How to close all connections to do backup programmatically?
Posted by Trieu Anh Dung at 11/11/2004 10:30:57 AM
Hi all, I'm using SQL Server 2K on Win2K to develop a window-based application using ..NET framework. Now I have to implement a function that query database and make backups, I want to close all concurrent connection on SQL Server before running the backup process. Please help me! Thanks for re...more >>

Removing user from all databases
Posted by WayneS1068 NO[at]SPAM yahoo.com at 11/11/2004 10:23:28 AM
I'm trying to find a way to (using T-SQL) remove a user from all databases and then remove the login from the server. We have an employee table with a flag to indicate whether or not the employee is active. We want to, from time to time, run a script that will search the table for inactive em...more >>

Convert a NVARCHAR to Boolean field
Posted by SMV at 11/11/2004 9:34:06 AM
Hi All, Could anyone help what is wrong with this code. @nvchrSql is a variable it has a value of 'op20PctTotalDollarsByOffice' which is a 'Bit' Data Type fied in the FactSubTeam_Event table. DECLARE @nvchrSql NVARCHAR(100) SET @nvchrSql = N'Top20PctTotalDollarsByOffice' ...more >>

Parallelism
Posted by Blondie at 11/11/2004 9:19:05 AM
We are experiencing an intra query problem receiving Parallelism messages and would like to fix this... We've found information about an query option hint "maxdop1" should be included in our scripts... Does anyone know how to write this?...more >>

Parsing XML (in a text field) from a stored procedure
Posted by Scott M. Lyon at 11/11/2004 9:03:12 AM
I need to create a stored procedure that will return two fields, based on an XML string stored in a text column. Specifically, the column in question has data looking similar to the following: <NewDataSet> <Project> <Project_number>12345</Project_Number> </Project> ...more >>

extended objects**
Posted by maryam rezvani at 11/11/2004 9:03:09 AM
Hi I studied the help to use extended object ,but can anybody help me how can I use the following example to feel the result and concept of it?( I tried it in VB6 but when I typed " Dim oSQLSvr2 as New " no word like " SQLServer2" appearred,should I install sth. before)? Using Visual Bas...more >>

Passing table and column names as parameters
Posted by Peter at 11/11/2004 8:50:13 AM
Hi I have just read the article "The Curse and Blessings of Dynamic SQL" written by Mr.Erland Sommarskog. Below is a piece of his article: "Parameterizing the table name to achieve generic code and to increase maintainability is simply a programmer virtue.But it is just that when it com...more >>

find bound cols to a rule**
Posted by maryam rezvani at 11/11/2004 8:47:42 AM
Hi I'm using SQL server 2000,and I created a rule and bound some columns from different tables to it,now there's 2 question: 1- how can I find which column are bound to this rule(normally I should right click the name of rule and then select the properties and select the name of all tables o...more >>

Granting permissions
Posted by Bonj at 11/11/2004 8:27:01 AM
How can I do create proc MyProc as --....proc logic go grant execute on MyProc to MYCOMPUTER\ASPNET I can do the 'grant' statement where the user name doesn't include a computer prefix - but the ASPNET account does! It keeps complaining, citing 'Incorrect syntax near \'. The following...more >>

SQL issue?
Posted by Steve at 11/11/2004 8:09:02 AM
Hi I have column FName of varchar type. FName ------ Mktg_2004_03_11Completed Fin_2004_03_10Test Acct_2004_03_09Failed I want to get get result set as FName ------ 20040311 20040310 20040309 I tried using replace, stuff but couldn't make it work. Plz. help Thanks Ste...more >>

Select fails with "Arithmetic overflow" after indexing a decimal c
Posted by Adrian Cucu at 11/11/2004 8:02:02 AM
[Select fails with "Arithmetic overflow", after indexing a decimal column] Does anybody know why a select could fail, after indexing a decimal column? Please find below a test case. OS: W2K SP4 MSSQL @@VERSION: Microsoft SQL Server 2000 - 8.00.760 (Intel X86) Dec 17 2002 14:22:05 Do...more >>

Reading a Table Sequentially
Posted by ShawnG at 11/11/2004 7:28:11 AM
I need to read one table sequentially and use some values from that table to check to see if the value exist in another table. If they don't exist I need to update the status field in the first table with the Letter 'A' for an add status. I am new to SQL Server programming. Thanks for the h...more >>

string concatenation
Posted by j1c at 11/11/2004 7:03:10 AM
is it possible to add a @var to a string??? declare @dbname char(5) select this,that,the_other,thing from @dbname.dbo.tbl_test where id > 10 ...more >>

just a silly thing maybe...
Posted by Enric at 11/11/2004 5:35:03 AM
hi all of us, What works faster? This one: select count(*) or: select count(' ') Thanks a lot fellows, ...more >>

Suspect mode. What happened?
Posted by Enric at 11/11/2004 4:29:02 AM
I've got a database in mode 'suspect'. I try to pass to offline but I can't. I obtain the following error: " Error while closing database (name) cleanly. ALTER DATABASE failed. sp_dboption command failed. " Any help will be well appreciated. Cheers, ...more >>

Date/time range in query
Posted by Pieter at 11/11/2004 1:45:02 AM
Dear all, With using a query on the table layout I have a performance problem: -Table name: Values -Columns: Values_LogTime (Date/Time) Datapoint_ID (Interger - Foreign key) Values_Value (Numeric 12 - 4) -Indexes on Datapoint_ID and Values_LogTime To report this data I'm using the fol...more >>

How to update if exists else Insert in one SQL statement
Posted by karenmiddleol NO[at]SPAM yahoo.com at 11/11/2004 12:42:37 AM
In MS Access I can do in one SQL statement a update if exists else a insert. Assuming my source staging table is called - SOURCE and my target table is called - DEST and both of them have the same structure as follows Keycolumns ========== Material Customer Year NonKeyColumns ======...more >>

varbinary to float conversion
Posted by Tiziana Milan at 11/11/2004 12:26:38 AM
From almost two days I'm looking for a way to convert a image variable to a float variable. I use a function to create a table and before this I must convert a image into a float value, by mean a loop cycle that read, starting from a pointer, all the bytes coming from the image(varbinary). T...more >>


DevelopmentNow Blog