Tagged Questions

3
votes
3answers
132 views

Is it possible to create indices with expression engine expressions using SQL?

We are trying to create an index on CDX and ADT tables that use the Advantage expression engine. The code we tried so far looks like this: CREATE INDEX IDX1 ON TBL1 ...
2
votes
2answers
332 views

Sql trigger to save changes to an audit trail table

I started on an ADS sql table trigger to store changes done on one particular table. Here is the idea: //-------- sql trigger to store changes on patients table to auditLog Table ...
2
votes
2answers
345 views

how can I add 100 years to a date in Advantage Database

I have a bunch of records in my Advantage Database that ended up with the year 1909, rather than 2009. How can run an update statement that will add 100 years to each of these dates? (Advantage is ...
1
vote
1answer
58 views

What is the proper way to handle this error in my stored procedure?

From PHP, I am calling a SQL stored procedure. The stored procedure checks the database, and either inserts the data if it's new, or modifies data that already exists. I'm getting an error that one ...
1
vote
1answer
57 views

Spliting a String intro rows

I have a table with a field consisting of multiple strings seperated by a '+'. Each part of the string has a lenght of either 2 or 3 chars. Example: 'ab+cde+fg'. Each row has 1 to 3 parts (so some ...
1
vote
2answers
94 views

Accessing Advantage Management Utility values for feedback

In our report generation application, there's some pretty hefty queries that take a considerable amount of time to run. User feedback up until this point has been basically zip while the server chugs ...
1
vote
3answers
329 views

Paging in Advantage Database

i'm creating a web app that's running on an Advantage Database server, not my personal weapon of choice but that's what the company uses. I have a couple of big lists that the end-users need to be ...
0
votes
2answers
88 views

SQL syntax, Create Table, Advantage Database

I have to create a table in the Advantage Database Architect - the SQL code that I have used before in an older project is (simplified version) CREATE TABLE IF NOT EXISTS "SomacountData" ( "Index" ...
0
votes
1answer
87 views

Advantage SQL INSERT error

I'm trying to insert a row in a table on an Advantage SQL Server and I keep getting this error: Error 7200: AQE Error: State = S0000; NativeError = 2124; [Extended Systems][Advantage SQL ...
0
votes
1answer
133 views

Removing records with the same ID in selected dataset (ADS)

I'm trying to query a clinic practice management database to return a dataset that matches any in a list of values (icd-9 codes) for four different fields, but then only return the id number for the ...
0
votes
1answer
425 views

Is this a bug with Advantage Database?

I am running into what seems to me to be a bug in the Advantage Database PHP Extension (I know, I know...). I've reported it as a bug, but still haven't heard anything back, so I thought I'd run it by ...
0
votes
6answers
1k views

Update multiple values in a single statement

I have a master / detail table and want to update some summary values in the master table against the detail table. I know I can update them like this: update MasterTbl set TotalX = (select sum(X) ...