Message from: exhortae_984
Hi,
I come from a java background so sorry if my question seems stupid but.
Say I create a file named main.sql with this content:
@proc.sql
and a file named proc.sql with the following content
SET SERVEROUTPUT ON
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello World');
END;
/
now I open the two files in toad. select the main.sql tab and hit F5. the
output is Hello World.
Now say I edit the file proc.sql and I don't save hit.
I hit F5 on the main.sql and the output is still hello world because I
didn't save it as I want to be able to undo.
Imagine now I want to do the same test, but proc.sql is a file with 1000
lines and I want to cut 500 lines. to be able to launch main.sql I need to
save it => I lose the 500 lines I cut and cannot undo the thing.
This doesn't seem like a normal behavior 
thanks
Historical Messages
Author: exhortae_984
Date: Fri Apr 02 08:33:33 PDT 2010
Hi,
I come from a java background so sorry if my question seems stupid but.
Say I create a file named main.sql with this content:
@proc.sql
and a file named proc.sql with the following content
SET SERVEROUTPUT ON
BEGIN
DBMS_OUTPUT.PUT_LINE('Hello World');
END;
/
now I open the two files in toad. select the main.sql tab and hit F5. the
output is Hello World.
Now say I edit the file proc.sql and I don't save hit.
I hit F5 on the main.sql and the output is still hello world because I
didn't save it as I want to be able to undo.
Imagine now I want to do the same test, but proc.sql is a file with 1000
lines and I want to cut 500 lines. to be able to launch main.sql I need to
save it => I lose the 500 lines I cut and cannot undo the thing.
This doesn't seem like a normal behavior 
thanks
__
Author: Martin Gainty
Date: Fri Apr 02 06:12:06 PDT 2010
did you execute? SELECT job_name FROM dba_scheduler_jobs (norm and roger
pls correct if syntax is incorrect for 11) Martin Gainty
______________________________________________ Verzicht und
Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht
ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so
bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung oder
Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung.
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine
Haftung fuer den Inhalt uebernehmen. Ce message est confidentiel et peut
être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons
avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle
diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à
l'information seulement et n'aura pas n'importe quel effet légalement
obligatoire. Étant donné que les email peuvent facilement être sujets à la
manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu
fourni.
__
Author: Ed Klinger
Date: Fri Apr 02 06:04:50 PDT 2010
Do you have the optional DB Admin module? Look in your Help-->About. Under
the Version it will tell you. You will need that license to view the
"Schedule Jobs" tab which is different then the "Jobs" tab which is just
dbms_jobs Ed [TeamT]
__
Author: Jeff Smith
Date: Fri Apr 02 06:03:24 PDT 2010
JOBS tab is just for DBMS_JOBS There are several sets of tabs for the
DBMS_SCHEDULER interface in 10/11g. However, it is available to the users
who have the optional DB Admin module.
__
Author: Eva
Date: Fri Apr 02 05:43:40 PDT 2010
I have created a job using DBMS_SCHEDULER and it is not showing up in the
Jobs under the schema browser. I am using Toad for Oracle 10.1.1.8 against
Oracle 11g. Does that Jobs item only show jobs created with DBMS_JOBS?
Thanks, Eva
__
Author: Wim de lange
Date: Fri Apr 02 02:38:07 PDT 2010
This is normal behaviour for most editors..... Groetjes, Wim On Fri, Apr 2,
2010 at 11:03, exhortae_984