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
August 2008
all groups > sql server programming > january 2004 > threads for wednesday january 14

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

Decimal or Currency data type....
Posted by Gary Smith at 1/14/2004 11:12:35 PM
I want to store amount data in a field. I am getting confused whether to use Deciaml data type or Currency data type. I am not finding any points in using currency when compared to decimal data type. Any comments. Gary ...more >>


SQL Server ASP returns null
Posted by Tim Gaunt at 1/14/2004 10:25:26 PM
Hi, I'm new to SQL Server and have encountered an interesting problem and was wondering whether there were any solutions. Basically I retreive records from the SQL Server and populate a form which the user filled in earlier however, although there is data stored in the fields, it returns nu...more >>

Get systeminfo?
Posted by Lasse Edsvik at 1/14/2004 10:11:40 PM
Hello I have remote access to a sql 2k database and i was wondering if there some way i can retreive the systeminfo of that server? or do i need sertain permissions for doing that if even possible? /Lasse ...more >>

small group by problem
Posted by Lasse Edsvik at 1/14/2004 9:16:14 PM
Hello How do i change the following query: SELECT (SELECT COUNT(*) FROM (SELECT DISTINCT SUM(Points) FROM Reports AS P3 GROUP BY TourNo,Team HAVING SUM(P1.Points)<=SUM(P3.Points)) AS P2(P)) AS Rank, Team,TourNo, SUM(Points) AS Points FROM Reports AS P1 GROUP BY TourNo,Te...more >>

compare dates
Posted by TJS at 1/14/2004 8:21:51 PM
trying to find all records with date less than 06/01/2003 when I try tbl.fld < 06/01/2003 results are not being filtered - all records are being returned I tried datediff but it only returns intervals between 2 dates, I need to see negative or positive difference. how can I get the "age"...more >>

Left join vs right join - Performance
Posted by Jet at 1/14/2004 8:18:38 PM
Hi There, Are there significant performance difference between left join and right join? If yes, which one is more efficient? Thanks...more >>

using a veriable for a column name
Posted by MarkS at 1/14/2004 7:45:46 PM
Hi, I want to use a date for the column name for the next 80 months. Every month one drops off and one is add to the other end. Can I do this and if so how. Thanks MarkS...more >>

SQL 2000 Sucking For Air
Posted by James Hokes at 1/14/2004 7:31:17 PM
Hello, Here's a mystery for you to chew on. We had a system running on MSSQL 7.0 on Windows 2000 Server. Now it is running on MSSQL 2000 on Windows 2003 Server. The 7.0 machine was upgraded to 2000, then the databases were all updated using sp_updatestats. Next, the databases were deta...more >>



Combine Multiple Rows Into One
Posted by Oliwa at 1/14/2004 7:11:06 PM
Hi all, I know this topic has been covered several times, but all of the solutions I've read will not work in my circumstance. All of the solutions either recommend using a cursor or declaring a variable and concatenating each row. While these solutions will work in most cases, they will not ...more >>

alter table, can you add columns to a certain position
Posted by mic at 1/14/2004 6:45:52 PM
Hi when using alter table to add columms, it add columns to the end of the table , is it possible to add column into cretain position? via a script. thanks michael...more >>

bug in enterprise manager?
Posted by michael at 1/14/2004 6:44:12 PM
Hi, after using the alter table command to add some columns and then 'design' on a table thru enterprise manager, the column that were added do not appear, however if you go properties on the table the columns are there. This dosen't seem to be fixed by doing a refresh, the work around is...more >>

String / Variable Problem - Dynamic Table Name
Posted by Martin Feuersteiner at 1/14/2004 5:44:54 PM
Hi I'm grateful for any light you can shed on this!! I've to admit, it's an unusual design but I've multiple contact tables named e.g. i2b_ash_contact or i2b_ted_contact. 'i2b_' and '_contact' are static but the middle part is dynamic. Storing all contacts in one table with an identifier ...more >>

