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 > march 2004 > threads for tuesday march 23

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 31

Retrieve / list members of Sysadmin role without connecting to the SQL-server (API? Please help!)
Posted by google NO[at]SPAM supertimmy.com at 3/23/2004 11:47:39 PM
Hi all, is there a way to retrieve the members of the Sysadmin (or any other) role via a certain API-call? Or is my only chance to connect to the SQL server? If so, how can I connect without any information about users / passwords that are allowed to connect to the server? Is there something l...more >>


oadl (or padr)
Posted by toylet at 3/23/2004 10:53:10 PM
Does SQL server has functions to pad a string with leading zero? "1" --> "001" I wrote my own, but is looking for some native features. -- .~. Might, Courage, Vision. In Linux We Trust. / v \ http://www.linux-sxs.org /( _ )\ Linux 2.4.22-xfs ^ ^ 10:50pm up 1 day 14:54 ...more >>

cross-tabulation, sort of
Posted by toylet at 3/23/2004 10:49:55 PM
Given these two tables: Table1: table_no, table_name 1, "table one" 2, "table two" Table2: table_no, group_no 1, 'A' 1, 'B' 1, 'C' 2, 'D' 2, 'J' I want to build a table like this: table_no, table_name, groups 1, 'table one', 'A B C' 2, 'Table two', 'D J' Any easy way ...more >>

Help In Query
Posted by Prabhat at 3/23/2004 10:27:10 PM
Hi All I have one problem. The below are 2 queries i have written for same purpose. But the 1st one is slower then 2nd one and the 1st one gives correct output without duplicates. But the 2nd one is fatser but gives duplicate if inner query / table has multiple rows for one ACCNO. I want th...more >>

How to query data ?
Posted by Sasavat at 3/23/2004 9:59:45 PM
Dear All I'm already get data from file. But I cann't use to query in database. the data in file is ('Custom Sta-Sof - Intl (jap)') but Data in database are ('Sta-Sof Custom') ('Sta-Sof Custom Jap') ('Sta-Sof Custom USA') ...more >>

retrieve the most recent row
Posted by toylet at 3/23/2004 8:39:57 PM
given this table PositionHeld: EmployeeID EffectiveDate Position OtherFields How could I retrieve the most recent record with one T-SQL statement? IN another language's SQL, I did this: select max(AA.EffectiveDate) as XDATE, BB.* from PositionHeld AA, PositionHeld BB grou...more >>

Date query
Posted by J Griffiths at 3/23/2004 7:09:17 PM
I have a database table that has a "date" field that is smalldatetime format. This field is populated with the current date-time when the record is generated. What I want to do is to analyse every record in the table and return an analysis of how many records were generated during which hour ...more >>

running a query against 2 SQL servers
Posted by sh0t2bts at 3/23/2004 5:50:40 PM
Hi All, I am running SQL server 2003 I have my server "SQL-001p" that holds a list of all of my employees NT id's I then have my clients sever "SQGN002p" which holds information of my employees actions on their customer database. What I want to do is pull back all the rows that ap...more >>



Fetching XML metadata.
Posted by Girish at 3/23/2004 5:40:10 PM
Posted this also in adonet usegroup - but I could be using jdbc to do this as well. ---------------------------------------------------------------------------- ----- Is there a way I can expose the metadata from sql server of a database in a well defined XML format that sql server can supply...more >>

Counting By Previous Month
Posted by J. Joshi at 3/23/2004 5:36:21 PM
I have a table with monthly snap-shots that capture all eligible members on the 15th of the month. I want to be able to count all eligible members as of the 15th of the last month even if I run the report today. i.e. If I run the report in March, I want to be able to count the membership a...more >>

Return Key (identity) on INSERT operation (SQL/ASP)
Posted by CJM at 3/23/2004 5:33:37 PM
I have the following SP: CREATE PROCEDURE Orders_CreateOrder @CustomerID int, @LocationID int, @CustOrderNo varchar(20), @OrderDate smalldatetime AS Insert into Orders (CustomerID, LocationID, CustOrderNo, OrderDate) Values (@CustomerID, @LocationID, @CustOrderNo, @OrderDate) If @@R...more >>

