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

ASPX pages failing when SQL Server busy
Posted by John at 9/8/2004 10:01:04 PM
I have a single server running SQL Server 2000 sp3a, and acting as a ASP.NET webserver (.net 1.1 sp1). W2k sp4. Dual Xeon processor, 2 gigs RAM. Everything works fine, but sometimes when I execute a particular stored procedure (on server console using command line, nothing .net), my webapps ...more >>


Limiting The Number of Returned Result Sets
Posted by f00_devil NO[at]SPAM yahoo.com at 9/8/2004 9:11:59 PM
Hello, I am running a complicated stored procedure (that calls a few stored procedures) that returns lots of result sets. I have a few SELECT statements that I use to initialize loop counters. I use the loop counters to help me iterate through a local temp table. I have two questions in re...more >>

comparing every record in a recordset
Posted by neu at 9/8/2004 8:33:27 PM
I have a problem, which I can explain but am struggling to translate into SQL syntax. myTable has 3 columns, with some example values ID NAME NUMBER_ITEMS 1 john 4 2 tim 3 3 john 2 4 tim 1 5 ...more >>

How to select a list of values
Posted by Devapriya De Silva at 9/8/2004 8:09:58 PM
Hi, I want to check for records from the fAdrBook table that contains any of the "/<>\|*" characters in the CompanyID column. I know that I can say select * from fadrbook where companyid like '%/%' or companyid like .... but there should be a better efficient method? Kind Regards, Rex De ...more >>

Kill SPID Question.
Posted by Mark at 9/8/2004 6:10:05 PM
A user ran a command that started updating every record in a table that had about 40 million rows because she didn't have the right where clause. Now when I try to kill her spid, I am getting this error message. SPID 60: transaction rollback in progress. Estimated rollback completion:...more >>

Converting Stored Process to other DBMS?
Posted by Kayda at 9/8/2004 6:01:39 PM
Hi: Simple question--is there a tool that convert SQL script written in SQL Server to the equivalent in another DBMS such as Oracle or DB2? Thanks!! blair ...more >>

iif query error
Posted by Savas Ates at 9/8/2004 5:13:32 PM
SELECT iif(fromwhom<>10,"10",fromwhom) AS xuserid FROM crosstable WHERE fromwhom=1 i want to select fromwhom value as 10 if it is not equal to 10 and itself value of it if it is =10 Server: Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near '<'. ...more >>

where to find a copy of xp_smtp_sendmail?
Posted by ===steve pdx=== at 9/8/2004 5:05:32 PM
i'm using sql2k. i dont' see that sp in the master database but many articles refer its usage thru sp_smtp_sendmail. thank you. ...more >>



How to group columns
Posted by gao.wei NO[at]SPAM vxi.com at 9/8/2004 5:03:59 PM
Hi Everyone, Thanks for helping me with this... I really appreciate it. I have a table like this : col_1 col_2 col_3 col_4 col_5 A 1 4 A 2 A 3 B 5 6 B 7 B 8 I want to run a query and get result like this : col_1 col_2 col_3 col_4 col_5 A 1 2 3 4 B 5 6 7 8 An...more >>

Restoring a database.
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 9/8/2004 4:56:37 PM
Consider the scenario where the database is big and let's say more than 10 users at a time are accessing the database through some software. Let's say because of some hardware problem system crashed and SQL Server database is restored (which was set to Full as Recovery Model) to a point in...more >>

sp_oamethod error
Posted by s_m_b at 9/8/2004 3:51:26 PM
I'm trying to do a EXEC @fsof = sp_OAmethod @fso, 'openTextFile'/*, @fso_return out*/, @strfilepathname,2 (@fso is a createfile method that works fine) but only get this error code out. Can't find it anywhere. What is it? 0x80042725...more >>

