Quantcast
Channel: SCN : Popular Discussions - SAP SQL Anywhere
Viewing all 1302 articles
Browse latest View live

EBF needed for SQL Anywhere 9

$
0
0

I am using SQL Anywhere 9 and need EBF 9.0.2.3702.  Apparently it is no longer available online.  Would anyone have a copy they could forward to me?

 

Thanks,

Peter


Please stop the CURRENTLY BEING MODERATED delay

$
0
0

After answering a question on the SAP forum for SQL Anywhere, my response was marked CURRENTLY BEING MODERATED.

 

This is not acceptable behavior for the SQL Anywhere developer community.

 

Please cease and desist, and accept all posts immediately.

 

Breck

 

http://dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/90000/8000/900/98954/98954.strip.sunday.gif

 

Sybase SQL anywhere database backup

$
0
0


Dear Expets,

 

I am using BI 4.1 sp1 BOBJ server under sybase SQL anywhere 12 database  and Operating system is Windows 2008 server.

 

I want to take offline and online backup of database , How to take from both command line and from admin console ( please guide me step by step procedure I am first time using SQL aynwhere database).

 

second My SQl server database consist 4 files

1.  BI4_Aduit.db          Size of this file is       1025 MB

2. BI4_Audit.log           Size of this file is       924 MB

3.  BI4_CMS.db          Size of this file is        47 MB

4. BI4_CMS.log          Size of this file is        3.4 GB

 

why BI4_CMS.log  size too much how to reduce the CMS log file size

 

 

Regards

SQL Anywhere on QNX4

$
0
0

I am trying to find out if SQL Anywhere is installed on QNX 6 platform (preferred) or RH Linux (alternate), would this be able to access data running on QNX4 SQL Anywhere System XI ?

Thank you for any input on this subject.

Connect to Sybase SQL Anywhere from a remote location.

$
0
0

BH
Hi, we are running SQL Anywhere 16.  Currently our client computers are connecting through ODBC.  Is there a way to connect to our server from a Remote Location (over the internet)?  If yes, how?

Thanks

Aron

Server crash

$
0
0

Hi.

 

One of our customers DB-servers keeps crashing every 5-6 days or so.

The first 2-3 times there was no message to find.

But yesterday this message appeared in the event viewer:

 

*** ERROR *** Assertion failed: 109505

(12.0.1.3994)[maritech] Memory allocation size too large

 

Server info:

OS: Windows server 2008 R2 SP1 (64 bit)

Ram: 24 GB

 

Service startup-parameters:

-n maritech -x tcpip -gn 40 -ca 0 -ch 14000M -cl 14000M -c 14000M d:\Data\maritech.db

Pagesize: 4K

 

Any thoughts about what could be wrong?

The server has been rock solid for 2-3 years now, but suddenly this starts to happen every week.

 

Thanks in advance,

 

Bjarne Anker

Maritech Systems AS

Norway

Installing Sybase SQL Anywhere license keys after initial installation.

$
0
0

Hi,

I installed Sybase SQL Anywhere 16 before I actually received the valid License Key. So during the installation I've used the license key provided by the instructions.  Afterwards, I've received the purchase license key.  Do i need to reinstall SQL Anywhere all over?  Or can it just continue to function on that license key?  From what i understand, I can not change the license key after the installation was complete.  I would have to completely uninstall and re-install SQL Anywhere 16. Is that correct?

Thanks

Aron

Where's my stuff?

$
0
0

Ordered software from the sap.com store, got an "order in progress" email at 8:55 AM, now it's 2:55 PM, the amount has hit Visa... but where's my stuff?


SAPlogo

SAP Store Customer Information

Order submitted to SAP


Dear Breck Carter,

Thank you for your order, which is under review and will be processed as quickly as possible.

Please note that the transaction will only be completed and the contract concluded once SAP has granted you access to the software and an order confirmation has been e-mailed to you.

Until then, if any issue arises regarding the processing of your order, SAP reserves the right to cancel the transaction and you will be notified accordingly.

