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 > july 2006 > threads for thursday july 20

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

help on delete statement
Posted by S.G. at 7/20/2006 11:29:14 PM
Hi, I'm using SQL 2000. I have 2 tables, Invoice and Products. In 'Invoice' table, there are 2 cols: Invoice/invoicedate In Products table, there are 2 cols: Invoice/Productid At the front end 'Access", these two tables are linked using 'invoice' field. But on SQL backend side, I didn't...more >>

Output Parameter Problem
Posted by Bahman at 7/20/2006 10:24:01 PM
Hi! In Studio 2005, I get nothing for my output parameter except sometimes the error: problem converting char to int (where you have @outputpar = @declarevar, etc.) The parameters are varchar(50). I tried char, nvarchar, etc. where should I look? Thank you! -Bahman ...more >>

2005: Script Each Object To Own File
Posted by Jordan S. at 7/20/2006 7:50:37 PM
Is it possible in SQL Server 2005 Management Studio - to script multiple database objects; each to its own file (and NOT all into one single file)? This was obvious to accomplish in EM, but I didin't see how to do it in SSMS. What did I overlook? Thanks! ...more >>

Need help connecting to SQL Server using Windows account
Posted by Sam at 7/20/2006 6:52:02 PM
Hi, I want to use Windows authentication to connect to SQL Server 2005 from Access 2003 projects. I have two users in the company who need to access our SQL Server 2005 from an Access 2003 front end. I'm one of them but because I'm an admin I don't have any problem accessing the server. ...more >>

which version of SSMS is for developers?
Posted by === Steve L === at 7/20/2006 5:06:15 PM
i have sql2k5 enterprise version installed on the database server. my question is what version of SSMS (client tool) I should install on developer's worksation? our developers mostly deal with .net applications and also report design, so they need to be able to deploy reports to reporting server...more >>

* Question about SQL 2000 query
Posted by David R. at 7/20/2006 4:36:18 PM
In SQL 2000 Enterprise Manager, when I type this query: SELECT * FROM Users u, Companies c where u.CompanyID = c.CompanyID it always converts to: SELECT * FROM USERS u INNER JOIN COMPANIES c ON u.CompanyID = c.CompanyID Why does i...more >>

Joining 2 select statement with like fields
Posted by Stopher at 7/20/2006 4:12:52 PM
Hi All, I have 2 select statement that return 2 sets of data. The tables have one field with like results. What I am trying to do is list the like field on the left and the 2 sets of results beside each other on the same data set ie. select Results 1 Name | Result1 select Result 2...more >>

Time And Only Time
Posted by Jim at 7/20/2006 4:04:28 PM
In SQL Server 2005, is there a way to retrieve only the time portion of a date/time field and ignore the date part? I have a DATETIME field and I do not care what the specific date is, I only want query results if time > 00:00:00 and <= 00:30:00 for any Sunday. Like this: SELECT 1, CO...more >>



Run Application Whit Parameter from Sp
Posted by taha at 7/20/2006 3:47:44 PM
Hi All How Can I Run Application Whit Parameter from Sp Example Run Notepad whit file name myfile.txt Thanks ...more >>

Run Application Whit Parameter From Sp
Posted by taha at 7/20/2006 3:45:44 PM
Hi All How Can I Run Application Whit Parameter from Sp Example Run Notepad whit file name myfile.txt Thanks ...more >>

Writing SQL: query builder or through the query analyzer?
Posted by VMI at 7/20/2006 3:14:02 PM
How do you guys prefer to write queries, by hand or by using the query builder? I'm used to writing it by hand, but a co-worker loves the query builder(he even hides the sql part). Should I just switch to query builder? Personally, I don't like it (it looks too much like the MS Access utility)...more >>

Query to values from two different tables with outer join
Posted by jp at 7/20/2006 3:09:47 PM
Hi, Been looking at this a while and can't quite work it out. I want to add the values of columns over two tables. Ideally I'd like to be able to specify multiple pairs of columns, but initially adding a single pair would be a start. The following query works as long as there is data in bot...more >>

pure query question
Posted by x taol at 7/20/2006 2:33:05 PM
fld0 fld1 fld2 fld3 BRKT STRAP 36 3 54 BRKT STRAP 7 4 3 BRKT STRAP 14 27 5 BRKT STRAP 56 29 7 BRKT STRAP 20 31 6 BRKT STRAP 3 2 7 BRKT STRAP ...more >>