Question on scope of temp tables created via SP
Posted by JT Lovell at 9/8/2004 3:45:48 PM
I'm using VB6/ADO to connect to SQL Server. What I want to use VB to = execute a stored procedure. That stored procedure creates 2 temporary = tables which are basically summaries of information from many other = tables. Then I would like to read those temp tables and do something = nifty wit...more >>

indexdefrag all indexes on all tables in a table
Posted by Hassan at 9/8/2004 3:11:16 PM
How can i run a single script that will indexdefrag all indexes on all tables in a db ? ...more >>

Binary checksum alternative?
Posted by Jan at 9/8/2004 2:47:03 PM
We use binary checksums on columns to determine if data changed. We have a text column we need to check but binary checksum fails. Does anyone know if there is there an alternative method to determine if data changed for the text column? thx, Jan...more >>

SQL query - Date diffrence invloving two tables and current date
Posted by Edgard Lima at 9/8/2004 2:44:03 PM
Hi all, I've two tables depicted bellow. I would like to get All jobs (from tbl_jobs) where the difference in days between jobs.date and the current date is greater than tbl_myparam.days (tbl_myparam is a table that has exactily only one row) I'm trying "SELECT tbl_jobs * FROM tbl_jobs ...more >>

Triggers, performance, and distributed processing
Posted by JoelB at 9/8/2004 2:21:29 PM
We have used triggers extensively in the past because we like how they protect and maintain the data right at the source, regardless of who or what is accessing it. Since we have not seen a big need so far for a multi-tiered arrangement, we have located most of our business logic in the trigger...more >>

mdf file does not grow up .....
Posted by news.microsoft.com at 9/8/2004 2:07:57 PM
Hi All ! Are there any limits for the sql server mdf files ? We have one mdf file, it is 19.4 gb but it does not grow up. All clients and applications are down right now.They can not work with that database. Server configuration is Windows 2000 server And Sql Server 2000 Enterprise Editi...more >>

2nd Record
Posted by Justin Drennan at 9/8/2004 1:45:05 PM
Afternoon, I am doing an update statement, and need to update a field in Table 1, with a field found in table2. The problem is, there is SOMETIMES more than one record corresponding in the 2nd table. In this event, I need to select the 2nd record in this table. What would be the best way to...more >>

GETDATE() without the time part?
Posted by Marco Napoli at 9/8/2004 1:36:12 PM
I am trying to get today's date in my SQL Statement with GETDATE() but it returns also the time. Is there a way to return just the Date part without the time? i.e. 09-08-2004 not 09-08-2004 10:00:00 Thank you Peace in Christ Marco Napoli http://www.ourlovingmother.org ...more >>

Hardcoded database names
Posted by Paul at 9/8/2004 1:29:54 PM
Hi We have a stored procedure which transfers data from a set of tables in DATABASE_A, to a set of tables in DATABASE_B (databases will ALWAYS be on the same server). Right now one of the database names is hardcoded in the stored procedure, is there a way of doing what we need without hardc...more >>

DTS to file to E-Mail
Posted by Dennis Burgess at 9/8/2004 1:28:55 PM
I have a view that shows the data that I need to send on a daily basis. I have a DTS package that runs and shoots a file to my desktop, but, I want to be able to shoot it via e-mail ? Any suggestions? Dennis ...more >>

complex query...
Posted by Savas Ates at 9/8/2004 1:24:42 PM
i have two field.. fromwhom towhom 1 2 1 3 1 4 2 4 3 10 i have two parameter... parameter 1 will find the other friend of his code **************************** such us parameter1=1 ...more >>

Clean SQL Tables
Posted by Carl Gilbert at 9/8/2004 12:53:52 PM
Hi I have a series of tables linked by a 'Mapping' table. The Mapping table links objects on one table to objects on another. Each row has a GUID as a key. Aside from the key, each row has two more rows. One for GUID1 and one for GUID2. GUID1 and GUID2 represent the keys for entries in ...more >>

