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 > february 2005 > threads for thursday february 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

Outer Join not working
Posted by tshad at 2/24/2005 10:58:49 PM
I am trying to do an outer join and can't seem to get it to work. I actually need to do a 3 table join, but I need to get this to work first. I have the following 2 tables: CREATE TABLE [dbo].[SkillsTest] ( [ClientID] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [Posi...more >>


Update Statistic after Indexes recreated
Posted by LP at 2/24/2005 9:15:41 PM
Hello, Does it make sense to update statistics after all indexes on a table have been dropped and recreated? And another question... Maybe I should make another post about this one, but here it is anyway: What's the best way to keep queries performance optimized? What's happening wi...more >>

What is the best (freeware) SQL GUI CLient?
Posted by george.dainis NO[at]SPAM bluecorner.com at 2/24/2005 8:31:35 PM
What is the best freeware SQL GUI Client for Oracle/SQLServer/Sybase under Win2000/WinXP? With SQL Squirrel and DBVisualizer (free version) I cannot: - unload all rows data (=generate INSERT statements with current content) - edit Views - Edit Table cells Has someone a recommendation for a ...more >>

Problems with Stored procedures
Posted by tshad at 2/24/2005 8:07:29 PM
I am trying to recreate my database from work to my home machines. But use Sql 2000. One error I get is that bigint is invalid type - but my tables have bigints in then Another is that Scope_Identity is not valid - but it works fine at work. Here is one Stored procedure (with errors at e...more >>

Using OLE in Stored Procedure
Posted by Sue at 2/24/2005 4:11:01 PM
I need help with the syntax to use with the sp_OAMethod ... From VB, I use the command bfopen = objMspApp.FileOpen(<DB_Name>\Project_name, False, , , , , , "username", "password", "MSProject.ODBC") So translating that to a Stored Procedure, I tried: EXEC @hr = sp_OAMethod @object, 'FileO...more >>

Determining last changed date on a stored procedure
Posted by Brent Eamer at 2/24/2005 3:14:32 PM
I am looking to implement a program to determine SP's that have changed since a given date I see no way of doing this, ie) there is no 'lastupdated' column in the syscomments table I am from an Oracle background, so any info would be great thanks ...more >>

CASE Issue
Posted by Josh Jones at 2/24/2005 3:04:36 PM
When I set @reorderfav = 1 or @reorderfav = 3, it works perfect. However, when i set @reorderfav = 2, it throws this error: Server: Msg 241, Level 16, State 1, Line 7 Syntax error converting datetime from character string. I have also put the ProjectMain.ProjectName in the ORDER BY and ran it ...more >>

any scalable solution?
Posted by harshal mistry at 2/24/2005 2:57:55 PM
hi, I have a table which stores some user details like email, name and Flag. Now currently we have a stored procedure which runs on the table and selects all the records from this table where flag=0 processes these records and sets the flag to 1. This process is working fine. But now we want ...more >>



database owner chaining
Posted by kurt sune at 2/24/2005 2:54:42 PM
A question of database owner chaining: I have a SQL 200 server. In master the database owner is sa. In a db called SPOA the database owner is sa. (sp_changedbowner 'sa') The dbo is linked to login sa. I create a stored procedure in SPOA: create proc test_OA as DECLARE @object in...more >>

Defragment
Posted by Vincent at 2/24/2005 2:42:33 PM
If I want defragment the hard disk. I will stop the service of SQL server. Is it OK? ...more >>

trace procedure not found
Posted by Nitin at 2/24/2005 2:35:02 PM
I have been trying to run the following section to dump last 100 transactions in the trace file and I am getting an error that this procedure is not found in master databasse. How do I get this proc? Also, I dont see this proc in BOL (Upddated one). Any help? use [master] declare @P1 n...more >>

Database design question
Posted by unklevo at 2/24/2005 2:15:35 PM
I am trying to find more elegant design solution for the following scenario: TABLE: RULE ------------------------------------- RULE_ID STATE PRODUCT MARKET ------------------------------------- R1 ALL ALL ALL R2 NY DOL NULL R2 CA ...more >>

Database design question
Posted by unklevo at 2/24/2005 2:15:10 PM
I am trying to find more elegant design solution for the following scenario: TABLE: RULE ------------------------------------- RULE_ID STATE PRODUCT MARKET ------------------------------------- R1 ALL ALL ALL R2 NY DOL NULL R2 CA ...more >>

declare variable based on existing column
Posted by Bevo at 2/24/2005 1:35:08 PM
Is it possible to declare a variable based on an existing column? Instead of: DECLARE @myvariable VARCHAR(20) Use: DECLARE @myvariable mytable.mycolumn%type WHERE Table MYTABLE has column MYCOLUMN of data type VARCHAR(20) ...more >>

call a stored procedure
Posted by Bevo at 2/24/2005 1:11:03 PM
How do you call a stored procedure using the "+" sign in the parameter: exec test_sproc 'this is a ' + 'test' Do I have to use a variable, like this? declare @string varchar set @string = 'this is a ' + 'test' exec test_sproc @string ...more >>

Inconsist query results
Posted by mark.axland NO[at]SPAM infousa.com at 2/24/2005 12:58:01 PM
When we run a stored procedure on one server we get the following results consistently: Num value 19 a 22 a 31 a 23 b 14 b 25 z The stored procedure orders by value. When we run the same stored procedure on the same table on a different server we can g...more >>

how can I get the object_name
Posted by ejr at 2/24/2005 12:53:05 PM
Hi, how can I get the object_name from a given dbid? I think the only solution is to use dynamic sql with cursors because I can not run dynamic sql inside a UDF... can you help me, please? create table dbo.objects ( dbid smallint , objectid int ) go insert into dbo.objects select 1...more >>

Is there a JOIN limit
Posted by J at 2/24/2005 12:41:41 PM
Is there a join limit to the number of joins that can occur within one query? Some one asked me that question and I didn't know how to answer. I do know that there are performance issues with "too" many joins but I do not believe that there is an imposed limit based in the DBMS software. ...more >>

Rewrite a stored procedure to UDF
Posted by Mihaly at 2/24/2005 12:39:03 PM
I want to rewrite a stored procedure to user defined function because I want to insert into a table a subset of the returned columns from stored procedure. I want to insert UserName, GroupName and LoginName from sp_helpuser into a table. Prease help me how to rewrite this procedure ...more >>

Calculate weekend days between two dates.
Posted by skb at 2/24/2005 12:13:55 PM
How do I calculate the number of weekends that are between two dates? *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!...more >>

Date format - need help!!
Posted by CoolHandSid at 2/24/2005 12:13:09 PM
Hi Guys, Need some help. I have a sql script generated in oracle consisting of insert into values and I'm trying to run that script in SQL Server 2k, but it has a TO_Date function and I'm unable to run it. I looked on the web for a work around and didn't come up with anything. below is a s...more >>

osql using :r and GO
Posted by Bevo at 2/24/2005 11:49:08 AM
I have a script that calls other scripts using :r. I am using osql to run the script. I am getting an error that seems to indicate GO is not allowed in a :r script, yet it is required to create a table and trigger in the same script. How do I do this? I have greatly simplified the scripts, ...more >>

Date Manipulation
Posted by Ooroster at 2/24/2005 11:48:22 AM
I'm trying to manipulate the date to return as 2/24/05 as opposed to 2/24/2005. So far I have this: select GoodDate=substring(convert(varchar(12),getdate(),101),1,6)+ substring(convert(varchar(12),getdate(),101),9,10) Curious, is there a better way to achieve this? The noob thanks you!...more >>

osql using :r and GO
Posted by Bevo at 2/24/2005 11:47:03 AM
I have a script that calls other scripts using :r. I am using osql to run the script. I am getting an error that seems to indicate GO is not allowed in a :r script, yet it is required to create a table and trigger in the same script. How do I do this? I have greatly simplified the scripts, ...more >>

How to self-join a table?
Posted by chris at 2/24/2005 11:41:24 AM
I want display the member's information such as his name, parentno1's name and parentno2's name. Can you show me the SQL statement? Thanks a lot. MemberNo Name ParentNo1 ParentNo2 Sex 1 Mike Johnson m 2 Jessica Johnson 1 4 f 4 Mary Johnson f 3 Peter ...more >>

sp_who
Posted by PH at 2/24/2005 11:39:04 AM
What is the difference between sp_who and sp_who2 ? Thanks!...more >>

How to sum Salary column with a condition
Posted by chris at 2/24/2005 11:37:01 AM
Hi, I'd like to sum the salary for the PayDate<'5/1/1985'. Can I use one SQL statement to get it? Please show me the SQL statement. Thank a lot. EmployeeNo PayDate Salary 1 1/31/1985 $1,000.00 1 2/28/1985 $1,000.00 1 3/31/1985 $1,000.00 1 4/30/1985 $1,000.00 ...more >>

multiple paramaters or case
Posted by Jason at 2/24/2005 11:21:16 AM
Hi, I was wondering how i can create a proc, which will return a recordset, with multiple optional parameters. For example: select * from persons where language = @lang or country = @country or city = @city. If i use 2 parameters, i'm getting the result i want, but 3 it gives me more rec...more >>

A DB block during stored procedure excecution...
Posted by Christos at 2/24/2005 11:17:03 AM
Hi all, I'd like to ask if is there any deference between executing a stored procedure with 'exec' command in the Query analyzer and executing the code of the stored procedure in Query analyzer too. I mean that I copied the source of stored procedure in a window of the analyzer, I declare t...more >>

Store procedure results
Posted by Konstantin Loguinov at 2/24/2005 11:08:49 AM
Guys, Have a question for you. I have a store procedure that returns reps for a certain account. Each account could have multiple reps, so naturally I have a separate table for them. So, when an account has two reps, the stored procedure returns something like AccountID RepID LastNam...more >>

LIKE Compairisons
Posted by Mark Holahan at 2/24/2005 10:50:49 AM
Hi, Does the introduction of the "LIKE" operand in a query force a table scan? Thank you. -- -- Mark Holahan ...more >>

how to write a SELECT to display only the results I need.
Posted by SQL Apprentice at 2/24/2005 10:34:02 AM
Hello, I need help to write a SELECT. I have the following select statements that I ran on Query Analyzer then go over the results one by one. This is not efficient since I have to review about 200 selects. My query is looking for any record counts that don't match. [3064 is the record c...more >>

Slow downs with SQL 2000 SP3a running on dual CPU or hyperthreading hardware
Posted by Doc.SBrown NO[at]SPAM gmail.com at 2/24/2005 10:33:42 AM
Hi all, I have come across a strange performance difference using SQL Server 2000 SP3a on different hardware platforms (some Intel, some Compaq), or when switching hyperthreading on or off. I've seen this on XP and on Server 2003. The performance of certain operations is radically slower when...more >>

set @variable = Dynamic Query
Posted by aamirghanchi NO[at]SPAM yahoo.com at 2/24/2005 10:25:55 AM
Hi, I want to set a variable to the rsult returned from a select statement. The following example is an oversimplification of what I need to do. declare @var as int; declare @strCommand as varchar(8000); set @strCommand = ' Select @var = select count(*) From MyTable '; exec (@strCo...more >>

Clustered index
Posted by Dean at 2/24/2005 10:17:06 AM
I have the query below running against a table with no indexes. This is the only query that ever runs against it so I was planning on creating a clustered index for it to optimize performance. The table does rarely receives inserts or updates but it is queried 10 or so times per second. Righ...more >>

SQL Proxy Account
Posted by Daniel Gard at 2/24/2005 10:09:01 AM
Friends Config: Windows Server Enterprise 2003 clustered running SQL Server 2000 in mixed mode. Background: Trying to get a VB6 program to execute properly after being called from SQL Server trigger using xp_cmdshell. The VB6 code uses a winHTTP Request object and a X509 Digital Certifica...more >>

Problem with Extended Stored Procedure calling an WebService...
Posted by Tommy Selggren at 2/24/2005 9:51:44 AM
Hi all! I have a problem with a Extended Stored Procedure that calls a WebService...I'm using SOAP to call the WebService and I'm using an TokenManager that I have written myself...I have WSE 2.0 installed... It works fine when I'm calling it from my PC, but when I call it from the SQL test...more >>

concatenating multiple results to a string?
Posted by chris at 2/24/2005 9:41:04 AM
I am not sure if this is possible but here is what i need. Is it possible to query the database and concatenate the results into a string? for instance if i said SELECT ORDER_ID FORM CUSTOMER_ORDERS WHERE CUSTOMER = 'CUSTOMER A' and it returned order1,order2,order3,order4 - the returned value...more >>

Better proformance using join or sub-query?
Posted by -=JLK=- at 2/24/2005 9:28:34 AM
All, I am using a trigger to keep a "transaction date" column up-to-date with the datetime the record was lasted inserted/updated. My question is which SQL statement would provide better performance: Update tablename set transdate = getdate() where primarykey in (select primarykey f...more >>

temp tables and column datatypes
Posted by Timo at 2/24/2005 9:27:17 AM
Is there any way in SQL Server 2000 to create a temp table in an SP where the column datatype is specified as that of a column in an existing table? create table #Vend ( Name AP.dbo.VENDOR.Name ) OR create table #Vend ( Name myFunction('AP.dbo.VENDOR.Name') ) Thanks Timo ...more >>

Anyone knows a software that compares 2 dbs and synchronize even if replication exists
Posted by Nadim Wakim at 2/24/2005 9:16:14 AM

Need to Learn Oracle now
Posted by Robert Taylor at 2/24/2005 8:42:19 AM
I have about 7 years of experience with MS SQL server, but now need to become proficient with Oracle as quickly as possible. This group has been a great help, so I'm wondering if anyone recommend a specific Oracle related newsgroup? I'm sure if I do a search, I can find hundreds, but I was ho...more >>

Errror 8144
Posted by Shimon Sim at 2/24/2005 8:17:43 AM
I get following error Server: Msg 8144, Level 16, State 2, Procedure pPMEmployeeUpdate, Line 0 [Microsoft][ODBC SQL Server Driver][SQL Server]Procedure or function pPMEmployeeUpdate has too many arguments specified. Any Ideas Why can it appear? Following are NOT the reason: 1. C# code is corr...more >>

Derived table and adding another column problem
Posted by Henry at 2/24/2005 8:06:48 AM
Hi I have this query below, which I'm trying to add and group data on the week number (ISO week, taken from Books online) fn_getISOWeek returns an integer and works independently of this query. This query also works as I want when there is no weekno invloved (the 3 places) The error I get is ...more >>

Changing a Columns Identity Properties
Posted by Razak at 2/24/2005 7:58:13 AM
Hi, How do I change the identity properties of an existing column using trans-sql? Thanks -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- ...more >>

WHERE help
Posted by Tod at 2/24/2005 7:22:39 AM
Pardon my newbieness. I have a field like this: Region Northwest Northwest NULL Southeast Southwest Midwest Atlantic NULL Southwest I thought if the WHERE part of my query said: WHERE Region <> 'Midwest' I would get 8 records. However, I only get 6 because it leaves out the...more >>

US Working Days per Month
Posted by JM at 2/24/2005 7:06:14 AM
Any ideas on where I could get a list of US working days per month? A list that excludes Sat and Sun, and excludes standard bank holidays (or US Govt holidays)? Thx ...more >>

Problems With Sum
Posted by Julie at 2/24/2005 6:32:49 AM
Dear All We have a table with around 100000 records, this table contains an Int value that can be >= 1 <= 999999. Whenever we use the command Select sum(MYINT) from tblTEST We get the error 'Arithmetic overflow error converting expression to data type int.' I know that the result of...more >>

Custom sort records in a stored proc
Posted by cc900630 NO[at]SPAM ntu.ac.uk at 2/24/2005 4:38:47 AM
I have several stored procs that return two columns of data - primary key values and another column, eg. Categories, Regions. Used to populate select lists in HTML. Is there a way to pass a parameter to the proc that represents a specific primary key value and have the corresponsding record a...more >>

Problem access db from VB.NET after restoration
Posted by ourspt at 2/24/2005 4:35:01 AM
Hi, I am working on a .NET application (VB.NET). We had to restore our SQL server database from yesterday's backup as we accidentally overwrote some tables. After restorign, we are able to log to the database alright from SQL Query analyzer and Enterprise manager but when we try to access i...more >>

need help with procedure
Posted by TJS at 2/24/2005 2:23:20 AM
need to get a value from the table and increment it by 1- how to do this ? something to the effect of : Create Procedure "IncrementCount" ( @CounterFieldName nVarChar(10), @EventID int ) As UPDATE Events SET @CounterFieldName = 1+ (SELECT @CounterFieldName WHERE EventID = ...more >>

utf-8
Posted by JD at 2/24/2005 1:09:08 AM
I am working on a database that will be set up for multiple languages, the data will be set up as utf-8 and I want to store this in a sql server 2000 database. I was wondering how do you set this up in sqlserver and so on. Any help would be appreciated. Thanks. -- J. D ...more >>


DevelopmentNow Blog