former_SQLA_member1694875
Participant
Member since ‎2011 Jul 27

User Statistics

  • 131 Posts
  • 0 Solutions
  • 123 Kudos given
  • 97 Kudos received

User Activity

Hi, There is the Locks During Deletes section in the docs, but it lacks info about triggers. I need a confirmation about row-level BEFORE DELETE trigger firing time: does it fire just after write lock is acquired on the row to be deleted? It would be...
According to EXECUTE IMMEDIATE statement docs: Only global variables can be referenced in a statement executed by EXECUTE IMMEDIATE. I have three cases that show this is not always true at least in builds 16.0.0.2614 and 17.0.10.5771 (and 11.0.1.31...
I have some problems with sp_parse_json procedure (the docs) in v16.0.0.2614 (haven't tested in v17 yet). Here is a script to reproduce (I've simplified json string as much as I could, the real string is much more complex): begin declare @json lo...
SQL Anywhere 16.0.0.2471 We get an error message "Procedure 'openxml' not found" when calling OPENXML operator (till SA12 it was called 'system procedure' in the docs) with quotes, e. g.: select test from "openxml"(null,'/Test') with(test integer);...
Hi, SQL Anywhere 16.0.0.2471. We get "Remote server '...' could not be found" error (SQLCODE=-659) when non-dba user executes a procedure (owned by dba) which selects remote data from proxy table into temporary table. I've prepared sample script...