Re: MobiLink is deleting my data
I was wrong. Delete "x" and then insert "X" will be an insert and delete, even on a case insensitive database. However, the following statements you made confuses me :- insert fails with PK...
View ArticleRe: MobiLink is deleting my data
Reg, Turns out we have a handle_error procedure that ignores PK not unique among other things, then keeps going (returns 1000). Long story, but we'd be at a standstill if we didn't do this. Then we...
View ArticleRe: query error message is missing. Can I reactivate it?
Hello,You have posted your question to SAP SQL Anywhere product space.What is the name of the product of your screenshot please?Thank you
View ArticleRe: query error message is missing. Can I reactivate it?
Hi, what do you mean exactly? Form=0 Item=1 Variable=5 SAP 9.10.210 PL:11 64bit
View ArticleRe: query error message is missing. Can I reactivate it?
http://scn.sap.com/community/business-one There is a dedicated space for SAP Business One. Can you post your question in it please?
View ArticleRe: MobiLink is deleting my data
Interesting problem, and I’m surprised that it hasn’t come up before anytime in the last 15 years. We’re only concerned about the issue if the case sensitivity of the remote database and consolidated...
View ArticleRe: Upgrade UDB schema using SQL file
Generally, the SQL file supplied to ALTER DATABASE SCHEMA FROM FILE would represent the schema that you want the remote to use. Is there a reason that the publication and sync profile need to be...
View ArticleRe: Upgrade UDB schema using SQL file
We figured it out. ALTER would recreate the schema of UDB. But we thought, its modifies existing Schema. So, here in SQL file, drop publication statement doesn't work as it alters whole publications....
View ArticleRe: Upgrade UDB schema using SQL file
You can query the syspublication table. The script version is defined in the MobiLink system tables on the consolidated database.
View ArticleRe: MobiLink is deleting my data
Reg, Thanks very much for the thorough answer. The client-side ideas aren't viable for us because they'll result in a missing row in between sync cycles, and also because we don't have enough control...
View ArticleRe: MobiLink is deleting my data
Your wrinkle sounds fine. While you're coding things in a handle_upload event, now is the perfect time to also review your handle_error procedure. Since you have access to the upload stream in the...
View ArticleRe: unicode not working in nvarchar column
The database is old, I was hoping I wouldn't have to unload/reload the whole thing. I thought I could just convert the few columns I need to, to nvarchar to support UTF-8, do char columns need to be...
View ArticleRe: unicode not working in nvarchar column
Alex,Yes, that was the case. I have tested with:1. Default 1252LATIN1 for Char and UTF8BIN for NCHARNone of char, nchar, varchar, nvarchar properly saves ē and replaces it with substitution character...
View ArticleRe: unicode not working in nvarchar column
Thanks Jinwoo, it takes me a couple of hours to unload/reload, do you know if there is any special way to make sure i get the right charset conversion on the reload. (I haven't researched yet, I just...
View ArticleRe: unicode not working in nvarchar column
Hi Alex,>> I need to, to nvarchar to support UTF-8, do char columns need to be converted to UTF-8 as well? Not necessarily - but it depends on how you are planning to insert the data into the...
View ArticleRe: unicode not working in nvarchar column
Hi Jeff,We are using the sqlanywhere php driver, I have done some tests, on both an nvarchar column in the existing db, and in a new db as per Jinwoo's suggestion. $conn =...
View ArticleRe: Changing the Collation without rebuilding the DB
Hi Ramendra, I think that this problem be difficult to resolve. When you have an official account for support, you should ask this question using the account. (You must present the repro step of...
View ArticleRe: unicode not working in nvarchar column
Hi Alex, Yes, that is using prepared statements - this should work against an nvarchar column. PHP doesn't natively format data using UTF-8. You can find lots of references for this elsewhere. Try...
View ArticleRe: unicode not working in nvarchar column
I played around with it some more, it turns out if i indicate that the value i am binding is a blob, it doesn't re-encode the string when i pass it to the database. I just thought i would post that...
View Article