Re: Proxy table and autoincrement and SELECT@@IDENTITY
This statement would do it:SELECT srvnameFROM SYS.SYSSERVER JOIN SYS.SYSTABLE ON SYS.SYSSERVER.srvid = SYS.SYSTABLE.srvidWHERE SYS.SYSTABLE.table_name = 'your_table_name'; srvname would be the nme of...
View ArticleSQL Anywhere Licenses v9 with v16 and v16 with v9
Have a customer running Sybase SQL Anywhere v9.They currently have nine networked client licenses.They need an additional seven.The current SAP license offering is v16 networked client licenses. Will...
View ArticleData synchronization between databases
Hi, This week one of my team accidentally damaged multiple records in one of the production databases, I have a backup of the database prior to what happened. I need to copy the information in a few...
View ArticleRe: Data synchronization between databases
Hello Edgard, If you have any PowerBuilder in-house the Data Pipeline object might help. Otherwise I'd have a look at Squirrel SQL. I know that can communicate between two databases simultaneously but...
View ArticleRe: SQL Anywhere Licenses v9 with v16 and v16 with v9
Hi George, I believe that the client needs to buy or upgrade (if this is possible) the available licenses to the last version to be legal... If your question is about using asa 9 client to connect in a...
View ArticleRe: Data synchronization between databases
One possible solution would be to create a remote table (see CREATE SERVER, CREATE EXISTING TABLE) in a running copy of the backup database. Then use "INSERT ... ON EXISTING SKIP SELECT ..." (or the...
View ArticleRe: SQL Anywhere Licenses v9 with v16 and v16 with v9
Sybase licences used to be "downgradeable", so we often sold licences for a current SQLA version to customers using an older release. But you should check with your sales representative, if that's...
View ArticleRe: SQL Anywhere Licenses v9 with v16 and v16 with v9
You can purchase licenses for newer versions of SQL Anywhere and apply them to older versions of the server. For older licenses, it is a little more complicated. If you bought those licenses through...
View ArticleAccent characters processed as plain characters!
Hi Everyone, I am running in to an issue where my ASA database is processing accent chars (like ù, ú, û, ü,) as plain chars (like u). I have a row in a table that looks...
View ArticleRe: Accent characters processed as plain characters!
Hi Tejo,Your database must be created with a collation in which accented and unaccented versions of the same character to be considered different. There are options to do this in the create database...
View ArticleA query to create sales information for a specific date.
Hi, Please look at attached image, you will see how this query look like. This query will generate all sales from 1/1/2014 until today. I would like to see if the query can create the sales report for...
View ArticleRe: Accent characters processed as plain characters!
Hi Jason, Thank you for your reply. We currently use the supplied default Collation "1252LATIN1" and the Character Set "cp1252" for Language "us_english". This Character Set has all the characters we...
View ArticleRe: Accent characters processed as plain characters!
Something like this should work for you: dbinit -a -z UCA -ze windows-1252 mydb.db -a : treat accented characters as different-z : use the UCA collation for sorting-ze: the encoding for all CHAR...
View ArticleRe: Accent characters processed as plain characters!
Hi Jason, Thanks for the recommendation. We are having to use an older version of the ASA database - 8.0.2.4272 unfortunately!Looks like the above switches are for the newer version and not available...
View ArticleRe: Accent characters processed as plain characters!
With version 8.0.2 your only option to get accented characters to be treated as unique would be to use the dbcollat utility and create your own custom collation based on 1252.You can find info. in the...
View ArticleRe: Accent characters processed as plain characters!
Jason, Thanks a lot for your helpful pointers as well as insights. Looks like the "-a" switch was thoughtfully added in to the newer version to cover such situations. Clearly emphasizing an evolution...
View ArticleRe: A query to create sales information for a specific date.
Hi Bill, The query attached looks like it is selecting results based on the salesorder name starting with the current year. As is written, it won't be able to filter out today. If you want to exclude...
View ArticleRe: Deleting a log file when using mirror server.
Hi Aron, Deleting the log file between server starts is not recommended in a mirrored or non-mirrored setup. The log file is used for recovery in the event of database failure. Having said that, there...
View ArticleHow to connect to Sybase DB in ABAP?
Hi experts: I need to connect to a sybase database for development,how to connect to it?I know the Ip and name of the sybase DB... Thanks!!
View ArticleRe: How to connect to Sybase DB in ABAP?
What "Sybase" database are you referring to exactly? IQ, ASE, SQL Anywhere or ADS? --Jason
View Article