User's default schema
Posted by dev648237923 at 7/20/2006 2:23:16 PM
I can query who the current user is (sp_who or select current_user) -- is there a a way to determine their default schema? Thank you! ...more >>

Sql Server 2005 Database mail error message.
Posted by Naana via SQLMonster.com at 7/20/2006 2:20:09 PM
Hi All, I keep getting the below messsage, when I sent a test email message from a Database Mail. I have a profile setup and the user is also added to MSDB DatabaseMailUserRole. I did install MS Outlook on the same machine and sent email to the same recipient and it worked.But will not work wh...more >>

set datetime month from int
Posted by randy1200 at 7/20/2006 2:11:01 PM
The problem with the code below is that it ADDS the value of @year to the current @thedate value. I need to SET @thedate.year to the @year value. Any suggestions? Thanks, Randy declare @month int set @month = 3 declare @year int set @year = 1999 declare @thedate datetime set @the...more >>

TSQL to view a table's DDL
Posted by JohnnyMagz at 7/20/2006 1:06:01 PM
I want to script out a table's DDL (create table statement). I can do this through the GUI, but I don't know how to accomplish this using TSQL. Can anyone point me in the right direction? Many Thanks! - Johnny...more >>

Is there a way to use a function like Replace on a Text data type?
Posted by awd at 7/20/2006 1:04:03 PM
Hello, The subject really says it all. Is there a way to perform the same job as Replace when the column is a Text data type? Thanks, Anthony ...more >>

Another Instance of SQL Server
Posted by Rafael Chemtob at 7/20/2006 12:56:54 PM
hi, i created another instance of MS SQL Server on server BESQL01. this new instance is called BESQL01A. i'm trying to connect to it from a web page and it's giving me an error saying the server doesn't exist. any ideas what the missing link is. here is the connection string: oDBCOnn.open "d...more >>

Views and CTEs performance problem
Posted by Rich at 7/20/2006 12:34:02 PM
I have a hierarchical structure to contain objects which maps users (belong to roles) to an ACL table for permissioning on these objects. I then need to create hierarchical XML based on the data hierarchy with the ACL access included. My lookup on the data is peachy, but I'm noticing that a...more >>

varchar(8000) data being truncated to 4096
Posted by kbutterly NO[at]SPAM yahoo.com at 7/20/2006 12:20:56 PM
Good afternoon, all! I have a stored procedure that has an input parameter, @chvComments defined as text. The comments are getting in with the proper length, as shown by printing out len(@chvComments) in the body of the stored procedure. Prior to being inserted into a table, the comments ...more >>

Calculaing # of days elapsed between each visit
Posted by Eeraj at 7/20/2006 11:36:02 AM
given this dataset: CustomerNum VisitNum DateofVisit 1 1 12-Jan-2005 1 2 23-Jan-2005 1 3 28-Jan-2005 2 1 01-Feb-2005 2 2 08-Feb-2005 3 1 03-Feb-2005 3 2 08-Feb-2005 how do i calculate the # of days elapsed between each visit, to produce a resultset like...more >>

scripts fails under ADO but no error returned.
Posted by Otis Bricker at 7/20/2006 11:07:36 AM
I am trying to run a script through ADO that changes the schema of a table. if not EXISTS ( SELECT * FROM dbo.syscolumns WHERE (name = N'owner') and id = (SELECT id from dbo.sysobjects where name = 'models')) begin -- several steps he...more >>

Easy question about combining queries
Posted by Jibber at 7/20/2006 11:04:07 AM
I am somewhat of a T-SQL beginner, so excuse the simple question. I need to perform the following queries, but I am sure they could be combined into a more efficient single query. How would I combine these into the most optimal query? This segment is from my stored procedure. DECLARE @cla...more >>

SQL Server Job Notification
Posted by ameen.abdullah NO[at]SPAM gmail.com at 7/20/2006 10:54:42 AM
Hi Guys, Is there any stored procedure or sql statement to add notification for a job? The senerio is i have to create a job by using sps and i cant find any procedure for enabling/disabling "write to application event log" or autodelete job option which we have in notifications tab. ...more >>

Pls help! Recursive retrival function
Posted by Farmer at 7/20/2006 10:47:22 AM
Thank you for taking a look at my issue. Given schema and data below, I am trying to build a function that will = do the following: Given an OrderItem that is oriIsMfg =3D 0, non manufactured item, and = considering recursive relationship of this Bill of Materials, return the = firs...more >>

