Advantage Database Server is an embedded relational database management system from Sybase.

learn more… | top users | synonyms

1
vote
0answers
26 views

Error 6624 : A Winsock virtual circuit was reset remotely

We just installed a new Advantage Server 11.1 on Linux (before used on netware) When I run a query with the SPACE command from a SQL openquery, I got this error: Error 6624: A Winsock virtual ...
2
votes
0answers
47 views

Sybase Advantage Database Server and DATEPART

I'm looking to query a Sybase Advantage Database Server using DATEPART. I get an error message that states the following "Scalar function not found: datepart". Is there another function that has ...
5
votes
2answers
218 views

SQL SELECT from Local Client Connection Retrieving Server Data With Path

We've been using Advantage Database Server 9.1 (Netware) with DBF/CDX index files successfully for several years, via the Delphi TDataSet descendant components. (This is legacy data required for ...
3
votes
1answer
108 views

many-to-one formula has table name appended to SQL keyword

I am working with a legacy database and am trying to convert a char to an int for a many-to-one mapping. I know this isn't a great idea but I'm stuck with the schema as it is. I have tried to do this ...
1
vote
2answers
347 views

How to convert columns data in comma separated list

I am in little strange situation. It is a third party application which from front end doesn't allow user procedures or udf/scalar functions to be called. Only option is to write SQL and below is ...
1
vote
2answers
57 views

Advantage Error 6082

I'm creating a windows service. This service has to read data from an Advantage Database once a day. I copied the Advantage database on my computer and it works fine but when I try the service on the ...
2
votes
1answer
95 views

Advantage Database Error 5175

I'm trying to read data from an Advantage Database with Advantage .Net Data Provider. When I execute my app, I have the following error : "Error 5175 the index was created with a different ...
2
votes
1answer
131 views

Advantage Database Index Collation Sequence

I am converting a Delphi program from the BDE to Advantage Database. On weekends I work on a Win 7 machine using Delphi XE. During the week I work on a Win XP machine using Delphi 7. Advantage ...
0
votes
0answers
82 views

Access violation on moving data into a table field

I am running XE3 using Advantage 11.1 database components on a 32 bit Windows 7 machine. This application was updated from Advantage 9.x to 11.1. In the OnCalcFields event, the following code is ...
0
votes
1answer
34 views

Using Visual Objects RDD and ADS 11 on encryption using supplied AX_SetPassword method

This code does not work: METHOD AX_SetPassword( szEncodeKey AS STRING ) AS VOID PASCAL CLASS ADSDataServer // Set password for record encryption DbInfo( DBI_AXS_SET_PASSWORD, String2Psz( ...
2
votes
1answer
135 views

How do I keep Advantage Database connections from timing out?

I have a Windows Service that works with an advantage database and occasionally makes some http calls. On rare occasions these calls can be very long. To the tune that my database connection times ...
2
votes
1answer
125 views

Error 5018 handle not recognized by Advantage in Delphi Project

I have a delphi project that somehow has become corrupted. I upgraded to Advantage 11.1 components (using XE) and now I'm getting the following error message when opening the project: acctTbl: ...
0
votes
3answers
64 views

In an EXISTS can my JOIN ON use a value from the original select

I have an order system. Users with can be attached to different orders as a type of different user. They can download documents associated with an order. Documents are only given to certain types ...
1
vote
1answer
111 views

Converting Date Format in Advantage SQL

I have a simple problem in Advantage Database SQL. I have dates in the format M/D/YYYY and want to convert them MM/DD/YYYY. Normally in SQL Server I would just use a convert(varchar(20), field, 101) ...
1
vote
2answers
119 views

Advantage Database Server .net provider tables not showing

I try to connect to an advantage database server via .net data provider but i cannot browse through the tables, views, stored procedures (VS2010). Although i cannot see the tables, i can query via a ...
0
votes
3answers
125 views

Creating index in a data dictionary with Clipper

I am converting existing Clipper code from free tables to data dictionary. I can read and write to tables but I can't create an index. Here is the code : connSaisie := ...
1
vote
1answer
199 views

Advantage Database Server 11 connection string for Code First

