Re: Executing Store Procedure random timeouts
Ok. When I execute a query using the Java driver, I do get the column names back. When I execute that same query as a stored procedure, I get the error. My guess is that metadata is not coming back...
View ArticleRe: Executing Store Procedure random timeouts
I suspect the former. I think variable output SPs are new in 11 so there may be a bug. A support incident would be best.
View ArticleRe: Executing Store Procedure random timeouts
helloi,m oracle Developeri have problem in ADS 10how can read Data from Oracle11G how can connect itfile data in ADS = .ADDthank you
View ArticleRe: Executing Store Procedure random timeouts
Edgar, We have found that if you get an error in the query, you will get a result set that is marked as opened, the column names exist but the EOF marker is missing. That was causing us to loop...
View ArticleStore Procedures do not delete temp tables created in that procedure
We have noticed that when we use a temp table in a stored procedure and then execute the procedure, the temp table remains. So if we execute the procedure again, it will fail with a table already...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
Hi Dave, That would be expected. The temp table will continue to be available until it is dropped or the connection is closed. This behavior lets a Stored Procedure create and populate a temp table...
View ArticleRe: ADS v11.1 and Windows server2012 R2 and Hyper-V
Generally speaking it should work though I am not aware of any specific testing with this particular setup. (Most testing I believe is done with VMWare). I have seen issues in the past where ADS ear...
View ArticleConcatenated fields
We currently have indexed fields that are concatenated fields with up three values. We currently are able to parse the fields with Left, Right and Mid commands using native FoxPro with little or no...
View ArticleRe: Concatenated fields
I am assuming you are using SQL with a WHERE clause specifying left,mid, right or a filter of some sort? You will need to create indexes to match the where clause / filter. Typically ADS optimizes the...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
Edgar, We tried your first example to do a create of the temporary table but the following Execute Immediate throws an error when it is changed to an Insert Into statement. The records still seem to...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
Not sure. A quick test didn't reproduce the issue. Can you tweak the following to show me the error? try create table #temp (id integer);catch all delete from #temp;end try; execute immediate...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
Below is the stored procedure we are trying to create. Below that is the ISAM error we get when doing the insert into the temporary table. It is very similar to your example but the select is coming...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
Hmm...This works for me. Just changed the base table in the select statement to one I had already. I was running this on 11.10.0.20 (and upgraded to 11.10.0.22 just in case it introduced something)...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
We found the issue. It has to do with null values in the fields of the table being selected from that are to be inserted into the temporary table. Even though the temporary table is created to accept...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
I'm glad you were able to work it out, but that again is odd. What version of ADS? Also, what table type is the base table? Just tested with 11.10.0.22 and ADT base table and it works ok. Maybe...
View ArticleRe: Store Procedures do not delete temp tables created in that procedure
We are using ADS 11.10.0.22 as well. The base table, however, is a Foxpro table. We suspect that there is an issue in the translator for this value. We should use the work around for now, unless you...
View ArticleRe: Advanatage Database Server v8.10
Advantage works just fine in a virtualized environment. We use virtual machines for development and testing on a regular basis.
View ArticleCollation Errors for Installation in Australia
We are getting a collation error when we try to use our application on a Windows 7 OS on a computer in Australia. We have over 1,000 users of our product in North America. 95% of them run local...
View Article