Should you have further questions regarding your order, please contact the SAP Store team.

The items in your cart have the following order numbers:

xxx

Thank you for choosing SAP,

Your SAP Store team

This is an automatically-generated email, please do not reply.


Applying license keys?

$
0
0

Quick question for everyone, and just noting that I am new to SQL Anywhere...

 

We have a scenario for SQL Anywhere, which would use an architecture somewhat like this:

 

Consolidated Database (3rd party) <==> MobiLink sync server <==> UltraLite or UltraLiteJ on iOS or Android

 

Noting that the method to apply purchased licenses for SQL Anywhere database and MobiLink is via the Server Licensing Tool (dblic).

 

How are licenses applied for the UltraLite mobile databases...

  1. Do they need to be managed and applied to each mobile database (UltraLite) instance separately, or
  2. Are they managed centrally, and
  3. Which tools are used to manage applying licenses to UltraLite?

 

Thanks in advance for any help you can provide here; I've been reviewing the SQL Anywhere documentation, but can't find an answer.

Problem with REGEXP_SUBSTR

$
0
0

I am having a problem with REGEXP_SUBSTR(). I am trying to extract "captureThis" from the following string:

 

Token1 blah, blah, (Token1 blah Token2 ignoreThis blah) blah, blah Token2 captureThis blah blah'

 

The rules are that it must be preceded by "Token1" followed by arbitrary text, terminated by "Token2". Except that if the same pattern appears in parentheses in the arbitrary text, everthing in parentheses should be ignored.

 

If I run the following REGEXP_SUBSTR() statement, I get a result that correctly ends in "captureThis"

select REGEXP_SUBSTR('Token1 blah, blah, (Token1 blah Token2 ignoreThis blah) blah, blah Token2 captureThis blah blah',
    'Token1\\s+((\\([^\\)]+\\))|(((?!Token2).)+))*\\s+Token2\\s+\\S*' ,
  1,1);

Result: Token1 blah, blah, (Token1 blah Token2 ignoreThis blah) blah, blah Token2 captureThis

 

 

However, if I use a Positive Lookbehind Zero-Width Assertion to filter out the tokens, I get a different result:

select REGEXP_SUBSTR('Token1 blah, blah, (Token1 blah Token2 ignoreThis blah) blah, blah Token2 captureThis blah blah',
'(?<=Token1\\s+((\\([^\\)]+\\))|(((?!Token2).)+))*\\s+Token2\\s+)\\S*'
,  1,1);

 

Result: ignoreThis (I need it to be "captureThis")

 

I also found an interesting result by playing with the fourth parameter, occurrence-number. In the first statement above, occurrence-number 1 is a string ending in "captureThis", and occurrence-number 2 is a string ending in "ignoreThis".

However, in the second statement, with the Lookbehind, the order is reversed. Occurrence-number 1 is "ignoreThis", and occurrence-number 2 is "captureThis".

 

Is there any way to alter the regular expression in the second statement so occurrence-number 1 will be "captureThis"?

 

Thanks,

Eric

Mobilink Profiler : Getting disconnected frequently when connected from two clients

$
0
0

I have Mobilink server running on a remote server and I am running Mobilink Profiler connecting to this server. It mostly works fine when I do that from one client machine. however when I connect from another machine and switch on profiler then frequently both the profiler running in different machines are getting disconnecting, saying that the server return 404 or 406 error code and throws I/O exception. I check the server log and found this.

 

E. 2014-12-04 11:11:00. <72346> (,1) [-10117] Stream Error: ml-session-id changed from eb674c5e-c79d-4d7b-91f6-a63f480e44aa to 9000c45e-ce73-4aba-bb6d-02d7e6137cd9

E. 2014-12-04 11:11:00. <72346> (,1) [-10410] The client failed to send a complete sequence of commands

 

But this also does not happen all the time. Sometimes it happens that both the connection are stable for sometimes unless when I run dbmlsync from one of these client machines and then the sync also fails with the error as this.

 

