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 friday june 24

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

Sequence Table to generate ROWNUM
Posted by jsfromynr at 6/24/2005 11:39:40 PM
Hi all, I am looking for a way where we can use Sequence Table to generate row number for non unique rows . (Sequence is a table of numbers from 1 to (n); this is a common SQL programming trick. ) With warm regards Jatinder ...more >>


Need help converting cursor
Posted by Danny Ni at 6/24/2005 7:18:17 PM
Hi, I was told to convert a cursor based stored procedure into set based. The SP has 4 nested cursors, I believe it's causing SQL server to crash or perform poorly. But I couldn't quite figure how to convert it, to simplify I eliminate the non related fields and tables, here are the main ta...more >>

Why SP works when invoked by Query Analyzer, but not from my web page?
Posted by Mark Findlay at 6/24/2005 7:04:18 PM
I am invoking a stored procedure from a web page, and the stored procedure correctly inserts a couple records. The calling web page then attempts to retreive a variable created by the stored procedure (called @@GUID) but this fails. The mystery is that the same stored procedure, invoked fro...more >>

When do I use WHERE instead of HAVING in a GROUP situation?
Posted by l.woods at 6/24/2005 7:03:22 PM
Just point me to a source, if you know of one... I get confused about when to use WHERE and when to use HAVING when I set up a GROUP. Any insights would be appreciated. Larry Woods ...more >>

Index on date field...
Posted by Pradeep Kutty at 6/24/2005 2:40:31 PM
Hi, I have a query like this select * from T_Log Where AccessedDTTM > '05-10-2004' and AccessedDTTM < '05-15-2004' on which ID is a Clustered INdex + primary key I have created a non clustered index on AccessedDTTM . But in the execution plan it always does a clustered index scan on t...more >>

Email Address Validation Rule
Posted by Chris Newby at 6/24/2005 1:47:51 PM
Is it possible to specify a validation rule for columns containing email addresses. Or more generally, can I use a regular expression in a rule ... and if so, what is the specific sytax? TIA// ...more >>

UDF finding Value between 0 and 1
Posted by Dan H. at 6/24/2005 12:47:03 PM
I have a simple User defined function and I want to find values that are equal to 0, Equal to 1, Between 0 and 1, and Null. The data I am using is an Avg on a numeric value. When looking at the average the values appear correct. Like 0, 1, 0.5 etc..., The values apparently are being rounded ...more >>

How to pass this info from a Stored Proc?
Posted by roy.anderson NO[at]SPAM gmail.com at 6/24/2005 12:35:03 PM
Hey all, Below you'll see several dynamic sql variables I've concocted. Each one produces an integer value as it's output so I've trimmed out the syntax for shortness sake. I must use dynamic sql (as far as I know) because the user will be passing in select criteria for each when the SP is exec...more >>



Query Help 22
Posted by XXX at 6/24/2005 12:23:28 PM
How can I do this Create table XYZ ( sid int, rowno int) Insert XYZ (sid) select 1 Insert XYZ (sid) select 1 Insert XYZ (sid) select 1 Insert XYZ (sid) select 1 Insert XYZ (sid) select 2 Insert XYZ (sid) select 2 What I want is SID rowno 1 1 1 2 1 3 1 4 2 1 2 ...more >>

Query Help
Posted by XXX at 6/24/2005 12:20:48 PM
How can I do this Create table XYZ ( sid int, rowno int) Insert XYZ (sid) select 1 Insert XYZ (sid) select 1 Insert XYZ (sid) select 1 Insert XYZ (sid) select 1 Insert XYZ (sid) select 2 Insert XYZ (sid) select 2 What I want is SID rowno 1 1 1 2 1 3 1 4 2 1 2 ...more >>

Stored Procedures renamed?
Posted by warway at 6/24/2005 12:02:32 PM
I'm moving my application from running on W2K with MSA2K runtime to machines with XP SP2 and MSA2K runtime. When viewing from the XP PCs all my stored procedures are suffixed with ;1 when using MSA2K. When viewing the SP's on the same PC but using MSA2003 they don't have the suffix and the app...more >>

delete problem
Posted by Denis at 6/24/2005 11:53:08 AM
Hi I'm trying to delete some records with the following ASP script but I get the following error on rsDb.Movenext() "Row handle referred to a deleted row or a row marked for deletion. " do while not rsDB.EOF 'here i do some task rsDB.Delete() rsDb.Movenext() loop ...more >>