Adding a space in a field
Posted by Eli Feng at 7/20/2006 10:44:52 AM
A workaround to fix an application issue requires to insert a space in an Address field. Using UPDATE tablename SET Address = ' ' in Query Aanalyzer seems do not fix the issue. This Address field is varchar and allows nulls. I'm not sure if I hit the space bar in the Default Value line under the ...more >>

Document management is SQL Server
Posted by Wes at 7/20/2006 10:03:02 AM
Current sturucture: We have a small web server farm that includes two machines. One machine contains the folder where all uploaded document are stored. The other machine links to the documents vai a mapped drive. Meta data about the files is stored in a group of tables in a SqlServer 2005 data...more >>

incrementing a counter in sql
Posted by Kelly at 7/20/2006 9:44:53 AM
I need to create a table with two values - old no and new no the old no should come from an existing table and the new number should begin with a starting value and increment by 1 how do i do this???? From http://www.developmentnow.com/g/113_0_0_0_0_0/sql-server-programming.htm Posted via Deve...more >>

UPdating a table column with substring of another column
Posted by mavrick_101 at 7/20/2006 9:36:01 AM
Hi, I want to update a column based on substring of another column (of the same row and same table). How can I do that? Thanx....more >>

Can't use Shared Memory protocol to connect
Posted by Mike Kansky at 7/20/2006 9:21:02 AM
I have .NET web application that connects to SQL 2005 using the following connection string: server=(local);database=db1;uid=sa;pwd=pasword;min pool size=0;max pool size=100;connect timeout=10; I assumed that if i use (local) for the server name, and the .net application is on the same m...more >>

merge two date ranges with overlap from two tables
Posted by Jason at 7/20/2006 8:28:14 AM
Hi everyone: I have two tables: pat01 record patient status1 from date to date. patientID startdate enddate status1 1 2000-01-01 2000-01-25 Good 1 2000-01-26 2000-02-25 not so Good 1 2...more >>

Default text case
Posted by john d at 7/20/2006 8:12:02 AM
In the database design - how can you force the input and output in a particular field to always be in UPPER CASE? re: Field Name: Net Qualifier nvarchar 255 sample output "oz" required "OZ"...more >>

Complex Query in SQL Server 2000
Posted by NJ at 7/20/2006 7:51:01 AM
I need to calculate the Amount in the Main table using the other three tables. Main: Account Desc Amount 544-411000-000000-100-999 Services ??? 544-413000-000000-101-999 Expenses ??? 544-414000-000000-104-999 Bonus ??? 560-411000-000000-050-999 Services ??? 560-413000-000000-060-999 Ex...more >>

Inner join of one table with two aliases
Posted by VMI at 7/20/2006 7:33:01 AM
We have a one table that has a record with the summary and all the records of that summary. For example, on this same table there may be a record with the summary of the product (i.e. "PC") and five other records with the components of that "computer" ("ROM", "RAM", "CPU", etc...). They all h...more >>

Searching for Close Variations
Posted by Jordan S. at 7/20/2006 7:25:17 AM
A customer just asked me to remove all spaces from the FirstName and LastName columns because they want for searches for [for example] "De Leon" to return anyone with the name spelled "De Leon" or "Deleon". I'd rather not remove spaces. And yes, I'm aware of the wildcard characters (% etc)...more >>

how to kick all users out of a database
Posted by PamelaFoxcroft NO[at]SPAM gmail.com at 7/20/2006 7:14:50 AM
Hi I am doing log shipping on sql 2000 and want to kick all users out of the database before applying the backup or the log. What I am doing is writing a cursor which will read sysprocesses to see which users are in the db. I filter on db_id =db_id('pubs') Then I kill all the spids. I...more >>

Dynamic SQL - Execute (@var1+@var2)
Posted by zomer at 7/20/2006 7:03:55 AM
Hi all, I have a SQL statement that is longer then 8000 characters. So I have split it up... store it in two variables.... after Execute (@var1+@var2).... i get a select statement with parameters in it and is run by SSIS dynamic SQL task. ...which should store it in a string variable.... this p...more >>

SQLCMD / OSQL / ISQL - Having to hit enter and then type go again.
Posted by JasonDWilson at 7/20/2006 6:39:02 AM
Is there any setting in SQLMCMD and hopefully in ISQL/OSQL as well, that when I type a query and hit enter it will run/submit the query without having to hit enter, then type go and hit enter again? I was hoping a ';' would work, but I can't seem to figure out how to get it to work. Please h...more >>