E. 2014-12-04 18:29:55. An error status was returned: '406'.

E. 2014-12-04 18:29:55. Upload aborted at offset 0000960717

 

and then the profilers running are also disconnected. I am confused. Is there some kind of configuration in Mobilink server about how many https connections it can have at one point in time or something like that which is causing this? Any pointer on this would be of huge help.

 

Regards,

Subhankar

SQLCode - 1: Table '_^_^_22072007....._^_^_' not found

$
0
0

This error occurs when inserting rows into a table which has dependant materialized view in SQLA12 db (see attached image for full details).

 

Any ideas on why this is happening?

This happens on 1 or 2 databases, the rest (90+) is working great.

This is databases which started out as ASA5.5 db's once upon a time.

Otherwise, everything works as it should.

Problem with PHP and SQL Anywhere Connectivity

$
0
0

Hi,


We are trying connect sqlanywhere-16 to PHP 5.4.12 on both IIS and Apache server.

For that we have done below process as per the documentation provided by SQL Anywhere.

  1. We have set the "C:\Program Files\SQL Anywhere 16\Bin32" folder path in environment variable.
  2. Copy "php-5.4.12_sqlanywhere.dll" file from above directory into php extension folder.
  3. Set extension_dir path to "ext" folder in php.ini.
  4. Put "extension=php-5.4.12_sqlanywhere.dll" statement in php.ini
  5. Restart All services "Apache/Mysql".

Still we got error "Unable to load dynamic library "C:/PHP/ext/php-5.4.12_sqlanywhere.dll"-%1 is not a valid Win32 application,

That’s why we could not execute the functions of sql Anywhere Connectivity. We have search most of the forums as well as SAP help sites.

So please guide us for the above issue.

Sql Anywhere v11 with 5 seats

$
0
0

Hello,

I have a peculiar problem. I have SqlAnywhere v11 with 5 seats. I have been using it since 8/10/2009. And recently the machine where we housed everything crashed completely. Now I am stock. And I need to deploy the application with the database. I don't have the software anywhere else. I contacted the vendor Programmer's Paradise (Alias TechXtend). They were able to justify my order number and invoice. But they don't have the product anywhere for me to get. SAP recommended that I raise the issue here. Is there any help out there?

Placide.

Mobilink 16 crashes after mixing up uploaded tables

$
0
0

Hello, all

I am getting the strangest error in my Mobilink setup

I am posting an extract of the log with -v+ option, so you could see it:

When the mobilink server starts up, it shows the correct scripts for table t027w_price_codes_web.

But when the client connects it shows something entirely different....

Shortly after, the whole Mobilink service crashes.

//----------------------------------------------------

  1. I. 2015-01-25 13:33:54. <13> download_cursor t027w_price_codes_web

 

                        select c_hotel_id from t001_hotels where c_hotel_id = -100   (the download script exists)

 

  1. I. 2015-01-25 13:33:54. <13> download_delete_cursor t027w_price_codes_web

 

                        --{ml_ignore}

 

  1. I. 2015-01-25 13:33:54. <13> upload_delete t027w_price_codes_web

 

                        /* Delete the row from the consolidated database. */

DELETE FROM "DBA"."t027w_price_codes_web"

WHERE "c_hotel_id" = {ml r."c_hotel_id"}

AND "c_pms_internet_price_code" = {ml r."c_pms_internet_price_code"}

 

  1. I. 2015-01-25 13:33:54. <13> upload_insert t027w_price_codes_web

 

                        /* Insert the row into the consolidated database. */

INSERT INTO "DBA"."t027w_price_codes_web" ( "c_hotel_id", "c_pms_internet_price_code", "c_pms_price_code", "c_description", "c_lead_time_to_arrive", "c_can_days", "c_sort_order", "c_discount_percent", "c_promo_only", "c_key", "c_reason_code", "c_min_days", "c_max_days" )

on existing update