User Roles on a table
Posted by Lontae Jones at 6/24/2005 11:35:03 AM
Is there a stored Proc to show me all the users on a database and there role for that database?...more >>

Schema binding a view
Posted by Bill Orova at 6/24/2005 11:05:46 AM
Ok guys and girls here you go I found only partial directions in BOL to do the following task: We want to drop and create an index on a view in order to do thius we need to have the view schema bound. How would one go about in the creation step to schema bind a view?? thanx much BillO **...more >>

Proper indexing
Posted by Steve Caliendo at 6/24/2005 11:04:43 AM
Hi, I have a multi-million record database, and so I'm just starting to look into indexing for faster data retrieval. If I query this table like this : "select a,b,c from MyTable where d=5 and e=6 and f=7 order by a", what index should I create? Thanks, Steve ...more >>

Clear stored procedure output
Posted by Hugo Madureira at 6/24/2005 10:16:49 AM
Hello! I would like to know if there is any funcion to clear the output form a stored procedure. I would like my stored procedure to return only my last SELECT Statement. What happens is that it returns several VIEWS during the execution of the stored procedure. I need to return only the ...more >>

Data encryption
Posted by Michael MacGregor at 6/24/2005 10:06:58 AM
Hi everybody, Been a while since I've been on here. We have a need to encrypt data, the more secure the better but without being too complex, i.e. too unwieldy to incorporate into applications. So I was wondering what people are using and why? Much thanks in advance, Michael MacGregor ...more >>

Trouble Creating View
Posted by Herbie at 6/24/2005 9:58:05 AM
I tried creating a view with the code shown below. It does gives me a result pane when I run it. But when I go to save it i get this error: 'View definition includes no output columns or includes no items in the From Clause' SELECT R.Session_Mid, R.Session_Lid, S.Session_Name, 'Less7...more >>

Deploy VB.Net application with SQL Database
Posted by Adam Machanic at 6/24/2005 9:44:45 AM
Attention Harsha Shah: Fix your clock. -- Adam Machanic SQL Server MVP http://www.datamanipulation.net -- ...more >>

Altering Fields names
Posted by TS at 6/24/2005 9:40:04 AM
Hi everybody, How to rename some of a table's fields. What is the syntax for that? -- TS...more >>

Analysing SQL statements
Posted by Craig HB at 6/24/2005 9:32:03 AM
I have been using SQL Profiler to analyse long stored procedures to see which SQL statements are taking the longest to run. This works well, but when I find a complicated statement, is there a way to analyse that to see which parts are taking longer than other ? Thanks, Craig...more >>

Date Global variable in DTS
Posted by Jorge Luzarraga Castro at 6/24/2005 9:31:41 AM
Hi, I´ve got a Execute SQL Task which retrieves a sets two global variables from a table. One of the fields is a SQL Datetime containing a full date including milliseconds. I need the entire date set to the global variable because in another task it is a parameter for a query and it must be...more >>

table join question
Posted by Jim Bancroft at 6/24/2005 9:27:02 AM
This probably rates a "2" on a difficulty scale from 1-10, so I'll apologize now, but here goes.....I have two tables, call them A and B, with identical columns. I'd like to join them on their unique ID fields so that I get all records in A that are not in B. What's an appropriate SELECT sta...more >>

Can one stored procedure return two tables?
Posted by jerry.xuddd at 6/24/2005 8:21:05 AM
Hello, I have a stored procedure to update telephone extension numbers The stored procedure should return two tables one for user with one extension, another for users with more then one extensions. Is it possible to return two tables(e.g. put one in the output parameter)? Can someone pl...more >>

UDF in Dynamic SQL in Stored Proc.
Posted by SteveInBeloit at 6/24/2005 8:11:03 AM
Hi, I have a stored proc that builds Dynamic SQL based on input parameters, then Executes sp_executesql. Seems to work good. But one of the lines in the select is calling a UDF. Select o.OrderID, dbo.udfMyFunction(o.orderDesc) AS Desc This of course is all in the @sql string I am bui...more >>

Query vs query
Posted by Enric at 6/24/2005 7:31:09 AM
Dear all, I was wondering myself, which method is faster? select col from table inner join (select col from table4 ) as table2 on table.id = table2.id or select col from table inner join table2 on table.id = table2.id ...more >>

