Script UI Generator

I have created an application to generate script UI. In order to create dialog, one would add controls to treeview in app change properties in propertygrid and click Preview to view dialog with either Indesign, Illustrator or Photoshop. I am interested in hearing feedback from fellow scripters.
I am contemplating selling as stand alone app or as a web service where for a small fee you can upload file and the javascript result would be generated for you in a textBox on webpage. Currently the result is a resource string, but I am thinking of also giving the option to generate raw javascript. Also in the plans is to generate functions for events, which would mean that you could concentrate on task at hand an UI would be considerably lighter task.
The Main benefit is the ability to preview with the click of a button to see how the changes to the properties effect the created code.
If you are interested in playing around with app in it's beta form (Windows only .net 3.0) then email me at [email protected], but keep in mind at this point there is no way to actually see the code that was generated, but will give a taste of what is to come. Thank you for a moment of your precious time.

As I have been going through and testing various properties I have found a few things with ScriptUI that I would like to post.
First, I ditched the resource strings when I realized that adobe has not been updating it with all the new features in Script UI. For example no TabbedPanel or Tab. Also creating listbox with two columns will crash the application in which it is running. However in raw code all these things work just fine, so my app now generates real code (which may be a pretty good thing being that the end user will have an easier time reading the code).
Second, The Justify property. does it really work? I could only get it to work on editbox element (which is probably the most important one), using a mixture of resource string and code. The problem is that the justify property has to be set at creation of the element, but justify is not one of the creation properties, except if using a resource string then it could be at creation of the element. My code looks something like this
> dlg.add("edittext{justify:'right'}")
but even this doesn't work on other elements with justify property (statictext,radiobutton,checkbox,panel,window).
I didn't see it online so i'll just post here, shortcutKey property accept a string of a single letter (maybe also number, but I didn't try) which on Windows is activated by pressing ALT + key entered (maybe on mac it's cmd). however it only activates control, pressing or toggling value is done with Enter key or space bar.
selection property of treeview using index - couldn't get it to work.
Thanks for listening to my rant, any help is appreciated

