Re: Query to Start and Connect Databse on another computer
Thanks Chris/Nick,Its night time here. Even though I've been doing pretty much the same as suggested, but I would do a fresh re-try in the morning and get back. As chris been successful in starting a...
View ArticleRe: Copy table from different database
If the purpose is to keep the tables in sync there are three options to achieve this BCP- bcp out from source and bcp in to the target PROXY- proxy tables (similar to tables accessed via linkserver in...
View ArticleRe: Copy table from different database
Show us the code. There should be no problem executing CREATE SERVER inside a SQL Anywhere web service (CREATE SERVICE). If you are talking about a web service running outside SQL Anywhere, perhaps you...
View ArticleRe: Copy table from different database
The application is WPF, that connects to a MS Web Service running on IIS. All the connection strings are defined in the Web Service that queries the Sybase DB. I am quite sure we could get this working...
View ArticleRe: Copy table from different database
Hi Avinash There is no need to sync the tables - here is the scenario.. Customers that use our software have a DB for each of their customers. When they get a new customer a default DB is created with...
View ArticleRe: Query to Start and Connect Databse on another computer
Hi Chris/Nick, Good news.. it worked. As chris told me he was successful in starting a DB available through UNC, it gave me confidence of pushing it a little further. In my case, what I feel... dbisql...
View ArticleRe: Copy table from different database
Hi Dave In ASE we have model database that is useful as template database to create a new database from.We can customize it beyond what SAP/Sybase provides. Not sure about ASA though. In either case...
View ArticleRe: Copy table from different database
Avanash We have tables that hold the templates for all new Databases, so we can generally have those up and running in under 60 seconds. It's when a customers new customer has a requirement that is...
View ArticleRe: Copy table from different database
Ah now I got it. Very special requirement I must say, Model/template + plus something more governed in a dynamic way. Cool. Good luck. And let us know what path/solution you adopted finally ! Avinash
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 ArticleRe: Code Coverage tool for SQL Anywhere
Hi, SQL Anywhere provide debugger to debug SQL stored procedures, triggers, event handlers, and user-defined functions you create. Simply start SQL Anywhere SQL Central connect to a database server,...
View ArticleRe: Code Coverage tool for SQL Anywhere
Hi L, I think you request is best satisfied using the SQL Anywhere Profiler tool. In SQLAny 17, you can start it from the Tools drop-down in the SQL Anywhere plug-in of SQL Central. In previous...
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 ArticleRe: SELECT when one column might be NULL
Hi Edgard, You can use ansinull option.When you set 'off' to the option, an equality (=) comparison of two NULL values yields true.However, I can't recommend this option.This is a risky option. You...
View ArticleRe: SELECT when one column might be NULL
CREATE TABLE TransactionRows ( ArticleId INTEGER, LotNumber INTEGER, LineId INTEGER, Qty INTEGER ); INSERT TransactionRows VALUES ( 1, NULL, 5, 55 ) INSERT TransactionRows VALUES ( 1,...
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 ArticleRe: Mobilink ASA remote database synchronizing with two consolidated database...
http://dcx.sap.com/index.html#sqla170/en/html/8156b9926ce21014a6ad9437b2635963.html http://dcx.sap.com/index.html#sqla170/en/html/81b918596ce210148751d17f613010b8.html...
View ArticleRe: SELECT when one column might be NULL
Without further information I think the shortest form besides Koichi's ansinull approach would be: SELECT T.LineId,T.Qty FROM TransactionRows AS T WHERE T.ArticleId = @ArticleId AND (T.LotNumber...
View ArticleRe: Mobilink ASA remote database synchronizing with two consolidated database...
Hi Mirco, Thanks for your answer, I review the links you sent me. Let me explain with more detail, I already have a hierarchical scenario but with MySQL, so we have up to four level in hierarchy, all...
View ArticleRe: SELECT when one column might be NULL
When using SQL Anywhere 12 or above, you can use the standard IS NOT DISTINCT FROM predicate to handle NULL values as "equal" within comparisons without having to add OR clauses or find an...
View Article