I am having problem with ADS11 connection string for code first, I've tried many way but I couldn't make it. Anybody know, please advice me. Here is my working environment. Server : Advantage ...
0
votes
0answers
148 views

What would cause SetKey to not change my Table State?

I have a table that I have set up as a pointer to be used by another form. There is a procedure on this form where using a For Loop I create new records in the table if the GUID does not already ...
1
vote
2answers
189 views

Check health of an Advantage Database connection

I keep a pool of Advantage TAdsConnection objects and hand them out as requested. Occasionally I get one passed out that results in a 6610 error, I'm assuming because it sat idle and the connection ...
1
vote
1answer
54 views

Why is there no NVarCiChar field type in ADS?

I was wondering why there is no case-insensitive Unicode character field type in ADS? While you can set the collation of indexes to NVarChar fields to be case-insensitive, a simple query using WHERE ...
0
votes
1answer
107 views

Asp.net MVC3, open connection

I open Database connection in my controller and pass the opened connection to my Model for using that connection. but since 2nd time calling to the controller(Ajax), it return an error message that ...
1
vote
2answers
188 views

Advantage Table File in use error. How can I resolve?

I'm having trouble getting a certain table to open up in more then one instance of my program. Whats happening is I'm trying to allow users to open up and replace a current table(part of a data ...
2
votes
1answer
34 views

How to check if logins are enabled?

So I can call sp_ModifyDatabase( 'LOGINS_DISABLED','False' ) to modify the state of LOGINS_DISABLED, but I can't find how you check the current state of the setting. Anyone know where that is?
0
votes
1answer
425 views

How to connect to sybase advantage db in java

Firstly I would like to say that I'm new to Java programming and Sybase. I have a problem with connection to Sybase database. To establish the connection I have done: Installation of jdbc driver ...
2
votes
2answers
101 views

How to lock record and update record that locked by myself. (Asp.Net and ADS)

I want to lock a record to prevent nobody can update while I using. but after lock record, even myself can not update the locked record :( Do I have to unlock before I update the record? or is ...
1
vote
1answer
43 views

Lambda expression Contain () method does not work in Advantage Database 9?

I am using Sybase Advantage Database 9.1 and I try to use Lambda expression Contain method to retrieve data ,but it does not work. var order = order.Where(x => x.name == "James"); it return 10 ...
2
votes
1answer
308 views

Using xbasej with NTX indexes

I am trying to use DBF files from Java for newer utilities that interact with a large older system. I am able to access, read, write, update using the Java ODBC bridge but this does not update the NTX ...
0
votes
1answer
55 views

Returning Records with Distinct or Unique data over multiple fields

What I am trying to accomplish Select up to two records from table Visit that contain one of a number of codes in fields Test1-Test8 Within the last 2 years. But the two records cannot have any ...
3
votes
1answer
93 views

sp_RestoreDatabase and ADSSYS password

To restore a database using the procedure SP_RESTOREDATABASE or AdsBackup utility, you need to provide the ADSSYS password as a parameter. We have secured our database using encryption and access is ...
3
votes
2answers
98 views

ArgumentException: Unrecognized property 'user id' in connection string

I'm using: Advantage Database Server 10 Advantage.Data.Provider.dll (v.9.10.2.9) Everything works pretty stable on most of workstations, but today one of our new customers had reported that he ...
0
votes
1answer
143 views

Advantage Database 8.1 SQL IN clause

Using Advantage Database Server 8.1 I am having trouble executing a successful query. I am trying to do the following SELECT * FROM Persons WHERE LastName IN ('Hansen','Pettersen') To check for ...
1
vote
2answers
668 views

Asp.net c#, Rollback or Commit after multiple process

I want to use Rollback() or commit() functions after multiple process. There is no error, but it does not commit() to update DB. Here is my example code, public void startTransaction(){ ...
2
votes
1answer
79 views

Advantage Database: Full Text Search not returning results that start with the search string

I have a problem with a Full Text Search index. I have a table with a character field size 30. I have created a full text search index on this field in order to have fast search operations on this ...
2
votes
1answer
115 views

Advantage Database 9.1, Create Table with PK

create table WEBLOG ( ORDERNO CHAR(9) NOT NULL, USERNAME CHAR(50) NOT NULL, ACTION CHAR(255) NOT NULL, NOTE MEMO, UPDATEDATE DATE NOT NULL, UPDATETIME TIME NOT NULL, IP CHAR(15), PK CHAR(36) NOT NULL, ...
2
votes
1answer
244 views

Get the progress of an Advantage Database query in Delphi

I've searched and searched, but can't find out how to get the progress of a query in Delphi. I've found some information for the Advantage .NET data provider but could use some help with Delphi.
2
votes
1answer
106 views

Backing up and restoring only certain tables in an Advantage Database

When making a backup in Advantage, we want to only backup some tables that hold some structural data. These tables may change in a database update, but most of the tables will not. The other tables ...
0
votes
1answer
316 views

Using Foxpro tables and Advantage Data Architect

I mainly want to use advantage to be able to access Fox tables larger than 2 gig. My programs are simple and are run from the command window. I have Adv Data Archetect installed and have the ODBC ...
1
vote
1answer
302 views

SQL optimization on the following 7 update queries. same table. Combine into one?

The following queries update the same table like 7 times.. I would appreciate your help on how I might optimize this by putting it into one query so it passes through the table only once instead of 7 ...
0
votes
0answers
530 views

Advantage .NET Data Provider - Error 5185

We are receiving the error below in only one environment. It's Windows Server 2003 with multiple users connected via RDP with a single login. The connection is being made by a windows service. We ...
1
vote
1answer
36 views

What is the scope of event notification subscriptions?

In advantage, when I subscribe to an event (via sp_CreateEvent) at what level is that event created? Per connection? Per Client? Database wide? The application is that I have a long running ...
1
vote
1answer
216 views

Create aggregate function for median

I need to create an aggregate function in Advantage-Database to calculate the median value. SELECT group_field, median(value_field) FROM table_name GROUP BY group_field Seems the solutions I am ...
0
votes
1answer
192 views

Performance issues Advantage-Database-Server 10.1 - windows 7 client - virtual windows server 2008

I have some performance issues with ADS 10.1 after changing the network. Let me explain: Old configuration of the network: Server - Server2003R2 - Processor: Intel XEON 5130, 2 GHZ - 4 GB RAM ...
0
votes
1answer
119 views

No relationships when generating Entities from Advantage database

I am trying to add tables from an existing Advantage Database (recently upgraded from v8 to v10) to a .NET project via the Entity Framework. However, no matter what I do, the relationships between ...
0
votes
1answer
398 views

Install Issues on Delphi XE2 (Advantage Delphi Components)

Installed Advantage Delphi Components on Delphi XE2 (Windows 7 Pro). We're getting error when opening Delphi XE2 showing the above dialog box. Tried compiling the adsDXE2dstudio package but ...
0
votes
2answers
137 views

Advatage Database9, Append Text to Memo Field?

I'm using Advantage Database Server 9.10, and I want to append a text to Memo field. I tried this way, UPDATE myTable SET memo = cast(memo as SQL_VARCHAR(max)) + cast(' Appended ...
2
votes
0answers
44 views

Missing Indexes from ADS 9.1 Dictionary

On two occasions, a client running ADS 9.1, encountered missing indexes in the ADD after files were accidentally accessed through the OS. The result was an ADD that had missing indexes that needed to ...
4
votes
1answer
348 views

Cannot create datasource, "Column 'TABLE_CAT' does not belong to table Tables

I am trying to add a datasource to my visual studio project, however it always gives me an error: Column 'TABLE_CAT' does not belong to table Tables. I get the same error in both vs2005 and ...
0
votes
1answer
107 views

trigger exe advantage database server

How would I create a trigger to execute a .exe file on UPDATE or INSERT for a table in Advatange database server? I am new to ADS and I can't really find much documentation on what I want. The ...
1
vote
1answer
80 views

AdsConnection not closed?

Consider the following code: private static void GetData<TConnection, TCommand>( string connectionString, DataTable dataFromDbf, string commandText ) where TConnection : IDbConnection where ...
0
votes
1answer
39 views

Can I temporarily run ADS on both the old server and a new replacement server?

I am running advantage database server version 8.10.0.38 on a windows 2000 server. I want to replace the server with a new windows 2008 R2 server and migrate the ADS and application to the new ...

1 2 3 4