FOR UPDATE
Posted by JP at 7/20/2006 5:31:02 AM
Hi, Is there a equivalent to "FOR UPDATE" in sql server Select field1, field2 fom table1 for update Will lock the record being accessed by other transactions and release the lock when the transaction using it commits Thanks JP ...more >>

SQL Parser
Posted by Bit Byter at 7/20/2006 4:41:03 AM
Hi, This may be a little OT, but I don't know exactly where else to post it. I am writing a little parser that generates valid SQL using "English like" text. I want to use this to allow non-technical users to be able to quickly write their own queries, to search through a database that stores...more >>

how to: INSERT IGNORE INTO?
Posted by R. Nachtsturm at 7/20/2006 4:04:01 AM
Hi, I have the following situation: a partitioned view as the target of a "insert into", with the source being an "select from" statement. the problem: the partitioned view requires a primary key, the source table however does not have either a primary nor a unique key and does have seve...more >>

show dependencies of a fact table
Posted by Dia at 7/20/2006 4:00:06 AM
i have a fact table that a stored procedure use but have difficulting finding what populates the fact table... when i go to All Tasks > show dependencies on the fact table i get nothing? what's a quick way for me to find how this table is populated? ...more >>

SQL Server 2000 conversion of varchar to smallint
Posted by stainless at 7/20/2006 2:59:53 AM
I am selecting a column from table B that is a varchar and want to insert directly into a smallint column in table A. The value will always be an integer in display format e.g. 1, 2, 3 etc. So the varchar will simply have one number left justified. Thus the basic format is: Insert into A S...more >>

dynamic sql in UDF
Posted by ivan at 7/20/2006 2:33:51 AM
Hello! I need to use dynamic sql in UDF. There are a lot of function in the database like: ALTER FUNCTION ...... (@Date1 int, @Date2 int) RETURNS @Result TABLE (a int, b int) AS BEGIN INSERT INTO @Result SELECT columnX, columnY FROM TableZ RETURN END There are more details ...more >>

Returning only rows with highest version
Posted by Vilma at 7/20/2006 2:32:22 AM
HI. As a newbie I am trying to write a TSQL statement that can retrieve multiple rows. The trick for me is that I have a version field, smallint, that can indicate if a row exists in various versions. What I am trying to do is to retrieve only the rows with the highest version number, I ...more >>

Timeout sql+asp
Posted by praeclarus NO[at]SPAM libero.it at 7/20/2006 1:15:52 AM
Hi, I have a problema of query in an asp page, if I run the query in sql query analizer is time running it's about 3-4 seconds, if I made the same query in an asp page it create the error of timeout for the browser. The result of the query output 2000 of records, all in one page. The query i...more >>

Arrays in stored procedures
Posted by David DB at 7/20/2006 12:23:03 AM
Hi, I want to pass a multidimensional array from VB6 to a stored procedure. This stored procedure will the add multiple records to a table. Today: --------------- ALTER PROCEDURE [dbo].[AddGroupUser] ( @GroupID int, @UserName varchar(50)) AS BEGIN SET NOCOUNT ON; INSER...more >>

Backup of the database
Posted by Samuel Shulman at 7/20/2006 12:08:21 AM
I set up a new backup for the database and I can't change the settings of this back up I simply can't find it in the Enterprise Manager Thank you, Samuel ...more >>

TSQL bit manipulation up to 128 bits???
Posted by CyberDwarf at 7/20/2006 12:00:00 AM
Hi y'all Does anyone out there have a solution to the problem of bit manipulation when you need to operate on something bigger than a BIGINT? I have a requirement to manipulate up to 128 bits... Anyone tried bit-shifting and masking with a VARBINARY? (Joke) I'm sure someone has cracked...more >>

URGENT !!! SELECT * returning different set of records
Posted by Pradeep Kutty at 7/20/2006 12:00:00 AM
Hi All, On my production server, I see a peculiar behavior starting today morning. The issue is : I run select * from a table which has 20165, but it keeps on returning 9000, 32000, 3000, 10000 etc.(never got the exact records) Not sure what is wrong. What would be the reason for this and ho...more >>

Installing a database
Posted by Tor Inge Rislaa at 7/20/2006 12:00:00 AM
Installing a database Hi, this I probably no problem for the right person. I am about to install a database on my SQL Server. Due to the summer holidays, I can't get hold of the support people for the database, so I was wondering if anyone out there could help me. I have a file w...more >>


DevelopmentNow Blog