I'm using a 10.1 SP1 client. My test SDE database is 10.2
...
Anyone have any ideas?
7. Open a SQL window and run the command EXEC sde.version_util.set_current_version('MY_VERSION')
-This is when I get an error ORA-00900: Invalid SQL Statement.
-A coworker recommended trying to run this command in the PL/SQL command window as the following:
BEGIN
EXEC sde.version_util.set_current_version('MY_VERSION')
END;
-But then I couldn't figure out how to run the select statement and see a returned record.
Hello,
late to the party, but stumbled over the same problem:
BEGIN
sde.version_Util.Set_Current_Version('MY_VERSION');
sde.version_user_ddl.edit_version('MY_VERSION',1);
END;
/
SELECT * FROM TABLE WHERE ID LIKE '123456';
BEGIN
sde.version_user_ddl.edit_version('MY_VERSION',2);
END;
/