VALUES ( {ml r."c_hotel_id"}, {ml r."c_pms_internet_price_code"}, {ml r."c_pms_price_code"}, {ml r."c_description"}, {ml r."c_lead_time_to_arrive"}, {ml r."c_can_days"}, {ml r."c_sort_order"}, {ml r."c_discount_percent"}, {ml r."c_promo_only"}, {ml r."c_key"}, {ml r."c_reason_code"}, {ml r."c_min_days"}, {ml r."c_max_days"} )

 

  1. I. 2015-01-25 13:33:54. <13> upload_update t027w_price_codes_web

 

                        /* Update the row in the consolidated database. */

INSERT INTO "DBA"."t027w_price_codes_web" ( "c_hotel_id", "c_pms_internet_price_code", "c_pms_price_code", "c_description", "c_lead_time_to_arrive", "c_can_days", "c_sort_order", "c_discount_percent", "c_promo_only", "c_key", "c_reason_code", "c_min_days", "c_max_days" )

on existing update

VALUES ( {ml r."c_hotel_id"}, {ml r."c_pms_internet_price_code"}, {ml r."c_pms_price_code"}, {ml r."c_description"}, {ml r."c_lead_time_to_arrive"}, {ml r."c_can_days"}, {ml r."c_sort_order"}, {ml r."c_discount_percent"}, {ml r."c_promo_only"}, {ml r."c_key"}, {ml r."c_reason_code"}, {ml r."c_min_days"}, {ml r."c_max_days"} )  (the upload script is correct)

 

  1. I. 2015-01-25 13:33:54. <Main> System event on shared administrative connection:

SELECT idx, name, type FROM ml_column WHERE version_id = ? AND table_id = ? ORDER BY idx DESC

  1. I. 2015-01-25 13:33:54. <Main> Translated SQL:

SELECT idx, name, type FROM ml_column WHERE version_id = ? AND table_id = ? ORDER BY idx DESC

E. 2015-01-25 13:33:54. <13> [-10019] Error fetching table script t027w_price_codes_web.download_cursor (when the client connects, the server gives out error that the download script cannot be found)

 

 

 

  1. I. 2015-01-25 13:34:04. <28> begin_upload_rows t027w_price_codes_web (no script)
  2. I. 2015-01-25 13:34:04. <28> System event on synchronization connection:

savepoint  it8

  1. I. 2015-01-25 13:34:04. <28> Translated SQL:

savepoint  it8

  1. I. 2015-01-25 13:34:04. <28> upload_update t027w_price_codes_web

 

                        /* Update the row in the consolidated database. */

INSERT INTO "DBA"."t068ca_category" ( "c_category_id", "c_category_code", "c_short_desc", "c_description", "c_hotel_id", "c_del", "c_display_order" )

on existing update

VALUES ( {ml r."c_category_id"}, {ml r."c_category_code"}, {ml r."c_short_desc"}, {ml r."c_description"}, {ml r."c_hotel_id"}, {ml r."c_del"}, {ml r."c_display_order"} ) (and the upload script is taken from an entirely different table!)

 

  1. 2015-01-25 13:34:04. <28> [-10233] Table 't027w_price_codes_web' does not have a column named 'c_category_id'
  2. 2015-01-25 13:34:04. <28> [-10058] Unable to open upload_update
  3. I. 2015-01-25 13:34:04. <28> System event on synchronization connection:

rollback to savepoint  it8

  1. I. 2015-01-25 13:34:04. <28> Translated SQL:

rollback to savepoint  it8

 

//----------------------------------------------------


Mobilink Crashes or not Responding

$
0
0

Hi Guys,

Recently we moved our mobilink 12 server to another physical server due to the previous server started to give  problem.

 

The migration was easy since both servers are running the same OS, initially the mobilink server seems to be running fine until a couple of hours the mobilink server will just crashed. on some occassion, the mobilink server does not crashed but the console will show 'not responding' message and it will not respond to another sync request.

 

I had checked the crash log, but it doesn't give much info.

 

 

Can someone shed some light to this problem on where could probably be go wrong? On both occasions, we would need to kill the mobilink process and start it up, and the service will be up for a couple of hours without any problem until it crashed.

 

 