Non Updatable View
Posted by Mike Labosh at 9/8/2004 12:48:55 PM
I have three tables in a 1:1:1 relationship We bulk insert gigantor data files into the first one, then run massive string chomping on it in VB.NET, updating the other two with the results. CREATE TABLE Table1 ( keyCol INT IDENTITY(1, 1) PRIMARY KEY CLUSTERED, Col1 NVARCHAR(255), ...more >>

VB Date formating Update problem
Posted by Ian at 9/8/2004 12:44:26 PM
Hi I am using ADO, VB6 and MS SQL Server 2000 Why is it that when I run this statement I get the wrong date format and date sSQL = "UPDATE tbl_MyTable SET tbl_BTP_Scenario.UpdateDate = " & Date() sSQL = sSQL & " WHERE tbl_BTP_Scenario.ScenarioID=" & glScenarioID adoCON.Execute sSQL ...more >>

Stuck on creating an easy view, please help
Posted by yessica_s at 9/8/2004 12:41:11 PM
I have the following two tables: Table Requests ID Team (varchar field) 240 2,3 241 1 242 1,2,3 Table Team int ID Desc 1 SC 2 PE 3 CO I want to cre...more >>

trouble with a query
Posted by Matt Michael at 9/8/2004 11:54:36 AM
Hi, I'm importing records from a data file, and each record has a type, date run, and file name field.. I'm trying to return unique filenames, and the associated date run, recordtype, and count of how many there were for that group. What I want to do is have it return the total number of re...more >>

Want to generate DELETE/INSERT SQL Statement
Posted by Rizwan at 9/8/2004 11:54:14 AM
is there a generic stored proc which allows me generates INSERT sql statements for a table(s)? Thanks ...more >>

Truncating Database
Posted by Rafael Chemtob at 9/8/2004 11:39:19 AM
Hi, I have a database that is very large. I deleted many un-necessary records (about half the database) but the size didn't change. If I truncate the data, is that going to slow down queries? please advise. thanks rafael ...more >>

Key violation used indexed / materialized views
Posted by Gareth at 9/8/2004 11:30:54 AM
Folks, Can anyone explain why when I try to update the underlying tables of an indexed view I get an error Server: Msg 2601, Level 14, State 3, Line 75 Cannot insert duplicate key row in object 'mvFB' with unique index 'clust'. The statement has been terminated. FB_ISSUE is ...more >>

Import MS Excell table using CP
Posted by Nikolay Petrov at 9/8/2004 11:27:52 AM
How to import Microsoft Excell table (or multible tables from a single file), using stored procedure? TIA ...more >>

sql query - rows in tblB not in tblA?
Posted by Craig H. at 9/8/2004 11:22:07 AM
Hello, I need to create a query that returns any record in tblB that is not in tblA. Can anyone advise how to do this correctly? tblA: column1, column2 ---------------- 1, a 2, b 3, c 4, d tblB: column1, column2 ---------------- 1, a 2, b 3, y 4, z Using the example tables ...more >>

SP returns 3 recordsets - I want one
Posted by Tim Cowan at 9/8/2004 11:19:22 AM
Hi Is there anyway to return only one recordset. Because the statement uses 3 SELECT ... even though two are embedded in INSERT it creates three recordsets. Two blank and one that I want. How do I tell it to not make recordsets for the first 2 selects? Thanks Tim ...more >>

Programming against a large database
Posted by Paul Brun at 9/8/2004 11:04:58 AM
hello all, I am relatively new to the world of SQL programming, however, I am quite proficient with VB.net and C++, etc. I have an VB.NET application that requires access to a SQL database that has approximately 91,000+ records. It needs to show the entire list when the application shows u...more >>

converting to smalldatetime issue
Posted by Yaheya Quazi at 9/8/2004 10:59:50 AM
I have a field called bdate it is the type of datetime. It has values as below.. 1911-11-23 00:00:00 I run the code below Select convert(smalldatetime, bdate, 101) from table.. My output is still 1911-11-23 00:00:00 What am I doing wrong?...more >>

Server properties.
Posted by Matthew at 9/8/2004 10:46:33 AM
Hi, Is there any sprocs in SQL Server which can give me information about the server which I can use for licensing of an application. Let me explain: I have a small rich client database application that currently doesn't have a license model. I now want to apply a licensing model to this appl...more >>

query help
Posted by Rafael Chemtob at 9/8/2004 10:40:58 AM
Hi, I have a table with a half a million records. there are about 6,000 duplicate records. How do I get rid of the duplicate records but keep the originals. this is a sample query to get all the records that are duplicates select mpn, count(*) from tbl_products where sourceID = 2 group ...more >>

Cursors; why so many questions?
Posted by Eric Sabine at 9/8/2004 10:38:34 AM
It's weird but it seems that the number of questions posted recently about cursors, maybe in the last month or so, has just exploded. I wonder what is happening that is making so many people turn to cursors. Are we getting more software programmers writing SQL? Or conversley are we seeing f...more >>

How to determine MAX/MIN?
Posted by JT Lovell at 9/8/2004 10:37:01 AM
This is probably very simple, but I can't find it. Is there a function = to determine min/max between two values without using the full SELECT = MAX/MIN? I.e. I would like to write a statement something like this: SELECT *=20 FROM dbo.MyTable t WHERE t.datetime_value =3D MAX(x,y) given t...more >>

Problem with FK constraint
Posted by Amin Sobati at 9/8/2004 10:36:16 AM
Hi, I have 'Companies' table that has information about some companies. Each company can send a message to another company. I created second table that logs sent messages. This table has a filed to keep ID of sender company and another field that keeps the ID of receiver company. I want to creat...more >>

Help with SP!
Posted by Tim Cowan at 9/8/2004 10:29:23 AM
Hi The following is the SP I am using: CREATE PROCEDURE sp_lookup_web_page_prompt_login_link_list @page_prompt_link_id INT AS CREATE TABLE tmplogingroups (login_group_id INT PRIMARY KEY , lg_description VARCHAR(50), on_page BIT, ordinal_position INT) INSERT INTO tmplogingroups (...more >>

Trigger in temporary table
Posted by Amin Sobati at 9/8/2004 10:14:41 AM
Hi, Why it's not possible to create trigger on temporary tables? What can I do instead? Thanks, Amin ...more >>

set key temp table
Posted by Vincent at 9/8/2004 10:07:45 AM
I've created a temp table in a stored procedure. Should I create a primary key on it to improve the preformance? Thanks ...more >>

Typing Chinese
Posted by fdde at 9/8/2004 10:06:04 AM
First of all, I don't know to type Chinese! But, a user of my database wants a field where he could enter Chinese names in Chinese. I presently use a varchar (100) for the name. I know I should change this to nvarchar(100), but what else should I do? Or is this it? If I change the type to nVarcha...more >>

Clear SQL Server Cache?
Posted by JT Lovell at 9/8/2004 9:23:43 AM
When using SQL server and doing some memory intensive operations, SQL = Server will consume enormous amounts of my PC's memory and paging file. = When completed, the system as a whole runs slowly because of all the = information SQL Server is keeping in memory/paging. If I stop and = restart t...more >>

Profiler TextData blank
Posted by Vern Rabe at 9/8/2004 8:18:53 AM
When I define a filter in Profiler on the TextData column, e.g., TextData like '%Shippers%', it does not filter out blank TextData. How does one do that? Thanks Vern Rabe...more >>

Sorry: Getting Comma Separated Values
Posted by at 9/8/2004 8:10:54 AM
Very sorry for the repost to new thread... having a lof of trouble this morning with newsreader (not leaving Outbox and not deleting from Outbox)... thought new thread may work. Sorry. Thanks for the replies, everyone. All the solutions sem to work fine, however, I can't seem to impliment...more >>

Select record with the earliest date?
Posted by John Rugo at 9/8/2004 8:02:25 AM
Hi All, Can someone please help me? I am trying to return the most recent record. Below is my query at this point: The date Column is not in the example because I don't know where to place it. Let's say the column is called "LastUpdated". By the way this is within a function. DECALRE @R...more >>

How to get data from CURSOR FOR SELECT * FROM
Posted by reynold NO[at]SPAM xs4all.nl at 9/8/2004 7:04:34 AM
I have a cursor in a trigger. I want to fetch the data from the cursor without using FETCH NEXT FROM cursor INTO variable. Is that possible? How should I do that? The problem in the trigger below is in the @c_deleted.something which doesn't exist. Thanks, Reynold CREATE TRIGGER trg_tr...more >>

Textcopy
Posted by viviane NO[at]SPAM bins.com.br at 9/8/2004 5:45:14 AM
I=B4m trying to store an image data type in a database but I=20 always receive this error message: Text or image pointer and timestamp retrieval failed. I=B4ve created a table in Northwind database named test. id char(10) photo image textcopy /Ssqlserver /Ulogin /Ppass /Dnorthwind /Ttest /...more >>

DTS Package
Posted by AQ Mahomed at 9/8/2004 4:55:53 AM
Hi I have created a DTS package that extracts data from my table to a flat text file, This package is scheduled to run daily. The problem that i am faced with is that every time it writes to this file i need the file to be name with todays date (eg : E080904.txt - this will be todays file), ...more >>

Usind Date Variables in Dynamic SQL
Posted by Larry Menzin at 9/8/2004 4:36:00 AM
I am trying to update a table via dynamic SQL using a date variable: CREATE PROCEDURE dbo.InitializeAuditSummary @DBName varchar(100), @SelDate datetime AS DECLARE @strSQL varchar(2048) SET @strSQL = 'UPDATE ' + @DBName + '.dbo.AuditSummary SET Inserts = 0, Updates = 0, Deletes = 0...more >>

OSQL slow?
Posted by Andy Woodward at 9/8/2004 4:34:45 AM
Our SPs are each defined in their own files. Each has a drop (after checking for existence) and a create statement. Each has SET NOCOUNT on. Each has GO statements where required. When we create the database, we concatenate all of these files (there are something like 150 at present) into o...more >>

Change some text within a column
Posted by Mikey at 9/8/2004 4:22:42 AM
Hi I have a table named Navigation and it has a varchar column called urlname ...this holds URL'S. A server name has been changed so I need to change just the old server name to the new servername in the urlname column and leave the other strings as they are does anyone have an idea how ...more >>

Need help to recreate index with clustered option
Posted by News at 9/8/2004 4:06:16 AM
Hi, I have a bunch of tables with indexes created on primary keys that are not clustered. When I open "manage indexes" window and try check clustered option I get errors saying Server: Msg 3723, Level 16, State 1 An explisit DROP INDEX is not allowed on index blah. It is being used for PRI...more >>

Distributed queries INSERT INTO subquery? Possible?
Posted by Utter Newbie at 9/8/2004 3:28:10 AM
I'm wondering how to reference the non linked server from a subquery (if it will even work). So if I'm running this query from a sql server against an access linked database. INSERT INTO Divisions(DivisionID,DivisionName,LeagueID) SELECT DivisionID,DivisionName,LeagueID FROM LinksMSAccessD...more >>

Syntax problem with function call in rule definition
Posted by versteijn NO[at]SPAM 538mail.nl at 9/8/2004 2:35:50 AM
Hello all, I have defined the following Rule; CREATE RULE Password_RULE AS dbo.IsMatch @value, '^(?![0-9]{6})[0-9a-zA-Z]{6,15}$' GO EXEC sp_addtype Password, 'VARCHAR(15)', 'NULL' GO EXEC sp_bindrule 'Password_RULE', 'Password' GO but I get the error message 'Incorrect syntax ...more >>


DevelopmentNow Blog