When should I use OLAP ? or just Reporting ?
Posted by tristant at 1/14/2004 5:31:51 PM
Hi SQL/OLAP Gurus, I am new comer to OLAP with Analysis Service. What are the considerations to decide to use OLAP (e.g: with Analisys Service) or to use just 'traditional' reporting ? (what I mean by 'traditional reporting' is reports on the operational/OLTP database, not the OLAP database...more >>

Sql to Flatten table
Posted by robc at 1/14/2004 5:27:50 PM
CREATE TABLE [dbo].[tblFlattenTest1] ( [TheRowKey] [char] (10) NULL , [TheColumnName] [char] (10) NULL , [TheColumnValue] [decimal](18, 0) NULL ) ON [PRIMARY] GO insert into tblFlattenTest1 values ('Car' ,'Speed',120) insert into tblFlattenTest1 values ('Car','Year',2003) insert into ...more >>

table design question
Posted by Travis Parrent at 1/14/2004 5:13:19 PM
I am working with msde2k, but figure this problem could relate equally to access and couldnt' find a dbdesign group for sql, which is why i'm crossposting to these 2 groups. I am working on an inventory type application db design. We are tracking only total quantities of parts and not individ...more >>

SQL tiebreaker
Posted by Frank at 1/14/2004 4:49:35 PM
I am working on a game ranking system similar in design to the tables below. tblMember --------------- member_id_pk (primary key) first_name (varchar) tblPoints -------------- point_id_pk (primary key) member_id_fk (foreign key to tblMember.member_id_pk) points (INT) I need to return...more >>

convert string to date
Posted by TJS at 1/14/2004 4:36:35 PM
how can I convert a string to a date to get datediff to work .... @vReportdate Varchar(25) datediff(d,tblA.fld1 ,' + @vReportdate + ' ) > 1 ' ...more >>

tool generate insert sql statement
Posted by Mullin Yu at 1/14/2004 3:25:56 PM
i want to know is there any tools automatically generating a insert sql statement based on the data from a select table. thanks! ...more >>

SQL syntax
Posted by robc at 1/14/2004 3:23:54 PM
If a column has been specified as Decimal Precision 12 Scale 6... how would you format the data in a view as Decimal Precision 9 Scale 2 using the following formats... ....with leading / trailing zeros including the decimal point ....with leading / trailing zeros excluding the decimal point (de...more >>

statistics
Posted by patni at 1/14/2004 3:14:56 PM
Hi guys, SQL server creates statistics on tables. I have seen that these -WA statistics are created for almost every field on every table. My Question is on production boxes is it this a good idea. or we should create the statistics only on potential fields after analysis. I w...more >>

Tool for source control
Posted by Johny at 1/14/2004 3:03:47 PM
Is there any tool like visual source safe which can be used for monitoring the changes on SQL server and generating scripts for that change? Is there maybe possibility for using VSS? ...more >>

determine max unused string-numeric in sequence
Posted by John A Grandy at 1/14/2004 2:49:32 PM
table has a string field that corresponds to an ID , such as a license-number business-process requires that field characters must be digits (only). for various complex reasons, "gaps" may occur in the numeric sequence, e.g. 1001000 1001001 1001002 1001003 1001005 1001006 1001007 ...more >>

Optimizer does not use indexed view due to non-aggregate function
Posted by Michael Eglinton at 1/14/2004 2:29:50 PM
Hi Can someone please tell me why the following query won't use the index - it has something to do with the fAdd function which as far as I can tell is deterministic and precise but I get the following warning message when the indexed view is created Warning: The optimizer cannot use th...more >>

Help with stored procedure!!
Posted by Damon at 1/14/2004 2:27:58 PM
Hi, I have a stored procedure which keeps throwing me out of visual basic when I try and run it, it works perfectly in Windows NT but throws me out when running it in Windows XP, any ideas why this is happening would be greatly appreciated. Here is my stored procedure: CREATE PROCEDURE d...more >>

SQL Server 2000 Developer Edition
Posted by shank at 1/14/2004 2:24:09 PM
Hopefully someone has some experience with SQL Server 2000 Developer Edition. I installed the above, including server components which should include Full Text capabilities. However, Full Text does not show up in Enterprise Manager like it does on my web host's server. Can anyone give me a clu...more >>

Default Value
Posted by Nice Chap at 1/14/2004 2:23:45 PM
How can I get what's the default value of a column as set in the schema ? ...more >>

copy row data and changing foreign keys
Posted by Bob Uva at 1/14/2004 2:20:38 PM
I want to write a stored procedure that inserts new rows into a table by selecting other rows in that same table. The table has an IDENTITY column which is the primary key. INSERT INTO tbl_A ( ... ) SELECT ... FROM tbl_A WHERE ... This works fine. But I have another table that uses the IDE...more >>

cmds
Posted by tom at 1/14/2004 1:56:53 PM
I want to see last 10 commands executed by a user. is there some command like dbcc inputbuffer. TIA ...more >>

OPTION
Posted by OPTION at 1/14/2004 1:54:42 PM
In which scenario's we should use OPTION (KEEPFIXED PLAN) in queries. ...more >>

User def. data types in stored procedures?
Posted by dw at 1/14/2004 1:25:28 PM
Hello all. Can user defined data types be used in stored procedures, for example to define input parameters? Thanks. ...more >>

DATEDIFF problem
Posted by Nikhil Patel at 1/14/2004 1:07:14 PM
Hi, I am trying to calculate the difference between two date in my query using the DATEDIFF function. But the probkem is that the DATEDIFF function rounds the result. So for example SELECT DATEDIFF(YEAR,'19991021','20010626') returns 2 instead of 1. I also need to calculate the difference i...more >>

DTS Package Blocking Problem
Posted by tguillor NO[at]SPAM ems.jsc.nasa.gov at 1/14/2004 1:06:43 PM
SS 2000 SP3 I'm executing a DTS Package. It has two connections, one to SS and one to an Excel spreadsheet. The package has a series of tasks that move data from an SS table to Excel. Occasionally a task fails with the error message "The connection is currently being used by a task. The...more >>

Using derived column name in where clause
Posted by Jane Sharpe at 1/14/2004 1:04:32 PM
Hi, I have a query that uses a CASE statement with a load of ELSE-s to work out a result from source data, I then name this result with an As clause. For eaxample, the result might be blue, red or green and my derived column name is 'Color'. My question is, I want to put WHERE Color = 'blue...more >>

How to find Deadlocking SPIDs
Posted by Ashish at 1/14/2004 12:39:52 PM
In a large user setup , Is there any program available to find out who is deadlocking who ? Thanks ...more >>

Error 208 when updating stored procedure
Posted by Dave at 1/14/2004 12:26:16 PM
Hey all, I can't update any stored procedure in my database, even as an admin. The user is connecting as the db_owner and for that object he has EXEC privileges. I'm new to SQL Server but I thought he would need update as well but that column isn't selectable. I get: Error 208: In...more >>

ORDER BY question
Posted by Glenn Carr at 1/14/2004 12:07:29 PM
Is it possible to choose which column to ORDER BY depending on whether one column is NULL or not? For example I have a table with two columns, Column1 may be NULL and if it is I would like those records to be at the top of my sorted output. If Column1 is not NULL, then I would like the remainde...more >>

OPENQUERY (MSOLAP) fails
Posted by Andrej Hudoklin at 1/14/2004 12:07:01 PM
Hi, I get error using openquery statement in SQL by using MDX that was generated by my olap client tool (ProClarity). The thing is that only specific calculated members makes this error. In general it works fine. The problem is that I need data of the problematic calculated members. SQL 200...more >>

identity
Posted by Carlo at 1/14/2004 12:04:33 PM
Hi i deleted all the rows of a table with an identity column and now i have to insert new rows, i need to reset the identity start value ... i did it in the past... but i forgot how... can anyone help me?? thanks Carlo ...more >>

Selecting from dynamic tables
Posted by John at 1/14/2004 12:01:25 PM
Hi there, Is it possible to be able to pass a table name to a stored procedure and have it return data from that table. If not is there anyway I could achieve the same effect? much appreciated, John...more >>

Further SQL help needed
Posted by Peter Newman at 1/14/2004 11:46:37 AM
I was helped earlier with a Query , but Im still not getting the correct results; Table 1 LedgerRef verchar(6) RecievedDate smalldatetime LedgerRef RecievedDate 111111 01/01/2004 111111 12/12/2003 111111 23/03/2003 111111 ...more >>

CASE in WHERE Clause
Posted by Frank at 1/14/2004 11:31:29 AM
Hi al I have also another problem I like to have a CASE in my WHERE Clause. I have read that this should be possible but I cannot get it work... I tried the following DECLARE @Test varchar(50 SET @Test = 'J SELECT convert(varchar(50), getdate() WHERE CASE WHEN @Test = 'A' THEN Left(convert(...more >>

SQL Server "Yukon" Beta 1 Performance
Posted by Kapil Joshi at 1/14/2004 11:22:35 AM
Hi ! I am trying to use the Performance counters exposed by SQL Server "Yukon" Beta 1 in a .NET windows application written in VB.NET. I am receiving the following error : "Counter is not a single instance, an instance name needs to be specified." when i checked through Contr...more >>

<> Operator!!
Posted by Vai2000 at 1/14/2004 11:15:25 AM
Hi All, I am trying to pull records which are in table1 and not in table2 SELECT * FROM TABLE1 t1, Table2 t2 where t1.OrgName <> t2.OrgName Its not working....returns everything from t1.... how to just get records which are only in T1 and not in T2 TIA ...more >>

Primary Key AND Index?
Posted by Craig Ison at 1/14/2004 11:11:45 AM
If i set a column as Primary Key do i gain anything by or lose anything by also creating an index for that column? Thanks ...more >>

Xml and Schema
Posted by Gal Shay at 1/14/2004 11:02:41 AM
Hi all, I have SQL 2000 Server and Window XP and work in hebrew I want do get XML string from aquery in SQL 2000. For instance select ID,Name From tableName FOR XML AUTO I got all question mark even when the fields is not in hebrew How can I Do it TIA gals@mekorot.co.il ...more >>

SQL Server View + Stored Proc Issues
Posted by Steveo at 1/14/2004 10:52:40 AM
SERVER = WINDOWS 2000 SP4 (MDAC 2.8) SQL_SERVER = 2000 SP3 CLIENT = WINDOWS 2000 SP4 (MDAC 2.8) TASK: We have a table of usernames, a table of criteria for those users and a table of number balances broken into years, periods and codes. Using Access Data Projects, we need to all...more >>

Ignoring trigger exceptions..
Posted by Ron at 1/14/2004 10:48:18 AM
I have a trigger that executes a stored procedure performing an insert, which may potentially throw a constraint exception. I can't capture this with normal error checking (as exceptions are higher than errors), however I don't want to reject the original action that triggered the stored proced...more >>

Parameters and "Table Variables"
Posted by Dolphin at 1/14/2004 10:43:24 AM
Hi, I want use "table variables" in stored procedure, CREATE PROCEDURE sp_TBL_CNTRL @TABLE_NAME VARCHAR(128), AS DECLARE @COUNT INT .... DECLARE @TBL_MEM TABLE (FLD_MEM INT NOT NULL) SET @SQL = 'INSERT INTO ' + @TBL_MEM (FLD_MEM) + ' SELECT COUNT(*) FROM ' + @TABLE_NAME + ' WHERE UID I...more >>

inserting explicit values in the identity column
Posted by Amitgee at 1/14/2004 10:38:32 AM
Hi, For a number of reasons, when inserting in tables with identity columns I have to provide the identity value explicity. First I find the next identity value and then use it to insert a record in the table thus making sure that there's no conflicts. Now my problem is this - some of my inser...more >>

xp_sendmai error on serveral of our sql servers
Posted by JJ Wang at 1/14/2004 10:33:52 AM
Hi, We have jobs on some of our sql servers that will send query/store procedures' running results as attachment through outlook email to people. most of the times, the job will run just fine. But sometimes lately, in some of our server, these type of jobs fail due to this error: '...more >>

select between query
Posted by SQL Apprentice at 1/14/2004 10:33:11 AM
Hello Is there a way to do a query using between 'a' to 'z' instead of numbers? For example, select lastname from northwind..employees where lastname between 'c' to 'g' Thanks a bunch!!! ...more >>

Strange SQL issue
Posted by Paul at 1/14/2004 10:21:28 AM
Hi I have a SQL Update which runs fine when I run it on it's own (takes around 15 minutes) but when I run the SQL in a batch with other statements the process goes on forever (it's been running 14 hours so far and still going). Looking at the session it's waiting on Parallell Query, packet s...more >>

Update temp table in sequence
Posted by BCat at 1/14/2004 10:15:20 AM
Dear all, I want to update each row in temp table one by one, is there any thing I can do to make the rows stored in temp table are in sequence while doing update? Something like: Declare @a INT, @b INT SET @a = 5 SET @b = 0 Update temptable set @b = column1, column1 = column...more >>

Retrieving data
Posted by Emma at 1/14/2004 10:09:32 AM
I have the following data in a table Date JobCode Value 1/11 job1 3 1/11 job2 4 1/11 job3 6 1/11 job4 7 1/11 job5 11 1/11 job6 89 1/12 job1 0 1/12 job2 1 1/12 job3 2 1/12 job4 3 1/12 job5 4 1/12 job6 4 1/13 job1 7 1/13 job2 8 1/13 job3 9 1/13 job4 10 1/13 job5 11 1/13 job6 12 ...more >>

repeating rows in left outer join
Posted by A.M at 1/14/2004 10:09:20 AM
Hi, I have a select query like: select * from table1 left outer join table 2 on (join condition) The problem is if Table2 has more than one row satisfy the join condition, then Table1's row repeats. Is there any trick that i can have query just pick the first row of Table2 in the case ...more >>

3 decimal number?
Posted by Lasse Edsvik at 1/14/2004 9:50:45 AM
Hello How do i format SELECT 5/8 AS 0.625 or any division with two integer values? /Lasse ...more >>

Linked Server behavior
Posted by Bob at 1/14/2004 9:46:06 AM
I am working with a trigger that sends data between servers using a Linked Server. I have found problems with slowness and what appears to be cursor like behavior when processing more than one record at a time. When I process 1 record or 6 records in a test of the trigger without the Link...more >>

sql agent proxy problem
Posted by Tommy at 1/14/2004 9:45:08 AM
We have a job that runs every so often. We had to go into sql server and setup the proxy account because we use xp_cmdshell in 1 of the stored procs. We got a different machine and it has windows server 2003 and it is a domain controller with active directory installed and I can't seem to get t...more >>

sql query
Posted by SQL Apprentice at 1/14/2004 9:34:37 AM
Hello, How can I bring back a result set such as the following: From this query: select lastname from northwind..employees where lastname a to d I am trying to display the lastname only inside a range like a to d or h to z.... Thanks for your help ...more >>

IN and LIKE
Posted by Amy Snyder at 1/14/2004 9:31:51 AM
Is it possible to have a LIKE statement inside an IN? Something to this affect: IN(Like '111%', Like '112%, Like '113%') I am passing a string to my stored procedure that looks like this: '111,112,113' I have to strip it apart and add the '%' and then do my select. Thanks! *** Sent...more >>

create function error
Posted by kanan k at 1/14/2004 9:28:23 AM
Iam getting the following error message: Msg 170, Level 15, State 1, Server PASQL1, Line 1 Line 1: Incorrect syntax near 'Function' when I tried to create the following function: use dwexternal go CREATE FUNCTION dbo.fn_RectangleArea (@Width int, @Height int ) RETURNS int AS BEGIN ...more >>

OPENROWSET and fixed width text file?
Posted by William Morris at 1/14/2004 9:18:04 AM
Is this possible? What driver should I use, or is there a metadata file that needs to be created and used? Thanks! -- William Morris Product Development, Seritas LLC Kansas City, Missouri ...more >>

IF Block in WHERE Clause
Posted by Frank at 1/14/2004 9:16:29 AM
Hi al I am trying something what is maybe not possible... but who knows.. I would like to build aomething like a dynamic SQL Statement without using EXEC The target would look like this SELECT something FROM sometabl WHERE MyString = '123 IF something = BEGI AND somefield IN (... EN ...more >>

T-SQL Use Command and Changing Databases
Posted by David Finkelstein at 1/14/2004 8:59:46 AM
I have a situation where I need to change databases within a stored procedure. The setup is as follows: - database1 - database2 - reportingdb We have lots of stored procedures in reportingdb that were "hardcoded" to reference database1. database2 is an exact copy of database1. In th...more >>

I get the same output
Posted by tony at 1/14/2004 8:59:27 AM
What is the diff. between. select unicode('A') go select ascii('A') TIA...more >>

Shared Memory
Posted by news.microsoft.com at 1/14/2004 8:32:10 AM
Can someone tell me what the Shared Memory option is used for when one runs the SQL client network utility. Start->Rin Cliconfg There's an option for shared memory protocol. I would like a good technical description of this option. When to use it and when one doesn't need to use it. Many ...more >>

Querying a linked server with a hyphen in the name
Posted by Greg at 1/14/2004 8:26:05 AM
Hi all I have a server called CDC-DRUG. It is a linked server. I am trying to query against from another server. I am getting a syntax error though. This is my query. SELECT * FROM CDC-DRUG.Nation.dbo.Companie The error says incorrect syntax on the hyphen "-". Can anyone offer up assistanc...more >>

Stored Procedure to create temp table
Posted by Gary at 1/14/2004 8:13:41 AM
I am trying to create a stored procedure that takes two input parameters: a table name and an in list. The table is going to be a tempory table (#myTableName). My create procdure is shown at the bottom of this message. When I check the syntax, I get the error "Must declare the variable ...more >>

Count(*)
Posted by Brandon at 1/14/2004 8:09:21 AM
Hello, I have an SP that groups things by categories. How do I use count to get a running total of each group. I want to have a field the does something like the following count category 1 ety 2 ety 3 ety 1 etn 2 etn 1 dny 2 dny ...more >>

Bit with Default Values
Posted by MushedUpMan at 1/14/2004 8:06:32 AM
I found that if I define a BIT field with a default and then update a row without specifying the bit fields to be updated, they are changed to their default values. This is disturbing. I changed them to TinyInt and they remained the same value. Is this a bug or they way it works? Anybody know? ...more >>

Chinese Characters in QA?
Posted by Brian at 1/14/2004 8:04:45 AM
Can anyone tell me how I can paste Chinese characters into Query Analyser? I need to execute insert and update statements from the QA window, I usually recieve the Chinese text via email and paste it directly into the column in EM, however, if EM displays <Long Text> then I can't paste it in an...more >>

Help with table design...
Posted by Yaheya Quazi at 1/14/2004 8:02:56 AM
Hi I am developing a time reporting application where employees will submit there monthly timesheet. part of my requirement is to have a time_sheet table that will store hours for a particular employee. We need to store date worked and hours worked for that date. My question is how do I de...more >>

Multiple Result expression in a case
Posted by at 1/14/2004 7:28:30 AM
If the transactiondate is between Nov 11 and Dec 10 Then Then From Date = Nov 11 ANd ThruDate = Dec10 How do to in 1 case? ...more >>

How to check for a file?
Posted by Lynn Pennington at 1/14/2004 7:01:58 AM
I am in SQL 2000 and I need to check to se if a file is there or not. A thrid party product generates a TXT file that I have to input into a table. I would like to check to see if a file is in a folder. \\ComputerName\TxtDump\20040114.txt Thanks, Lynn....more >>

AD, SQL, Scripting
Posted by Paul at 1/14/2004 7:01:14 AM
Hi, 2 questions. Using Win2K, SQL2K. 1) Is it possible to programmatically "push" or "pull" an update of the AD DB to my SQL servers? The reason I ask is that, 2) I create Global groups in AD using VBS. Those groups are immediately visible in AD, and I can issue a query from SQL against t...more >>

Changing a field Size
Posted by Peter Newman at 1/14/2004 4:31:16 AM
I have been asked if its possible to change a field in one of tha tables and format the data. The field is a varchar(6) and i want to change it to a varchar(8). i would also like to format the data in the field from 123456 to 12-34-56 for all records. Thanks in advance for you help...more >>

SQL Server randomly dropping relationships.
Posted by Norman McFarlane at 1/14/2004 3:05:45 AM
Hi everybody, I posted this originally on 9 jan and have had no reply since, so I'll try again. Hopefully this is the right ng for this. If not, please point me at the right one. We have a db wtih about 140 tables. It is an ERP solution for a paper merchant. We have discovered that SQL Ser...more >>

Count Problem
Posted by Peter Newman at 1/14/2004 12:42:49 AM
I have two tables, referenced by a LedgerRef field, Table1 contains hearer records and Table2 contains a breakdown of the transactions, Table 1 LedgerRef RecievedDate etc. qweasdew 01/01/2004 wwwddffr 12/12/2003 Table 2 LedgerRef TransRe...more >>

Error 16888 what is that ?
Posted by Daniel Big at 1/14/2004 12:11:16 AM
SQL Web Assistant: Source code page is not supported on the system. Ensure @charset and @codepage language files are installed on your system how can I solve it thx...more >>

Error Capture in Procedure?
Posted by Greg C at 1/14/2004 12:03:19 AM
Is there anyway to capture and manage errors in a procedure so it can = proceed? TIA! --=20 Greg C...more >>


DevelopmentNow Blog