Transaction Question
Posted by mvp at 6/24/2005 7:31:07 AM
Hello everybody, I have one store procedure which is calling second store procedure within it.. What i want to do is, if while executing second store procedure in first one, if any error happens... i do want to rollback entire transaction.. My sample code is as following.. Can anybody pls ver...more >>

TRIM DOUBLE BYTES
Posted by vamsi at 6/24/2005 6:36:03 AM
when i use ltrim functions only single byte space char are removed how i would be able to trim double byte space char...more >>

how to fetch record from sp
Posted by Mohd Sufian at 6/24/2005 5:23:04 AM
Hi, I had 3 table inventtable(itemid field),custinvoicetrans(itemid,qty),salesline(itemid,lineamount) i want to create a procedure with cursor so that it should select one by one itemid from inventtable then that value should pass to the next table and sum the qty from custinvoicetrans and...more >>

How much normalisation is too much?
Posted by hals_left at 6/24/2005 5:16:13 AM
Hi, When adding new features is there ever a point whe you say stop normalising because its just way too many tiny tables and much easier just to add a field and use a check constraint to restrict values and enforce ref inetgrity that way. An example. A sale has 1 user, a user has 0..n sal...more >>

How much normalisation is too much?
Posted by hals_left at 6/24/2005 5:16:06 AM
Hi, When adding new features is there ever a point whe you say stop normalising because its just way too many tiny tables and much easier just to add a field and use a check constraint to restrict values and enforce ref inetgrity that way. An example. A sale has 1 user, a user has 0..n sal...more >>

How to pass table rows to SQL Procedure
Posted by Herbert at 6/24/2005 12:39:02 AM
Hi, In SQL Server is there is any way to pass the table rows itself as a input parameter to a Stored Procedure. Thanks, Herbert...more >>

Writing your own 'replicator'?
Posted by Kim Noer at 6/24/2005 12:00:00 AM
Hi there! I've been trying out the built-in replication in MSSQL, but it confuses me too much, and well, it seems like I have to do a lot of reading to figure the system out. So, I'd rather do it in "plain SQL", but which way is it the smartest way to do this? The task is rather simpl...more >>

How to set "Collation"........
Posted by Bpk. Adi Wira Kusuma at 6/24/2005 12:00:00 AM
How to set "Collation" on a database and server system? Because I have some database. a database has a lot of tables. and if i wanna alter it, so must i alter table by table. is there way more efficien? ...more >>

full recovery model
Posted by Britney at 6/24/2005 12:00:00 AM
Hi Everyone, One of my database is in Full recovery model. I noticed transaction log is much bigger in Full model than Simple Model.. I assume size is almost 100X greater. (10 gb LOG using FULL model) I WANT TO RESERVE DISK SPACE FOR OUR SERVER. If I switch Full model to Simple mode...more >>

Why can "Collation change......
Posted by Bpk. Adi Wira Kusuma at 6/24/2005 12:00:00 AM
I attach a file database from other computer (copy file). When its database on old computer, it has collation "SQL_Latin1_General_CP1_CI_AS". but When I move its database on new computer, so it has collation "Latin1_General_CI_AS". Why can this alter by itself? ...more >>

Getting the machine IP
Posted by Shahzad Atta at 6/24/2005 12:00:00 AM
Hi All, Is there any way to get machine IP address from within a Stored Procedure. Actually I want to implement a GUID algorithm with custom format. Thanks in advance. Regards, Shahzad Atta ...more >>

query to find out timezone
Posted by Britney at 6/24/2005 12:00:00 AM
hi guys, Is there a way to use GetDate() function and GetUTCDate() to find out time zone I'm in? I know GETUTCDate() is greenwich time (GMT), So I know I'm in GMT- 05:00 (Eastern Time (US & Canada) but How Do I do a query to return "GMT- 05:00 (Eastern Time (US & Canada)" I look...more >>

Understanding the trace file format
Posted by Pushkar at 6/24/2005 12:00:00 AM
Hi, I am trying to write my own utility which can read the trace file generated by SQL Server. I am able to interpret most of the binary data in the trace file. But still I am having some problems in interpreting some binary values which are there at the beginning of every trace file. These...more >>


DevelopmentNow Blog