Execute dbms_xxxx' cannot run with oraSql or OraQuery ?
i try and become : ORA:00900: invalid SQL statement
Execute command
-
- Devart Team
- Posts: 925
- Joined: Thu 17 Nov 2005 10:53
OraQuery vs ORaPacket
With Orapacket is very slow the executingchallenger wrote:We couldn't reproduce this error. Please send to ODAC support address complete sample that demonstrates this problem and include script to create server objects.
DBMS_SNAPSHOT.REFRESH('list','ESQUEM.TABLE','method','C');
How ist with oraSql or OraQuery ?
OraQuery.sql('DBMS_SNAPSHOT.REFRESH('list','ESQUEM.TABLE','method','C'));
OraQuery.Execute.
ist so fast ?[/img]
Try to use TOraSQL component. Assign the following text to SQL property:
Code: Select all
BEGIN
DBMS_SNAPSHOT.REFRESH('ESQUEM.TABLE', 'C');
END;
OraSql , OraPacket
Run Ok , but is as slow as sqlplus more 120%plash wrote:Try to use TOraSQL component. Assign the following text to SQL property:Code: Select all
BEGIN DBMS_SNAPSHOT.REFRESH('ESQUEM.TABLE', 'C'); END;
OraSql , OraPacket are snail Component
Thank plash