Viewing 15 posts - 451 through 465 (of 595 total)
No problem, let us know if we can help any further...
Jay
April 28, 2003 at 3:04 pm
quote:
...all the leading zeros for all data stored for patientid so 001155 became 1155, this was directly in SQL not ASP....
April 28, 2003 at 2:48 pm
Could you provide a sample patient id that does work, a sample one that doesn't and the exact code that executes doQuery() prcoedure. There has to be something in...
April 28, 2003 at 2:12 pm
Go into Query Analyzer. From Enterprise Manager, click on Tools --> SQL Server Query Analyzer. Then type in:
sp_help patient
Post the results...
April 28, 2003 at 12:36 pm
The stripping of the leading zeros actually has nothing to do with whether the field is char or nvarchar. It must have something to do with some implicit or...
April 28, 2003 at 12:09 pm
Could you post some sample code that is causing the errors, as well as the DDL of the table in question? It will help to determine the problem.
April 28, 2003 at 11:23 am
Are you consolidating 2 SQL Server databases?
You can find the total length of the record by executing:
SELECT [PrimaryKeyField], (LEN([Field1]) + LEN([Field2]) ... all fields) AS "DATA_LEN" FROM [TableName]
optionally putting in...
April 28, 2003 at 8:05 am
ADO is returning the text showing recordcount return as a recordset. Put SET NOCOUNT ON in your proc.
April 25, 2003 at 1:34 pm
First, make sure all statistics are updated. Second, try this instead:
select count(*) from uu_resume_ses_dummy_dummy
where not exists
(select * from iis_uu_diario_resume where substring(col018_dominio,1,30)
= substring(uu_resume_ses_dummy_dummy.dominio,1,30))
and see if it makes any...
April 25, 2003 at 11:48 am
quote:
Here is the error I get:"The object you entered is not a valid recordset Property"
Run Time 7965
April 25, 2003 at 11:31 am
quote:
...insert into statements throughout my program and SP would now need to be recoded...
AFAIK,...
April 21, 2003 at 7:33 am
Unless you state what it is you are trying to do with your SQL, it's tough to point you in the right direction. Darren was right on with his...
April 11, 2003 at 11:33 am
Since severity level 25 is the highest severity level, and your server does not crash upon this exception being thrown by SQL Server, I would hazard a guess that a...
April 11, 2003 at 7:02 am
quote:
...I'm also still considering just using an Access database as I certainly don't want my small application to be a significant factor...
April 10, 2003 at 2:01 pm
quote:
...you woul have to really come up with an odd way to test thou)....
Well, I...
April 9, 2003 at 7:28 am
Viewing 15 posts - 451 through 465 (of 595 total)