Overcoming Transact-SQL ORDER BY limitations
Posted by news.microsoft.com at 3/23/2004 5:22:37 PM
This is FYI for anyone interested. I was looking for a way to pass parameters to a stored procedure to determine the order of the resulting table. I wanted to put parameters in the ORDER BY clause, such as: SELECT * FROM tblTable ORDER BY @p_OrderField This gives an error such as "The SELE...more >>

return record with greatest date
Posted by Shay at 3/23/2004 5:11:09 PM
Hi, I have a sproc returning 2 records, but I only want to return the one with the greatest date. I coukd use max on the date column, but I am returning a lot of columns with different values, so this does not work. Is there any way to do this in a query Thanks...more >>

how to select with this condition
Posted by Ray at <%=sLocation%> [MVP] at 3/23/2004 4:44:56 PM
Fix your clock. ...more >>

Encrypt function...
Posted by Yaheya Quazi at 3/23/2004 4:35:45 PM
Here is code for my SP CREATE PROCEDURE insert_profiles @email as char(100), @password as char(100) AS Declare @enc_password as varbinary(85) Set @enc_password = encrypt(@password) INSERT INTO [profiles] ([email], [password] ) VALUES ( @email, @enc_password) GO ...more >>

Newbie needs help with BCP out file
Posted by ajmister at 3/23/2004 4:20:10 PM
Hi I am running the following BCP command to extract data from a table test_stu C:\test>bcp temp..test_stu out c:\test\out\test.rpt /S SERVER /U USER /P password /f c:\test\test.fmt create table test_stu (s_name char (6) s_year int (4) s_mean varchar (10) s_median va...more >>

This one could be tough
Posted by joe at 3/23/2004 4:02:59 PM
Hi, We have weekly schedule db maintenance plan running on sql 2000 servers every Saturday. I have a store procedure which returns error alert values if data of tables becomes out-of-date (15 minutes or more behind getdate()) Also I have a schedule task which runs this procedure in applica...more >>

Backup/Restore question
Posted by SStory at 3/23/2004 3:38:30 PM
I want to offer a simple backup/restore option in my vb.net app. So I did BACKUP DATABASE MYDB TO DISK="D:\SOMEFILENAME.BKP I execute this via a SQLCommand object. backup is simple. But say the database gets wiped out, then they reinstall MSDE. I would need to either somehow connect an...more >>

accessing sysobjects is good or bad if not wat is the solution
Posted by Venkata at 3/23/2004 3:03:57 PM
Hello Sql Gurus In each and every stored procedure we use the following code to check whether the stored procedure exists or not I think most of the people are do this. if exists (select * from sysobjects where id = object_id ('dbo.tab1')) begin print 'Dropping old version of proce...more >>

Selecting the last record per group where nulls possible
Posted by humble at 3/23/2004 3:01:07 PM
One table with 2 columns emp_no end_dat 001 01/01/199 001 01/02/199 001 <null> ** The last record for this employe 002 15/12/199 002 15/12/2002 ** The last record for this employe How do I select the "l...more >>

How to accomplish this in a query (quite simple probably)....
Posted by Johan Andersson at 3/23/2004 3:00:25 PM
....though I never seemed to have the need to do it before. And who better to ask than you guys? I need to make a simple select statement like, for example, "select * from member" but I'm really pressed to also get the actual columnname. Ie I'd like a result set that would look something l...more >>

Turn off enforcing relationships on inserts
Posted by Lynn at 3/23/2004 2:54:09 PM
If I go to the properties on a relationship between 2 tables in a diagram there is a checkbox to turn off Enforce Relationship For Inserts And Updates. How can I set this to no via T-SQL code. Thanks!!! ...more >>

I really need some help here.
Posted by Chris at 3/23/2004 2:51:06 PM
Hello I have tried everthing. I looked everywhere. I have the foll functio create function GetQuantityDelByStore @storeID varchar(10) @productNumber varchar(10) @coverDate varchar(10 returns IN A BEGI declare @strSQL varchar(300 select @strSQL = 'select * from OPENQUERY(PROGLINK...more >>

Transaction Log - suspend for updates
Posted by JayS at 3/23/2004 2:47:12 PM
Can the transaction log be suspended for certain inserts/updates?. I run a query everyday to update certain dates, I donot want the transaction log to be updated for this query. ...more >>

parallel processing hangs with CXPACKET wait type
Posted by slirwin NO[at]SPAM bigfoot.com at 3/23/2004 2:25:26 PM
I am doing performance tuning on a data warehouse load process that executes a series of stored procedures to migrate data from one database to another. The processing is an elephant that takes 4 days, and I am currently focusing on indexing. I have a procedure within this load process that is...more >>

Invalid Cursor State Error
Posted by Yaheya Quazi at 3/23/2004 2:21:18 PM
Hi I am keep getting invalid cursor state error while trying to modify column properties on existing table using enterprise manager. I read books online, it explain this error causes because server is out of space etc. I checked all that and none of them is valid in my scenario. Any i...more >>

Select Last Row problem
Posted by Vlad at 3/23/2004 1:48:16 PM
I used to use this statement with Access db: SELECT TOP 1 CheckID From CheckLogAccount ORDER BY CheckID DESC to retrieve the last CheckID from table Recently I made links between Access tables and SQL Server and since that this statement doesn't work. It works directly in SQL Server, it works...more >>

Efficient Text Storage ?
Posted by Mark C at 3/23/2004 1:15:34 PM
I have been tasked with the restructuring of a website and the associated database. The site stores large text entries by taking the content submitted from the site, checking to see if it's more than 1200 characters long, and if it is, chopping it up into chunks which it then stores as var...more >>

Expire Passwords
Posted by Tim at 3/23/2004 12:59:24 PM
Hi - We store the users and their passwords in a database table - the passwords are stored encoded and hashed and there is a form online through which the users can change their passwords if necessary. The question is how can I make sure that passwords are changed every 90 days and tha...more >>

Set @var to a single row of data?
Posted by Stephen Russell at 3/23/2004 12:57:12 PM
It's been a while since Iv'e done something this stupid in a SP. I'm manufacturing data for footnotes. Select footid from #t2 where footnotes = @ap_adapt if @@rowcount =0 begin insert into #t2 (footid, footnotes) values (@id, @ap_adapt ) set @id = @id +1 end ...more >>

error comparing Floats after conversion from varchar
Posted by Sean G. at 3/23/2004 12:17:30 PM
Howdy, I'm trying to compare numerical values in 3 varchar columns. The roadblock I'm hitting is the case where the numerical values are equivalent but the character representation is different, e.g. '10', '10.0', '10.' are all worth 10. My plan around this issue is in 3 steps: 1. Select ...more >>

Cursors - Server Side - Only Forward?
Posted by Gerard at 3/23/2004 12:03:56 PM
Hey all, Quick and simple, I am running SQL 2k on Win 2k Server. Is there anyway to make a server-side cursor capable of going backwards on records. They seem to be forward only. All the info I have says there is no way. Any ideas?? Gerard Gulf Management Systems Programmer / P...more >>

Running Sum field in select query
Posted by Ashley at 3/23/2004 12:01:16 PM
Hi, I am trying to create a select query that selects various fields from various tables and then I want to create a new column through the query that is a running sum of one of the fields I am selecting. Simplified Example: Table looks like: Descr DIVCount ----------------...more >>

"Key column information is insufficient or incorrect . . . "
Posted by Steve Renier at 3/23/2004 11:47:14 AM
I am a new SQL Server programmer using Access as my front end. I have a table of names and addresses with a trigger that runs a stored procedure. This procedure concantenates address information into two lines for use on envelopes. When I attempt to add a new record on the Access side, ...more >>

Optimizer smart enough to recognize "constant" subquery?
Posted by R Baker at 3/23/2004 11:46:39 AM
Consider the following: select Item, AdditionalOrderQty + CASE (SELECT INT FROM OPTIONSTABLE WHERE STRING='Option') WHEN 1 THEN 0 ELSE ISNULL(DefaultOrderQty, 0) END As AdditionalOrderQty, MinOrderQty + CASE (SELECT INT FROM OPTIONSTAB...more >>

Retrieve column descriptions?
Posted by Rob Meade at 3/23/2004 11:32:44 AM
Hi all, I was wondering if there is a way to retrieve the column descriptions from SQL Server for a specific table? If anyone has any help to offer for this one I would be grateful. Best regards Rob Meade ...more >>

What is a ROW-ID
Posted by Abhishek Srivastava at 3/23/2004 11:29:57 AM
Hello All, What is a row id? Why do we have identity fields in a table, why not use row-id as a unique DB assigned primary key value rather than defining a column as an identity field? Thanks for your help in advance. regards, Abhishek....more >>

trigger question....
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 3/23/2004 10:59:32 AM
Could anyone see a problem with this trigger? It does not insert the values in target table..... Thanks ===================================================== CREATE TRIGGER ROX_candidacy_Degree_History_stage_10 ON candidacy FOR insert as BEGIN declare @numrows int select @numrows =...more >>

Question
Posted by Chris at 3/23/2004 10:51:07 AM
Hi Is this possibl declare @test in select @test = POS_GetQuantityDelivByStore "s0912070",92219,'08/25/2003' select @test + How can I add the value of two stored procedure?...more >>

Need to REALLY understand views
Posted by Learner at 3/23/2004 10:50:21 AM
Can someone pls guide to to some good URLs from where I can really learn about views I.e. besides other benefits, especially understand the advantages of using views rather than retrieving data directly from tables. Many thankxs in advance....more >>

Trigger does not seem to fire from front end or enterprise manager
Posted by Keith G Hicks at 3/23/2004 10:35:36 AM
Please do not yell at me for not being more specific. I am having a problem with a trigger and will get more specific if necessary. In general is there a reason why a trigger would fire properly when doing an update statement on a table from the query analyzer but seemingly NOT fire at all wh...more >>

Year conversion
Posted by Ruslan Shlain at 3/23/2004 10:11:36 AM
I have a field that represents a year in this format - 96 I need to be able to convert it on the to 1996 or if it is 04 to 2004. Is there functions to do that. It has to be done in SQL. Thank you much, -- Ruslan Shlain nAlliance Corporation www.nAlliance.com ...more >>

Need "On Change Of" aggregate
Posted by Hotmail at 3/23/2004 10:08:39 AM
I am trying to figure out a way for T-SQL to get a record upon change of a certain field. So, for example, In a table that contains treatments given to a patient with an admissionid, a date of service, and an insurance type that the patient had for that visit, I need to return the first record f...more >>

Paging feature for schedule jobs not working
Posted by Andre at 3/23/2004 9:46:08 AM
I am trying to setup an operator to receive a page when a scheduled job fails. I go to the Notification tab on the Job Properties window and select Page Operator....When the job fails. After the job fails I never receive a page. This is a major problem. Please any insight would be greatly apprec...more >>

select statement as a column
Posted by SFRATTURA at 3/23/2004 9:41:54 AM
I have a purely 'academic question', as I solved my problem using a paid of 'case' statements within a query. But in trying different ways, i could not make somethin gwork...that i know SHOULD work...so i have to find out to satisfy my curiosity. Say you have a table like this: InvoiceID,...more >>

Query help needed
Posted by Tom Furness at 3/23/2004 9:35:29 AM
Hi all, I know this has been asked and answered before, but I can;t find any info on it. Perhaps someone can help. I have a table thus IDcol Namecol ------ ----------- 101 Tom 101 Larry 101 Sam 3550 Tom 3550 Sam 7990 Bill 7990 Sam I would like to ...more >>

Custom Identity Field
Posted by Yaheya Quazi at 3/23/2004 9:23:07 AM
I would like to create a custom identity field. I want to use the built in SQL server identity field column however I would like to add 3 sequential characters which are none duplicating id to build a custom primary key. For example I would like to assign ids as below AAA111 AAB112 AAC1...more >>

unique temp table name
Posted by toylet at 3/23/2004 8:51:35 AM
Could I do something like this without using dynamic SQL? create procedure myproc as @table_name = "##"+newid() select * into @table_name from atable -- some other processing using @table_name drop table @table_name -- .~. Might, Courage, Vision. In Linux We Trust. / v \ ...more >>

UNICODE and Encoding
Posted by KP at 3/23/2004 8:43:40 AM
What is the default encoding for UNICODE characters in SQL Server, UTF-8 or UTF-16?...more >>

Triggers
Posted by Brian at 3/23/2004 8:12:03 AM
Tis is the first Trigger I have created and am having some problems. When a record is inserted/updated on table 'TimeTrack' the trigger runs. It looks at the column 'j_ordnum' and based on the value outputs a value in 'j_recref' The trigger works somewhat and the conditional logic works...more >>

count of maximum value
Posted by chris at 3/23/2004 8:00:31 AM
sql2k sp3 Howdy all. How would I get the count and value of only the max value grouped by another coulmn? create table #temp (RCSTK int, RCK int) insert into #temp(1,100) insert into #temp(1,100) insert into #temp(3,100) insert into #temp(2,110) insert into #temp(2,110) insert into #t...more >>

Locking Hint
Posted by TVODBA at 3/23/2004 7:51:10 AM
I need to get a SERIALIZABLE row level lock. My stored proc is currently using a TABLOCKX locking hint which is too coarse of a lock. I would prefer a ROW level serializable lock if I can get it. I've read the BOL description of the locking hints but the ROWLOCK locking hint description does not de...more >>

collection of queries for Northwind
Posted by ciemcio at 3/23/2004 7:49:14 AM
IS there in the internet any collection of queries for Northwind. I need lot's of examples how to use select, where, having,group by .......... ...more >>

solid learning experience
Posted by Alok at 3/23/2004 7:17:11 AM
Hi folks, Firstly thanks that people here are helpful always :-). I have come with another doubt today in my SQL Server learning process. Which is the good T SQL server book which has reasonably tough and good exercises at the end of each chapter?. My Intention is not just to learn the ...more >>

CONVERT
Posted by Jaco at 3/23/2004 7:01:11 AM
Hell I am trying to run this SP. The problem is that if one of my fields have null values it returns with an error 'Implicit conversion from data type text to nvarchar is not allowed. Use the CONVERT function to run this query' - any help please CREATE PROCEDURE qfm_DiaryFormPMSchedul ...more >>

Top x Percent for each group
Posted by Ryan at 3/23/2004 6:16:05 AM
I think this may be an easy question for many of you, but I'm brand new to SQL and have no shame in seeking help from others much better qualified than me I have a simple 2 column table (e.g. Date, Yield) and all I want to do is return the TOP 10 Percent of records based on Yield for each Date. So...more >>

Operand type clash: varchar is incompatible with void type
Posted by Johnny Silvestre at 3/23/2004 5:51:59 AM
Hi Friends, What means the fowlling error: Operand type clash: varchar is incompatible with void type this error only happen in a specific server ! Thanks Johnny Silvestre...more >>

Convert datatype in function
Posted by Chris at 3/23/2004 5:21:07 AM
Hi I have the foll function. When I execute I get the foll error messag Server: Msg 245, Level 16, State 1, Procedure quantityDelivbyStore, Line 2 Syntax error converting the varchar value 'select * from OPENQUERY(SERVER,'select sum(quantity + overage - notdeliv - short - damaged) fro history w...more >>

Duplicate keys, unique rows.
Posted by Jan at 3/23/2004 3:31:06 AM
Hi I have an imported table with duplicate keys but unique rows I want to remove the duplicate rows and keep only one (doesn't matter wich) The important thing is that all the information I keep comes from the same row The table has MANY columns (50+), so a select top 1 solution would probably b...more >>

SQL Documentation
Posted by Papanii Okai at 3/23/2004 1:26:37 AM
Is there a way to create documetnation for SQL code like NDoc does for C# classes? I would like to create Visual Studio like documentation for a database i have created. --Papanii ...more >>

help needed in database backup
Posted by sunil at 3/23/2004 1:13:50 AM
hi all i had to go to the clients and collect the data from their servers and then update my server in the office. this has to be done regularly for every week. there will not be any connectivity , so i need to copy the data to a disk and then bring it to the office. is there any possibli...more >>

Insert statement inside stored procedure failing
Posted by Puneet Mittal at 3/23/2004 12:56:05 AM
CREATE procedure sp_save_placement_skill @ActionId int @NewPlacementId int @UserId in a declare @tableSkillList table (skillName varchar(100) declare @tempSkill_ID in declare @strPlacementSkillsUsed varchar(1000 declare @IntPos in declare @strSkillName varchar(50 EXECUTE p_GetActionFie...more >>


DevelopmentNow Blog