Similar Messages

  • Script for generate randomize administrator password which make log file to recorded new administrator password with associated computer name on it

    Hi
    I Need VDS script in order to change domain client local administrator password in my domain ,and put this script in startup script via group policy, but for security purpose  I want to randomize local administrator password and log new password
    set for each computer on a text file, I want to over write the old password of eachcomputer in log file with new one in order to have the update log file ,my support team some times need administrator password for troubleshooting.
    I need a script for generate randomize administrator password  which make log file to recorded new administrator password with associated computer name on it and each time new administrator password set it over write the old record on
    the log file and update the content of log file automatically.
    Regards

    Hi
    I need a script for generate randomize administrator password  which record new password on a  log file with associated computer name  and each time new administrator password set for a computer it  over write the old record
    on the log file and update the content of log file automatically.
    Regards

  • How to get SQL script for generating table, constraint, indexes?

    I'd like to get from somewhere Oracle tool for generating simple SQL script for generating table, indexes, constraint (like Toad) and it has to be Oracle tool but not Designer.
    Can someone give me some edvice?
    Thanks!
    m.

    I'd like to get from somewhere Oracle tool for
    generating simple SQL script for generating table,
    indexes, constraint (like Toad) and it has to be
    Oracle tool but not Designer.
    SQL Developer is similar to Toad and is an Oracle tool.
    http://www.oracle.com/technology/products/database/sql_developer/index.html

  • Script to generate all the tables and objects in a schema

    how to write a script to generate all the tables and objects in a schema.
    with toad the no of tables generated is not matching when i check from schema .

    Dear Sidhant,
    Try this script:
    set termout off
    set feedback off
    set serveroutput on size 100000
    spool ddl_schema.sql
    begin
    dbms_output.put_line('--');
    dbms_output.put_line('-- DROP TABLES --');
    dbms_output.put_line('--');
        for rt in (select tname from tab order by tname) loop
            dbms_output.put_line('DROP TABLE '||rt.tname||' CASCADE CONSTRAINTS;');
        end loop;
    end;
    declare
        v_tname  varchar2(30);
        v_cname  char(32);
        v_type     char(20);
        v_null   varchar2(10);
        v_maxcol number;
        v_virg     varchar2(1);
    begin
    dbms_output.put_line('--');
    dbms_output.put_line('-- CREATE TABLES --');
    dbms_output.put_line('--');
        for rt in (select table_name from user_tables order by 1) loop
            v_tname:=rt.table_name;
            v_virg:=',';
            dbms_output.put_line('CREATE TABLE '||v_tname||' (');
            for rc in (select table_name,column_name,data_type,data_length,
                                data_precision,data_scale,nullable,column_id
                    from user_tab_columns tc
                    where tc.table_name=rt.table_name
                    order by table_name,column_id) loop
                        v_cname:=rc.column_name;
                        if rc.data_type='VARCHAR2' then
                            v_type:='VARCHAR2('||rc.data_length||')';
                        elsif rc.data_type='NUMBER' and rc.data_precision is null and
                                             rc.data_scale=0 then
                            v_type:='INTEGER';
                        elsif rc.data_type='NUMBER' and rc.data_precision is null and
                                         rc.data_scale is null then
                            v_type:='NUMBER';
                        elsif rc.data_type='NUMBER' and rc.data_scale='0' then
                            v_type:='NUMBER('||rc.data_precision||')';
                        elsif rc.data_type='NUMBER' and rc.data_scale<>'0' then
                            v_type:='NUMBER('||rc.data_precision||','||rc.data_scale||')';
                        elsif rc.data_type='CHAR' then
                             v_type:='CHAR('||rc.data_length||')';
                        else v_type:=rc.data_type;
                        end if;
                        if rc.nullable='Y' then
                            v_null:='NULL';
                        else
                            v_null:='NOT NULL';
                        end if;
                        select max(column_id)
                            into v_maxcol
                            from user_tab_columns c
                            where c.table_name=rt.table_name;
                        if rc.column_id=v_maxcol then
                            v_virg:='';
                        end if;
                        dbms_output.put_line (v_cname||v_type||v_null||v_virg);
            end loop;
            dbms_output.put_line(');');
        end loop;
    end;
    declare
        v_virg        varchar2(1);
        v_maxcol    number;
    begin
    dbms_output.put_line('--');
    dbms_output.put_line('-- PRIMARY KEYS --');
    dbms_output.put_line('--');
        for rcn in (select table_name,constraint_name
                from user_constraints
                where constraint_type='P'
                order by table_name) loop
            dbms_output.put_line ('ALTER TABLE '||rcn.table_name||' ADD (');
            dbms_output.put_line ('CONSTRAINT '||rcn.constraint_name);
            dbms_output.put_line ('PRIMARY KEY (');
            v_virg:=',';
            for rcl in (select column_name,position
                    from user_cons_columns cl
                    where cl.constraint_name=rcn.constraint_name
                    order by position) loop
                select max(position)
                    into v_maxcol
                    from user_cons_columns c
                    where c.constraint_name=rcn.constraint_name;
                if rcl.position=v_maxcol then
                    v_virg:='';
                end if;
                dbms_output.put_line (rcl.column_name||v_virg);
            end loop;
            dbms_output.put_line(')');
            dbms_output.put_line('USING INDEX );');
        end loop;
    end;
    declare
        v_virg        varchar2(1);
        v_maxcol    number;
        v_tname        varchar2(30);
    begin
    dbms_output.put_line('--');
    dbms_output.put_line('-- FOREIGN KEYS --');
    dbms_output.put_line('--');
        for rcn in (select table_name,constraint_name,r_constraint_name
                from user_constraints
                where constraint_type='R'
                order by table_name) loop
            dbms_output.put_line ('ALTER TABLE '||rcn.table_name||' ADD (');
            dbms_output.put_line ('CONSTRAINT '||rcn.constraint_name);
            dbms_output.put_line ('FOREIGN KEY (');
            v_virg:=',';
            for rcl in (select column_name,position
                    from user_cons_columns cl
                    where cl.constraint_name=rcn.constraint_name
                    order by position) loop
                select max(position)
                    into v_maxcol
                    from user_cons_columns c
                    where c.constraint_name=rcn.constraint_name;
                if rcl.position=v_maxcol then
                    v_virg:='';
                end if;
                dbms_output.put_line (rcl.column_name||v_virg);
            end loop;
            select table_name
                into v_tname
                from user_constraints c
                where c.constraint_name=rcn.r_constraint_name;
            dbms_output.put_line(') REFERENCES '||v_tname||' (');
            select max(position)
                    into v_maxcol
                    from user_cons_columns c
                    where c.constraint_name=rcn.r_constraint_name;
            v_virg:=',';
            select max(position)
                into v_maxcol
                from user_cons_columns c
                where c.constraint_name=rcn.r_constraint_name;
            for rcr in (select column_name,position
                    from user_cons_columns cl
                    where rcn.r_constraint_name=cl.constraint_name
                    order by position) loop
                if rcr.position=v_maxcol then
                    v_virg:='';
                end if;
                dbms_output.put_line (rcr.column_name||v_virg);
            end loop;
            dbms_output.put_line(') );');
        end loop;
    end;
    begin
    dbms_output.put_line('--');
    dbms_output.put_line('-- DROP SEQUENCES --');
    dbms_output.put_line('--');
        for rs in (select sequence_name
                from user_sequences
                where sequence_name like 'SQ%'
                order by sequence_name) loop
            dbms_output.put_line('DROP SEQUENCE '||rs.sequence_name||';');
        end loop;
    dbms_output.put_line('--');
    dbms_output.put_line('-- CREATE SEQUENCES --');
    dbms_output.put_line('--');
        for rs in (select sequence_name
                from user_sequences
                where sequence_name like 'SQ%'
                order by sequence_name) loop
            dbms_output.put_line('CREATE SEQUENCE '||rs.sequence_name||' NOCYCLE;');
        end loop;
    end;
    declare
        v_virg        varchar2(1);
        v_maxcol    number;
    begin
    dbms_output.put_line('--');
    dbms_output.put_line('-- INDEXES --');
    dbms_output.put_line('--');
        for rid in (select index_name, table_name
                from user_indexes
                where index_name not in (select constraint_name from user_constraints)
                    and index_type<>'LOB'
                order by index_name) loop
            v_virg:=',';
            dbms_output.put_line('CREATE INDEX '||rid.index_name||' ON '||rid.table_name||' (');
            for rcl in (select column_name,column_position
                    from user_ind_columns cl
                    where cl.index_name=rid.index_name
                    order by column_position) loop
                select max(column_position)
                    into v_maxcol
                    from user_ind_columns c
                    where c.index_name=rid.index_name;
                if rcl.column_position=v_maxcol then
                    v_virg:='';
                end if;
                dbms_output.put_line (rcl.column_name||v_virg);
            end loop;
            dbms_output.put_line(');');
        end loop;
    end;
    spool off
    set feedback on
    set termout on Best Regards,
    Francisco Munoz Alvarez
    www.oraclenz.com

  • Script to generate awr and e-mail to the user

    Hi ,
    Can someone help me with the script to generate AWR report and e-mail to customer on a daily basis?
    OS:AIX 6.1
    DB:11.2.0.2

    http://www.gokhanatil.com/2011/07/create-awr-and-addm-reports-and-send.html
    http://nadeemmohammed.wordpress.com/2011/10/27/generate-awr-reports-automatically-script/
    Generate Statspack report automatically once per day
    Your answer in above link(s), just read,understand and try to implement. If problem continue post here, we are here 24x7, but first show us yours efforts.
    Regards
    Girish Sharma

  • A ksh script that generates a ksh script

    I am writing a ksh script to generate a ksh script. A snippet of the first script is shown below. The output that is generated is shown following that.
    First script:
    StartScript()
    echo $*
    StartScript log\(\)
    StartScript {
    StartScript 'echo $* >>$LOGGGGGGFILE'
    StartScript }
    This is the output that is produced:
    log()
    echo $LOGFILE
    $LOGGGGGGFILE}
    I can't figure out where the $LOGFILE is coming from....it should be $*. I've tried various permutations of quoting and backslashing, but nothing works.
    This is really strange, does anyone have any suggestions on how to do this?
    Thanks in advance
    Al

    The single or 'hard' quote around this line:
    StartScript 'echo $ >>$LOGGGGGGFILE'prevents the shell from interpreting the $ as a "value-of" operator. Use double quotes ("soft" quotes) and it should be fine.

  • Help with java script to generate filename without extension

    There is a java script that generates a filename on a photographic image for professional purposes ie. proofing etc.
    it currently displays the filename and extension (123.jpg) and i would like it to simply display the filename minus the extension (123)
    this is the string that commands the filename to show up in Photoshop CS.
    myTextRef.contents = docRef.name;
    any ideas on how to eliminate the extension?

    var n = docRef.name;
    myTextRef.contents = n.substring(0, n.lastIndexOf("."));???

  • Issue with Creating CATT Script for Generating Derived Roles

    Hi Experts,
    I am desperately trying to find the solution on how I create a CATT Script to generate derived roles from few 100 master roles.
    I posted a thread on Security (Can I do a 'mass generation' of dervied roles?) .. however, since it turns out to be a SCAT issue, I thought I'll ask someone from this forum too.
    Extract from the other thread is as follows :
    "I cannot get the script to automate the generation of derived roles.
    when Entering parameters for a test case, I can only see the Initial PFCG Screen. Display/Change Authorization screen doesn't seem to get recorded / logged in the test screen.
    I.e : All screens with program SAPLPRGN_TREE is recorded, however all screens with program SAPMSSY0 is not.
    I hope it makes sense.. Any suggestions on how I can automate the generation of derived roles tasks?
    Thanks.
    Dineish

    Hi,
    I have the same problem just now.
    Have you found some solutions about it ?
    thx
    Luigi

  • Tool Bar script for generating Email

    Hi experts,
    I have made the following script for sending a custom email.
    And i've the required jar files in the ftp drive on the same server where E-sourcing is installed.
    If anyone can look at this code and tell me whats wrong with it, i'll be realy grateful .
    addClassPath("D:/FTPHOME/MailJar/activation.jar");
    addClassPath("D:/FTPHOME/MailJar/javac.mail.jar");
    addClassPath("D:/FTPHOME/MailJar/mail.jar");
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    // Recipient's email ID needs to be mentioned.
    String to = "Email add of recipient";
    // Sender's email ID needs to be mentioned
    String from = "Email add of sender";
    // Assuming you are sending email from localhost
    String host = "IP address of the host ";
    // Get system properties
    Properties properties = System.getProperties();
    // Setup mail server
    properties.setProperty("mail.smtp.host", host);
    // Get the default Session object.
    Session session1 = Session.getDefaultInstance(properties);
    // Create a default MimeMessage object.
    MimeMessage message = new MimeMessage(session1);
    // Set From: header field of the header.
    message.setFrom(new InternetAddress(from));
    // Set To: header field of the header.
    message.addRecipient(Message.RecipientType.TO,
    new InternetAddress(to));
    // Set Subject: header field
    message.setSubject("This is the Subject Line!");
    // Now set the actual message
    message.setText("This is actual message");
    // Send message
    try{
    Transport.send(message);
    catch(Exception e)
    print(e);
    Thanks,
    Abhijit

    I'd like to get from somewhere Oracle tool for
    generating simple SQL script for generating table,
    indexes, constraint (like Toad) and it has to be
    Oracle tool but not Designer.
    SQL Developer is similar to Toad and is an Oracle tool.
    http://www.oracle.com/technology/products/database/sql_developer/index.html

  • Script for generating XML file ... problem with null values

    Greetings everyone,
    i come here with a question that troubles me for some time now. I have a script which i run from SQLPLUS every now and then to generate an XML file.
    Problem is that data which needs to be in XML is not allways <> NULL and i need to hide those tags that are empty </tag>.
    I will post below my script and if you could help me with it it would be really great!
    Thanks for reading!
    set long 20000000
    set long 20000000
    set linesize 32000
    SET ECHO OFF
    SET TRIMSPOOL on
    SET HEADING OFF
    SET PAGESIZE 50000
    SET VERIFY OFF
    SET FEEDBACK OFF
    SET TERMOUT OFF
    spool C:\test.xml
    set serveroutput on
    begin
      dbms_output.put_line('<?xml version="1.0" encoding="utf-8" ?>');
    end;
    SELECT
    XMLELEMENT("ReportRoot",XMLATTRIBUTES('http://www.w3.org/2001/XMLSchema-instance' as "xmlns:xsi", 'http://www.w3.org/2001/XMLSchema' as "xmlns:xsd" , '1.0' as "Version",sysdate as "CreationDate",to_char(sysdate,'hh:mm:ss') as "CreationTime",'1524544845' as "id"),
    XMLELEMENT("Porocila",XMLELEMENT("JOLY",(SELECT XMLAGG (XMLELEMENT("RefNrReport",replace('SON'||to_char(ref_ST,'00000'),' ',''))) from access_table_2 where ref_ST = &1),
    XMLELEMENT("ReportDate",sysdate),XMLELEMENT("Labeling",'545254450'),
    (SELECT XMLAGG     (XMLELEMENT("Reportf",
                                                                     XMLELEMENT("access",access),
                                                                     XMLELEMENT("date",date),
                                                                     XMLELEMENT("datep",datep),
                                                                     XMLELEMENT("ModificationInfo",'M'),XMLELEMENT("ModificationReason",modireason)))
                                                 from v_xml_test where id_dok = &1 and ind_print = '1'))))
      .extract('/*')
      from dual
         spool off
    exitNow lets pretend that XMLELEMENT("datep",datep), is sometimes NULL and i do not want to display it.

    may be
    with t as
    select sysdate datep from dual union all
    select null datep from dual
    select xmlagg(xmlelement("Reportf",
                             case when datep is not null then XMLELEMENT("datep", datep)
                             end
      from t

  • Making a script that generates an output file dynamic

    I've created the following script to run it from within SQL*Plus on my PC to generate a report regarding specific details about all my databases in one file. The idea is to get 1 result of all my databases.
    Spool C:\output.txt;
    -- start DB1
    CONNECT system/pass@DB1;
    COLUMN host_name format A18;
    select * from v$database;
    set line 380;
    set pagesize 50;
    select * from v$session order by username;
    DISCONNECT;
    -- end DB1
    -- start DB2
    CONNECT system/pass@DB2;
    .......................same code as for DB1..................................
    DISCONNECT;
    -- end DB2
    -- start DB3
    CONNECT system/pass@DB3;
    .......................same code as for DB1..................................
    DISCONNECT;
    -- end DB3
    Spool off;
    The above script, for instance, generates the name of the database and the sessions details of all my databases.
    I have 40 DBs and they all have the same password for user system.
    My question, is there a way to re-write this script to achieve the same thing but in a dynamic way. ie: the database connection string becomes dynamic, so that I write the code only once and if the code changes, I change it only one time instead of 40 times.
    Notes: I'd like to run the script from SQL*Plus on my Window PC, I know that the same thing can be achieved by running a script on the DB server by using /etc/oratab, but actually these 40 DBs are on 10 different DB servers and there is no oratab used.
    Many thanks for any tips,
    Thomas

    By awk on unix, or gawk or mawk on Windows (download http://www.klabaster.com/freeware.htm or ftp://garbo.uwasa.fi/pc/unix/gawk2156.zip) it's a easy task.
    File select.sql (your query which you want run)
    spool E:\Scripts\Sql\&1..log
    select table_name from user_tables;
    spool off
    exitFile db.txt :
    #col1 = ORACLE_HOME, col2=user, col3=pwd, col4=dbname, col5=script to run (cool if you run different scritps)
    e:\oracle\ora92 scott tiger DEMO92 E:\Scripts\Sql\select.sql
    e:\oracle\ora102 scott demo102 DEMO102 E:\Scripts\Sql\select.sqlFile select.awk (program calling by main prog)
    { print "set ORACLE_HOME="$1 }
    {print "set ORACLE_SID=" $4}
    {print "cd %ORACLE_HOME%"}
    {print "cd bin"}
    {print "sqlplus -s " $2"/"$3" @"$5" "$4}File run_select.cmd (the program which you will run)
    gawk\gawk -f select.awk db.txt>run_select.cmd
    run_select.cmdWell, now you have pfile and prog, you can work by simple enter name run_awk.cmd or scheduling by task windows :
    E:\Scripts\Sql>run_awk.cmd    <-- you have finish your job, all lines after this one are automatic
    E:\Scripts\Sql>gawk\gawk -f select.awk db.txt 1>run_select.cmd
    E:\Scripts\Sql>run_select.cmd
    E:\Scripts\Sql>set ORACLE_HOME=e:\oracle\ora92
    E:\Scripts\Sql>set ORACLE_SID=DEMO92
    E:\Scripts\Sql>cd e:\oracle\ora92
    E:\oracle\ora92>cd bin
    E:\oracle\ora92\bin>sqlplus -s scott/tiger @E:\Scripts\Sql\select.sql DEMO92
    TABLE_NAME
    A
    BONUS
    C
    DEPT
    EMP
    HARSIMRAT
    PLAN_TABLE
    SALGRADE
    T
    T2
    TAB1
    11 rows selected.
    E:\oracle\ora92\bin>set ORACLE_HOME=e:\oracle\ora102
    E:\oracle\ora92\bin>set ORACLE_SID=DEMO102
    E:\oracle\ora92\bin>cd e:\oracle\ora102
    E:\oracle\ora102>cd bin
    E:\oracle\ora102\BIN>sqlplus -s scott/demo102 @E:\Scripts\Sql\select.sql DEMO102
    TABLE_NAME
    DEPT
    EMP
    BONUS
    SALGRADE
    C
    TAB1
    TBL
    MATRIX
    TAB2
    TAB3
    TAB4
    TABLE_NAME
    TAB5
    TEMP
    TBL7
    TBL6
    IZZA
    TBLA
    TBLB
    TBLC
    TMP_LOOKUPS
    TMP_HIER
    TBL8
    TABLE_NAME
    TBL9
    MV1
    EMP2
    THE_TABLE
    26 rows selected.
    E:\oracle\ora102\BIN>Two logfiles were generate DEMO92.log and DEMO102.log.
    Now you can declinate this procedure to the infinity.
    Nicolas.
    Message was edited by:
    N. Gasparotto
    You have an alternative with mawk which seems more fast, command are same, just replace gawk by mawk.
    Message was edited by:
    N. Gasparotto

  • API or Scripts to generate JCA files of DB Adapter Programmaticaly

    Is it possible to generate the DB Adapter configuration files programmatically, either use ANT scripts or using JAVA API. My requirement is basically is to generate set of DB Adapters for a set of tables which is defined in some XML or properties file. I don't want to manually create through the interactive wizard. Something like silent creation of DB adapters.
    Highly appreciate if someone can throw some light into this.
    - KC
    Edited by: 799459 on Dec 3, 2010 12:32 PM

    Is it possible to generate the DB Adapter configuration files programmatically, either use ANT scripts or using JAVA API. My requirement is basically is to generate set of DB Adapters for a set of tables which is defined in some XML or properties file. I don't want to manually create through the interactive wizard. Something like silent creation of DB adapters.
    Highly appreciate if someone can throw some light into this.
    - KC
    Edited by: 799459 on Dec 3, 2010 12:32 PM

  • Script for generating warning message during Shutdown by GPO

    Hello,
    I want to apply GPO in my AD to generate a warning message in the pop-up window just after when user click SHUT-DOWN  in their system .
    But I don't know what are the script for the same in batch file. Any body please suggest me.
    Thanks 

    Hello,
    i know the process how to apply it , the only things i have a problem is the content of script  as i mentioned above and now below also. I shown the script above which i used so far here only i need how to improve my script .
    echo msgbox "Hey! Here is a message!" > %tmp%\tmp.vbs
    cscript /nologo %tmp%\tmp.vbs del %tmp%\tmp.vbs
    Thanks

  • Script for generating insert statements

    I have different tables with data and I would like to have the insert statements generated of the data in the tables. Does someone have a generic script to do the job?

    Hi trafoc,
      You can also check out SQL Developer which has function to output table ddl and/or
    data under Tools selection.  Link is "http://www.oracle.com/technology/software/products/sql/index.html"
    Below is a sample output :
    --   DATA FOR TABLE PEOPLE
    --   FILTER = none used
    REM INSERTING into PEOPLE
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('SMITH','CLERK',800,20);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('ALLEN','SALESMAN',1600,30);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('WARD','SALESMAN',1250,30);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('JONES','MANAGER',2975,20);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('MARTIN','SALESMAN',1250,30);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('BLAKE','MANAGER',2850,30);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('CLARK','MANAGER',2450,10);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('KING','PRESIDENT',5000,10);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('TURNER','SALESMAN',1500,30);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('GRIZZLY','CLERK',1100,20);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('JAMES','CLERK',950,30);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('FORD','ANALYST',3000,20);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('MILLER','CLERK',1300,10);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('SCOTT','Clerk',9999,20);
    Insert into PEOPLE (USERNAME,JOB,SALARY,DEPTNO) values ('TEST_VPD','Clerk',1500,20);
    --   END DATA FOR TABLE PEOPLE
    HTH
    Zack

  • Is there a script to generate a TOC from bookmarks

    Hello,
    Does anyone have a script I can use to generate a TOC from bookmarks?

    Hello Mitchell,
    You can download these example scripts:
    http://wwwimages.adobe.com/www.adobe.com/products/indesign/scripting/d ownloads/indesign_cs4_scripting_guide_scripts.zip
    Try "MakeTOC.jsx"
    Regards.

Maybe you are looking for

  • How to find the largest and the widest tables in Oracle 10g ?

    Hi Folks, Environment: 10g Rel 2 Can somebody please suggest the data dictionary view(s) that I can query to get a list of the longest (rows) and the widest (columns) tables in any schema ? Thanks in advance rogers42

  • Sound completely gone..

    Okay, this has been a huge problem for me the entire time i have had my Macbook pro. i have had it for a year, ergo a 2011 model MBP. The problem is that when the jack to my headphones are not completely unplugged, but removed with a couple of mm wit

  • New features in 11.5.10

    Could please anyone tell me how can I obtain info about new features per module 11.5.10 vis a vis 11.5.8?

  • Error in J1ILIC01(Deemed Export License)

    Using T.code:J1ILIC01(Deemed Export License), I entered data for Series Group,License Type,License Name,Creation Date,Expiry Date and Pressed Enter. I get the error'Enter Valid Ship-to-party/Sold-to-Party'. I have entered a Valid Ship-to-party/Sold-t

  • How long does it take? re: com.sun.rowset.*

    It's been years and we still don't have a solid disconnected RowSet implementation from Sun. What gives? My gripes: 1) If *RowSetImpl is "included in Java 1.5" then why didn't you add it to the javax.sql.rowset package and document it in the api java