Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

I have a table called actionParameter in the consolidated SQLAnywhere database. Within the table is a primary key column called actionParameterId. The current column type of the actionParameterId is uniqueidentifierstr.

When I look at the values of the actionParameterId column, I see strange characters. I think this is due to the fact it is a uniqueidentifierstr and not a uniqueidentifier. I want to change it to a uniqueidentifier so badly... because the actionParameterId column type in the remote database is also of type uniqueidentifier.

When I try to edit the column type in the Sybase Central I get the following error not allowing me to:

The primary key 'actionParameterId - actionParameter (mobielcmp)' could not be deleted from the database. This operation is only allowed within a synchronization schema change [Sybase][ODBC Driver][SQL Anywhere]This operation is only allowed within a synchronization schema change SQLCODE: -1329 SQLSTATE: HY000 SQL Statement: ALTER TABLE "mobielcmp"."actionParameter" DROP PRIMARY KEY

What does it mean only allowed in a synchronization schema change? Do I have to change it using the remote synchronization script?

asked 23 Jan '12, 04:18

Yanny's gravatar image

Yanny
1767917
accept rate: 75%

edited 15 Mar '13, 21:28

Mark%20Culp's gravatar image

Mark Culp
24.9k10141297


I will assume you're using SQL Anywhere version 12.

  1. Schema changes are really only major concerns for the remote database - the consolidated database should not have any issues changing schema (assuming you have shut down the MobiLink server - your consolidated database should still function the same way regarding schema changes as it did before, prior to having MobiLink run on it )

  2. You will only get this error if there is a publication defined on the SQL Anywhere database. Publications are only defined for remote databases (for MobiLink) and are not defined on the consolidated database. If you are finding that you have erroneously defined publications on the consolidated, you should DROP PUBLICATION to get rid of it, and try your schema change again.

  3. If you are really trying to make a schema change on a remote (with the publication defined), you should review this documentation section. Your options to upgrade the remote SQL Anywhere database schema, include:

permanent link

answered 23 Jan '12, 11:59

Jeff%20Albion's gravatar image

Jeff Albion
10.8k171175
accept rate: 25%

edited 23 Jan '12, 12:01

You assumed right, I use the latest version SQL Anywhere 12. I have created a publication earlier in the consolidated SQLAnywhere database, containing amongst others the table actionParameter.

Now I have just deleted the publication and try to change the schema again. Alas, I get the following error:

The column 'actionParameterId' could not be modified in the database. Cannot convert 'BY‚B˜ဠto a uniqueidentifier [Sybase][ODBC Driver][SQL Anywhere]Cannot convert 'BY‚B˜ဠto a uniqueidentifier SQLCODE: -157 SQLSTATE: 07006 SQL Statement: ALTER TABLE "mobielcmp"."actionParameter" ALTER "actionParameterId" UNIQUEIDENTIFIER

  1. I tried to solve this by truncating the table. Because those "strange characters" are the values of the rows from that PK column. But I'm not allowed to do this, because I get an error:

TRUNCATE TABLE "mobielcmp"."actionParameter" Could not execute statement. Data modifications are not allowed in a synchronization schema change SQLCODE=-1342, ODBC 3 State="HY000" Line 1, column 1

  1. I also see a strange icon in the table name. See this screenshot: http://s14.postimage.org/ordpc2kxt/Screen_shot_2012_01_23_at_20_21_01.png What does it mean? Is it the reason for all the errors I get?
(23 Jan '12, 14:24) Yanny
1

Cannot convert 'BY‚B˜ဠto a uniqueidentifier [Sybase][ODBC Driver][SQL Anywhere]Cannot convert 'BY‚B˜ဠto a uniqueidentifier

Yes, as you have surmised, this means that the column you're changing the data type for contains data that cannot be converted to the new data type.

TRUNCATE TABLE "mobielcmp"."actionParameter" Could not execute statement. Data modifications are not allowed in a synchronization schema change

This means that you have attempted a DML statement after issuing "START SYNCHRONIZATION SCHEMA CHANGE" - Note that this statement is NOT required for a SQL Anywhere consolidated database. You only need to use this syntax for changing schema on the remote database.

You need to issue 'STOP SYNCHRONIZATION SCHEMA CHANGE' to be able to modify rows once again.

What does it mean? Is it the reason for all the errors I get?

The icon means that it is a 'synchronized table' defined in a publication, that has been selected by a "START SYNCHRONIZATION SCHEMA CHANGE" statement and is currently 'locked' (which prevents modifying the data inside the table).

(24 Jan '12, 12:50) Jeff Albion

Thank you Jeff for the additional comment. :) I have execute the STOP SYNCHRONIZATION SCHEMA CHANGE query and after that I was able to truncate the table. Then I successfully changed the PK column type to uniqueidentifier.

(24 Jan '12, 14:05) Yanny
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×128
×84

question asked: 23 Jan '12, 04:18

question was seen: 4,610 times

last updated: 15 Mar '13, 21:28