below is the crash log

 

VERSION=12.0.1.3152

FILENAME=C:\ProgramData\SQL Anywhere 12\diagnostics\MLS12_20150123_155658_8640.crash_log

OS=Windows 2008R2 Build 7601 Service Pack 1

PROCESSOR=X86_64

EXEC_ARCH=X86_64

EXEC_PATH=C:\Program Files\SQL Anywhere 12\bin64\mlsrv12.exe

MODULE_PATH=C:\Program Files\SQL Anywhere 12\bin64\mlsrv12.exe

EXCEPTION_PTR=000000000BCDF870

EXCEPTION_CODE=3221225477

EXCEPTION_FLAGS=0

EXCEPTION_RECORD=0000000000000000

EXCEPTION_ADDRESS=000000014001B2B0

EXCEPTION_NumParameters=2

EXCEPTION_Param0=0000000000000000

EXCEPTION_Param1=0000000000000048

TRYING_TO_SAVE_MINI_DUMP C:\ProgramData\SQL Anywhere 12\diagnostics\MLS12_20150123_155658_8640.dmp

DUMPLEVEL 0

SAVING_MINI_DUMP_COMPLETED

CRASH_LOG_COMPLETE

ATTEMPTING_TO_SUBMIT_MINIDUMP...

 

 

Thanks in advance.

 

Regards

 

Ryan

Sybase SQL anywhere database backup

$
0
0


Dear Expets,

 

I am using BI 4.1 sp1 BOBJ server under sybase SQL anywhere 12 database  and Operating system is Windows 2008 server.

 

I want to take offline and online backup of database , How to take from both command line and from admin console ( please guide me step by step procedure I am first time using SQL aynwhere database).

 

second My SQl server database consist 4 files

1.  BI4_Aduit.db          Size of this file is       1025 MB

2. BI4_Audit.log           Size of this file is       924 MB

3.  BI4_CMS.db          Size of this file is        47 MB

4. BI4_CMS.log          Size of this file is        3.4 GB

 

why BI4_CMS.log  size too much how to reduce the CMS log file size

 

 

Regards

SQL Anywhere 5.0

$
0
0

Hi all,

 

As we know this is very old version and be ended in 2000. Unfortunately, i need this software to cover my other database issue on Window NT 4.0. Does anybody still keep this version? Could you please help to share to me?

 

Thanks in advance,

Nhan

Passing Arguments to Login-Procedure

$
0
0

Hi,

 

i was trying to pass some own/more connection infos to our login procedure.

 

I used the "CON=" parameter.

 

CON=PROGRAM_USER=test_user@

PROGRAM_PASSWORD=pasword_hash@PROGRAM_CON_NAME=Test Connection

Is there a better way to pass such infos?

First I thought about the connectstring (e.g. ConnectString='DSN=myDatabase;UserDefinedOption=ABC') but i didn't find a way to access these infos in my login procedure.

How do i change the connection-name property in my login procedure?

set option name=Test Connection; -- does not work

Regards

Stefan

Query Connection Isolation Levels

$
0
0

I can do SA_CONN_LOCKS and get the information of all the connections.  I have all the connection numbers.

 

I then need a way to determine the ISOLATION LEVEL of each of the connections.    We use a different ISOLATION LEVEL and  we want to make sure that isolation level is proper for all connections to stop freezing.

 

I'm sure I can get the isolation level of the current connection (ITSELF) ---

 

1. How do I get the isolation level of my own connection?

2. How do I get the isolation levels of all the other connections?  (If I have to do it manually for each connection, that's not an issue for me)

 

Please help!

 

We are setting an EXECLUSIVE lock on a table which is causing all the other workstations to freeze, and I'm sure that we are setting the isolation level to stop this from happening when opening all the connections - so for some reason, something is getting set back or the user is creating other custom connections and locking records.

 

Thank you.

 

Sybase SQL Anywhere 12.01

Viewing all 1302 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>