Remote ODBC connection to SAP SQL Anywhere 17
Hi everyone. It is my first post here and my question is: could anyone give me an example of working connection string to connect to SQL Anywhere 17 DB using ODBCwithout DSN? I have already tried...
View ArticleWhat are the ODBC Compliance levels for SA 16 and 17
I was asked for for whether SQL Anywhere was compliant with ODBC 3.0 - but I cant find anything about ODBC Compliance documentation. Can anyone tell me where I can find ODBC compliance statements for...
View ArticleConnect remotely to ultralite - connection string
Hi everyone, Is there possible to connect to Ultralite/Mobilink DB remotely? It seems that both ADO.NET and ODBC connection strings simply ignore "Host", "Links" and "Port" parameters....
View ArticleSAP SQL Anywhere Studio 9
Hi Expert!Product SAP SQL Anywhere Studio 9 is SAP SQL ANYWHERE, EDGE EDITION is it right?Please advice at me!Thanks you
View ArticleType names for syscolumn table in UltraLite
Good morning everyone, Does anyone know type names that correspond "domain" column in syscolumn (I believe that 2 is int, but would like to know more)?
View ArticleJDBC Connection to SQLAnywhere 11.0.1
I'm working on extracting information from a SQLAnywhere 11.0.1 database to migrate them to a more recent solution. However, I'm running into problems getting a JDBC connection to work. I've found...
View ArticleSQLext.h showing errors
Facing a issue in sqlext under windows sdk 8.1 using visual studio 2015, I had SQL Anywhere related headers in my projects but while compiling the project following error occurs, Please help.........
View ArticleCopy table from different database
Hi If I want to copy an existing table in the same DB I would use something like this INSERT MyTable_Backup ON EXISTING UPDATE WITH AUTO NAME SELECT * FROM MyTable Assuming I can lookup the name of...
View ArticleQuery to Start and Connect Databse on another computer
Hi, I am trying to start a database on a network location giving path like \\machine-name\mydb\sample.db . START DATABASE sql is not able to start a DB present on another machine or network share. How...
View ArticleCode Coverage tool for SQL Anywhere
Hi,is anyone aware about Code Coverage tool for SQL Anywhere. E.g. to track which lines of code within stored procedure,functions, and triggers that have been tested by an application/test scripts? Or,...
View ArticleSELECT when one column might be NULL
Hi, Inside of a stored procedure I'm doing the following SELECT T.LineId,T.QtyFROM TransactionRows AS TWHERE T.ArticleId = @ArticleId AND T.LotNumber = @LotNumber; @ArticleId contains the "article...
View ArticleMobilink ASA remote database synchronizing with two consolidated database...
Hi Community, Is there a way to have a Mobilink ASA remote database synchronizing with two consolidated databases (MySQL)? I have an scenario in which we need to synchronize an ASA remote database,...
View ArticleSQ REPORTS
Hi all,I'm trying to create a new field that will be calculated sum totals from table FMIOI . please find attached script: clear : sum_order . select sum(fkktr)from fmioi into sum_orderwhere WRTTP =...
View ArticleConnecting to SQL Anywhere DB without DSN
Hello, allI need to connect to multiple SQL Anywhere databases without creating DSN for all of them. The client is Win32 PB Classic. THe application is connected to the main DB, which contains a table...
View ArticleAll sales transactions query need to add the inventory
Hello, We have a query that allows us to select a range of dates for the sales transactions that have been processed during that period of time. However, we would like to add to this query the total...
View ArticleSQL Anywhere and DisableBind=1, An Open Manhole Cover?
I posted this in the PowerBuilder Forum and posting it here to get more information from the SQL Anywhere Community and also to expose an issue which might unknowingly be affecting others. I have been...
View ArticleNewbie: No "dbserv" in SQL Anywhere 17 Installation
Hello all, First, thank you in advance for your help. I recently purchased SAP SQL Anywhere 17 and I'm having trouble. I should mention that I am not a database expert or programmer. I only need to...
View ArticleEvaluate date field, use only if not null/empty in query.
We have this query: select LastReqTime,BlockedOn,UncommitOpsFROM sa_conn_info()WHERE LastReqTime < DATEADD(mi,-60,GETDATE()) AND BlockedON > 0 AND UncommitOps = 0 Normal data example would be...
View ArticleConnection pooling issues
Hello, allI have a completely unclear picture regarding connection polling in our .NET service, which connects to SQL anywhere 16 through OdbcConnection class (c#). First of all, the service is getting...
View ArticleShow all returns from a query without manually sort, also count returns by value
I have this code: select LastReqTime,BlockedOn,UncommitOpsfrom sa_conn_info()WHERE LastReqTime < DATEADD(mi,-60,GETDATE()) AND BlockedOn > 0 AND UncommitOps = 0 An example of the return is: Is...
View Article