Help with sample schema

Hello. I am reading a self teaching guide called databases demystified by andy oppel. In the book it says that a sample hr schema is used to demonstrate sql. It then leads the reader to download a free trial version of oracle personal edition from otn.oracle.com. In the sample the release that is being used is 9.2.0.10 it says that once opend to go to orahome92............I am a novice user and tried to download this and it did not work. I have tried to install this many times. Is there something that I am misssing. I read something about metalink. I do not have access to that so how can I use the sample download. Im sure that he would not put that download in the book if it was not readily availible to all to use. Could someone please help me with this. Do I need something special on my computer to make it work properly? Im using a reg household computer to study with and it is running one xp. Thanks

First of all, metalink is a paid oracle support site. Unless you dont have support from oracle, you can't access it.
Secondly, you can simply download the oracle software either 9i or 10g from the following link.
http://www.oracle.com/technology/software/products/database/oracle10g/index.html
Once you install oracle software and then create database (if you are creating database through wizard, using database configuration assistant, you will have all example schemas, like HR and other). You can also find scripts to create sample schema on the following directory structure:
oracle\ora92\demo\schema
Jaffar

Similar Messages

  • Problems creating a db in 11g with Sample Schemas

    For a demo I'm doing I need the sample schemas.
    I have tried to add it to my existing database using dbca, as well as creating a new database with the sample schemas. In both cases I run into a problem with insuficient priveleges. If I do not include the sample schemas I can create the db just nice with dbca, however since it is the sample schemas I need that does not help me a lot.
    below the fist part of sampleSchema.log showing up til and including the first ORA-01031: insufficient privileges just ignoring it will lead to a lot more of them showing up.
    Any suggestion how to fix this?
    TEMP
    specify password for SYSTEM as parameter 1:
    specify password for SYS as parameter 2:
    specify password for HR as parameter 3:
    specify password for OE as parameter 4:
    specify password for PM as parameter 5:
    specify password for IX as parameter 6:
    specify password for SH as parameter 7:
    specify password for BI as parameter 8:
    specify default tablespace as parameter 9:
    specify temporary tablespace as parameter 10:
    specify log file directory (including trailing delimiter) as parameter 11:
    Sample Schemas are being created ...
    DROP USER hr CASCADE
    ERROR at line 1:
    ORA-01918: user 'HR' does not exist
    DROP USER oe CASCADE
    ERROR at line 1:
    ORA-01918: user 'OE' does not exist
    DROP USER pm CASCADE
    ERROR at line 1:
    ORA-01918: user 'PM' does not exist
    DROP USER ix CASCADE
    ERROR at line 1:
    ORA-01918: user 'IX' does not exist
    DROP USER sh CASCADE
    ERROR at line 1:
    ORA-01918: user 'SH' does not exist
    DROP USER bi CASCADE
    ERROR at line 1:
    ORA-01918: user 'BI' does not exist
    specify password for HR as parameter 1:
    specify default tablespeace for HR as parameter 2:
    specify temporary tablespace for HR as parameter 3:
    specify password for SYS as parameter 4:
    specify log path as parameter 5:
    DROP USER hr CASCADE
    ERROR at line 1:
    ORA-01918: user 'HR' does not exist
    old 1: CREATE USER hr IDENTIFIED BY &pass
    new 1: CREATE USER hr IDENTIFIED BY password
    User created.
    old 1: ALTER USER hr DEFAULT TABLESPACE &tbs
    new 1: ALTER USER hr DEFAULT TABLESPACE EXAMPLE
    old 2: QUOTA UNLIMITED ON &tbs
    new 2: QUOTA UNLIMITED ON EXAMPLE
    User altered.
    old 1: ALTER USER hr TEMPORARY TABLESPACE &ttbs
    new 1: ALTER USER hr TEMPORARY TABLESPACE TEMP
    User altered.
    Grant succeeded.
    Grant succeeded.
    ERROR:
    ORA-01031: insufficient privileges
    Warning: You are no longer connected to ORACLE.
    SP2-0640: Not connected

    Hi;
    please check Note:Is It Possible To Recreate The Example Schemas Hr And Oe? [ID 752140.1]
    Hope it helps
    Regard
    Helios

  • Help With Multiple Schemas In Multiple Environments

    Dear Oracle Forum:
    We have a bit of controversy around the office and I was hoping we could get some expert input to get us on the right track.
    For the purposes of this discussion, we have two machines, development and production. Currently, on each machine, we have one database with multiple schemas, say, one for sales data and another for inventory. The sales data has maybe 200 tables and the inventory has another 50. About 12 times a year, once a month, we have a release and move code from dev to prod. The database is accessed by several hundred Pro*C and Pro*Cobol programs for online transaction processing.
    The problem comes up when we need to have multiple development environments. If I need to work on something for May that requires the customer address field to be 50 characters and somebody else is working on something for July that requires the customer address field to be 100 characters, we can’t both function in the same schema. We have a method of configuring running programs to attach to a given schema/database. Currently, everything connects to the same place. We were told that we should not have the programs running as the owners of the schemas for some reason so we set up additional users. The SALES schema is accessed with the connect string: SALES_USER/[email protected]. (I don’t know where we got dot world from but that is not the current discussion.)
    One of the guys said that we should have 12 copies of the database running, which is kind of painful to think about in my opinion. Oracle is not a lightweight product and there are any number of ancillary processes that would have to be duplicated 12 times.
    My recommendation is that we have 12 schemas each for sales and inventory with 12 users each to access them. We would have something like JAN_SALES_USER, FEB_SALES_USER, etc. Each user would have synonyms set up for each of the tables it is interested in. When my program connects as MAY_SALES_USER, I could select from the customer table and I would get my 50 character address field. When the other user connects as JUL_SALES_USER, he would get his 100 character address field. Both of us would not know anything different.
    Another idea that came up is to have a logon trigger that would set the current schema for that user to the appropriate base schema. When JUL_SALES_USER logs in, the current schema would be set to JUL_SALES, etc. This would simplify things by allowing us to avoid having something like 2400 synonyms to maintain (which could be automated without too much difficulty) but it would complicate things by requiring a trigger.
    There are probably other ways to go about this we have not considered as yet. Any input you can give will be appreciated.
    Regards,
    /Bob Bryan

    Hans Forbrich wrote:
    I'd rather see you with 12 schemas than with 12 databases. Unless you have lots of CPUs to spare ... and lots of cash to pay for those extra CPU licenses.
    Then again, I'd take it one step further and ask to investigate the base design. There should be little reason to change the schema based on time. Indeed, from what little I know of your app, I'd have to ask whether adding a 'date' column and appropriate views or properly coded SQL statements might simplify things. Interesting. If we were to have one big Customer table with views for each month, how would we handle the case where the May people have to see 50 character address and July have to see a 100 character address field. I guess we could have MAY_ADDRESS VARCHAR2(50) and JULY_ADDRESS VARCHAR2(100) and take care to make sure that people connecting as May can only see the May columns, etc. This is simpler than multiple schemas?
    I may have overly simplified things in my effort to get something down that would not require too much explanation. The big thing is that multiple people are doing development and they have to be independent of each other. If we were to drop a column for July, the May people will have trouble compiling if we don’t keep things separate. It is not a case of making the data available. The data in development is something we cook up to allow us to test. The other part is the code we compile now will be released to production one of these times. In production, there is only a need for one database.
    We are moving from another database product where multiple databases are effectively different sets of files. We have lots of disk space so multiple databases were no problem. Oracle is such a powerful product; I can’t believe there is not some way to set up something similar.

  • Help with Sample 'Purchase Order' form

    HI Guys,
    Have been playing around with the supplied sample file 'Purchase Order'
    At the bottom of the form is a Part No., Description and Cost field that populate from a PartNoScript routine.
    Have been trying to copy this routine into my own form as its nearly the same.
    Question is  - There is a line 2/3rds down
      -  function getDesc(partNumber, descField, itemPrice)
    Where is the partName, DescField, ItemPrice store or located. I've looked in all the scripts, looked at the form fields and cannot find what these three relate too.
    I'm assume it must be the field name somehow but just cant seem to find them.
    Any help much appreciated.
    Dave
    ( With each passing day my knowlage grows stronger - One day I'll take over the world. !! )
    var partNo = new Array(" ",
                                                         "580463116",
        "25906311C",
                                                         "25129637J",
                                                         "771128",
                                                         "11198262A",
                                                         "57251",
                                                         "25906312A",
                                                         "51615223D",
                                                         "51615224D",
                                                         "516154CAC");
      // Array of part descriptions.
    var partDesc = new Array(null,
                                                                "Electric Fuel Pump",
                                                                "Air Flow Meter",
                                                                "Air Intake Sleeve",
                                                                "Fuel Filter",
                                                                "Fuel Injector Seal Set",
                                                                "Oxygen Sensor",
                                                                "Wiring Harness Upgrade",
                                                                "Brake Caliper left",
                                                                "Brake Caliper right",
                                                                "Brake Master Cylinder right");
    // Array of part prices.
    var partPrice = new Array(null,
                                                                  149.95,
                                                                  145.95,
                                                                  98.95,
                                                                  10.95,
                                                                  5.95,
                                                                  69.95,
                                                                  109.95,
                                                                  59.95,
                                                                  59.95,
                                                                  49.95);
    // Populate the part number Drop-down List.
    function populatePartNo(dropdownField)
          var i;
          for (i=0; i < partNo.length; i++)
             dropdownField.addItem(partNo[i]);
    // Populate the description and unit price fields.
    function getDesc(partNumber, descField, itemPrice)   -------------Where are these items/fields, defined or located. ?
       var i;
       for (i = 0; i < partNo.length; i++)                    // Go through the entire list of part numbers to find the one that is currently selected.
          if (partNo[i] == partNumber)                              // When we find the part number currently selected.
            descField.rawValue = partDesc[i];          // Put the description in the description field
                  itemPrice.rawValue = partPrice[i];          // and put the unit price in the unit price field.
                  break;                                                                                // No need to go further if there is a match.

    Hi Dave,
    Just to recap:
    There is script in the change event of the dropdown that calls the getDesc() function:
    // Populate the description and the unit price when we change the part number.
    partNoScript.getDesc(xfa.event.newText, txtDescription, numUnitPrice);
    This passes three parameters into the function:
    xfa.event.newText is the new item in the list that the user has just selected.
    txtDescription is the name of the Description object in the same Row that the user has selected from the dropdown.
    numUnitPrice is the name of the Unit Price object in the same Row that the user has selected from the dropdown.
    So the function is going to be receiving three pieces of information: the new value of the dropdown; the object deference for Description; and the object reference for Unit Price.
    Now if we look at the first line of the function:
    function getDesc(partNumber, descField, itemPrice)
    You can see that the function assigns the incoming parameters to new variables: partNumber; descField; and itemPrice. These variables only live within the function.
    For the purpose of the script in the function:
    partNumber = the value of the txtPartNum dropdown.
    descField = the object reference for the txtDesciption object in the Row that called the function.
    itemPrice = the object reference for the numUnitPrice object in the Row that called the function.
    Passing the value of the dropdown into the function is fairly straightforward (txtPartNum/partNumber). The clever bit is passing the object reference for the other objects in the Row into the function (eg txtDescription/descField).
    The script in the function includes a loop, which looks at the array. If the selected part number is in the array, then it sets the value of the txtDescription object in the same Row, by referencing the descField variable:
    descField.rawValue = partDesc[i];
    Does that make sense?
    In relation to the dropdowns:
    You can access the scripts in the Script Editor (5), including enter event, exit event, etc.
    You can access most of the dropdown properties in the various palettes (6).
    Hope that helps,
    Niall

  • FDS Test Drive - help with sample apps

    I'm trying to use the FDS 30 Minute TestDrive sample apps
    inside
    Flex Builder. I downloaded the test drive and all the samples
    work
    just dandy fine, and I can view the source etc. So I wanted
    to load
    some of the sample apps into Flex Builder so that I could
    modify and
    play with them with the debugger so as to learn more.
    I've tried the following:
    create New Project - use Flex Data Services/compile app
    locally
    Root Folder: C:\fds-tomcat\webapps\ROOT
    Root URL:
    http://localhost:8600/ROOT.
    When I click Finish, I get the
    following 3 errors in the Output panel:
    unable to load SWC fds.swc: multiple points
    unable to load SWC fds.swc: multiple points
    The definition of base class Locale was not found
    Could not resolve<mx:Application> to a component
    implementaion
    I am on Flex 2.0.143459.
    I've verified that fds.swc is indeed in the
    C:\fds-tomcat\webapps\ROOT\WEB-INF\flex\libs folder.
    I don't know what the other messages mean or what to do.
    I then stubbornly unzipped one of the sample apps into the
    FlexBuilder project folder (which I named FDS TestDrive
    Samples) and
    tried to run it anyway to see if I could get more info. I
    then get
    a browser window with the following additional errors:
    type Status report
    message /ROOT/FDS%20TestDrive%20Samples/Chat.html
    description The requested resource (/ROOT/FDS%20TestDrive%
    20Samples/Chat.html) is not available.
    So I guess one problem is that it is not making an html
    document.
    But I don't know how to correct that.
    I have no idea what to do. Any help would be GREATLY
    appreciated.

    Someone helped me offlist with this after I got frustrated
    that this forum is essentially dead. But in case anyone else needs
    this info, I thought I'd post. First you need to be on Flex version
    2.0.155577. So I had to redownload all of Flex, uninstall my older
    version, install the new version. Then I did the following
    to create the Flex Builder project for the dashboard sample
    app:
    File - > New -> Flex Project
    Select Flex Data Services
    Select Compile application locally
    Click Next
    Deselect "Use default local Flex Data Services Location"
    Click Browse... and open c:\fds-tomcat\webapps\ROOT
    Root URL:
    http://localhost:8600/
    Context root: /
    Click Next
    Project name: <Whatever you want to name it>;
    Deselect "Use default location"
    Folder: c:\fds-tomcat\webapps\ROOT\dashboard
    Click Next
    Main application file: dashboard.mxml
    Click Finish
    The Context root was really key. Also, to get my old projects
    back into Flex, I used file:import and then had to do a little
    additional fiddling with some of the projects' properties.
    Too bad this Forum is so dead. I've tried to get feedback to
    Adobe about that concern, but so far it hasn't helped. sigh

  • Help with Sample on Converting an XML string to a byte stream

    Hello All,<br /><br />I am sure this is something simple, but I am just not figuring it out right now.<br /><br />I am following the sample - "Converting an XML string to a byte stream" from the developer guide since I want to prepopulate just 1 field in my PDF form.<br /><br />How do I reference my form field within my servlet code properly??<br /><br />I have tried a few things now, my field is within a subform, so I thought it would be <root><subformName><fieldname>My data</fieldname></subformName></root>  I have also tried adding <page1> in there too.<br /><br />I am following everything else exactly as given in the sample code.<br /><br />I do have an embedded schema within the form and the field is bound.<br /><br />Thanks,<br />Jennifer

    Well, if you have a schema defined in the form, then the hierarchy of your data must match what is described in the schema. So, can't really tell you what it would look like, but just follow your schema.
    Chris
    Adobe Enterprise Developer Support

  • Need help with xml schema

    i have an xml file:
    <OrderInfo>
        <ItemID></ItemID>
        <ItemPrice></ItemPrice>
        <ItemID></ItemID>
        <ItemPrice></ItemPrice>
        <TotalItem></TotalItem>
        <TotalPrice></TotalPrice>
    </OrderInfo>i know ItemID and ItemPrice should be in an Item element, but I cannot change this format (other application use it).
    I would like to create a schema.
    I'm using the schema to validate the xml document that is being sent to my application.
    The ItemID and ItemPrice occurs in a sequence.
    Both ItemId and ItemPrice can be repeated unbounded (they are in fact a "group")
    TotalItem and TotalPrice occurs only once and at the end of the (ItemID, ItemPrice group)
    i would like a schema for this.
    <xs:element name="OrderInfo">
        <xs:complexType>
            <xs:group name="MyOrder">
                <xs:sequence>
                    <xs:element name="ItemID"  type="xs:positiveinteger"/>
                    <xs:element name="ItemPrice"  type="xs:decimal"/>
                </xs:sequence>
            </xs:group>
            <xs:element name="TotalPrice"  type="xs:decimal"/>
            <xs:element name="TotalItem"  type="xs:decimal"/>
        </xs:complexType>
    </xs:element>help?

    dvohra09 :
    thanx for your help. it seem that i cannot decalre an annonymous "group", which is ok, since i rather have a named group...which i can refer to later
    I have gotten the schema to work (below is the result..so other can use as an eample):
    xml file:
    <OrderInfo>
        <ItemID>1234</ItemID>
        <ItemDescription>Music CD</ItemDescription>
        <ItemPrice>10.99</ItemPrice>
        <ItemID>5678</ItemID>
        <ItemDescription>Star Wars 1 DVD</ItemDescription>
        <ItemPrice>19.99</ItemPrice>
        <TotalItem>2</TotalItem>
        <TotalPrice>30.98</TotalPrice>
    </OrderInfo>schema (xsd) file:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xs:element name="OrderInfo" type="orderType">
    <xs:complexType name="orderType>
        <xs:sequence>
            <xsd:group   ref="ItemInfo" minOccurs="1" maxOccurs="unbounded"/>
            <xsd:group   ref="saleInfo" minOccurs="1" maxOccurs="1"/>
        </xs:sequence>
    </xs:complexType>
    <xsd:group name="itemInfo" id="itemInfo">
        <xsd:sequence>
            <xsd:element name="ItemID" type="xsd:integer"/>
            <xsd:element name="ItemDescription" type="xsd:string"/>
            <xsd:element name="ItemPrice" type="xsd:decimal"/>
        </xsd:sequence>
    </xsd:group>
    <xsd:group name="saleInfo" id="saleInfo">
        <xsd:sequence>
            <xsd:element name="TotalItem" type="xsd:integer"/>
            <xsd:element name="TotalPrice" type="xsd:decimal"/>
        </xsd:sequence>
    </xsd:group>
    </xsd:schema>i was haing trouble referencing the group, but found out that the group requires a "name" attribute. What i still don't understand is what the group "id" is used for then?

  • Help with exp schema and related objects

    I need to export a schema from one database to another. I must also be able to export the tablespaces, roles, constraints, etc that are associated with it that aren't necessarily part of the schema. Is there an easy way to do this? I had already tried simply doing a schema exp/imp and it threw up a bunch of errors mostly grants which isn't that big of a deal but some of the tables were not created due to tablespaces being missing.

    exp system/manager file=exp.dmp log=exp.log full=y at the source database.
    imp system/manager file=exp.dmp log=imp_show.log full=y show=y - create the log file without importing the data
    edit the imp_show.log and extract the statements that are needed to re-create users,roles,alter user and grants.
    Pre-create the tablespaces using SQL*Plus in the target database.
    execute the modified imp_show.log(All DDl's)
    imp system/manager file=exp.dmp log=imp.log fromuser=A touser=B
    Re-compile all the Invalid Objects.
    HTH
    -Anantha

  • Help with a schema

    I an trying to create a schema to get an Excel workbook into xml so I can take that information and make a member list in inDesign CS6 so I don't have to type it by hand. When I bring the schema into Excel I get the XML Error dialogue box. The description on of the error is:
    Description : /schema/element[1][@name = 'memberList]/sequence[1]Element 'xs:sequence' is not allowed in the context.
    The following is the code and I would appreciate any help I can get. Or even directed to the proper forum if this isn't the place.
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="memberList">
    <xs:sequence>
    <xs:simpleType>
    <xs:element name="member">
    <xs:element name="lastname" type="xs:string"/>
    <xs:element name="firstname" type="xs:string"/>
    <xs:element name="phone" type="xs:string" minOccurs="0"/>
    <xs:element name="streetAddress" type="xs:string"/>
    <xs:element name="city" type="xs:string"/>
    <xs:element name="state" type="xs:string"/>
    <xs:element name="zipcode" type="xs:string"/>
    <xs:element name="email" type="xs:string" minOccurs="0"/>               
    </xs:element>
    </xs:simpleType>           
    </xs:sequence>   
    </xs:element>
    </xs:schema>

    Try copy and save the below. Just open it from the XML Maps button.
    <?xml version="1.0" encoding="utf-8"?>
    <MemberList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <member>
              <lastname></lastname>
              <firstname></firstname>
              <phone></phone>
              <streetaddress></streetaddress>
              <city></city>
              <state></state>
              <zipcode></zipcode>
              <email></email>
         </member>
    </MemberList>
    Alternatively, save the below as an XML file. Click on the Data Tab in Excel, then From Other Sources and choose XML. Open the below XML after saving it.
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <MemberList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <member>
    <lastname>LastName</lastname>
    <firstname>FirstName</firstname>
    <phone>555-555-5555</phone>
    <streetaddress>streetaddress</streetaddress>
    <city>City</city>
    <state>State</state>
    <zipcode>Zip code</zipcode>
    <email>email</email>
    </member>
    </MemberList>
    Excel will generate the map.
    Take care, Mike

  • Help with Sample 'Purchase Order'

    Hi All,
    My brain is starting to reject my body looking at the sample 'purchase Order' form that ships with Livecycle.
    I have a form very similar to Purchase Order and I am trying to use the same format as the Purchase order on my form.
    What I have been tring to figure out is where are the stored values kept for the drop down lists.
    Namely the Text Part Number field.- Use name (txtPartNum) .  when you click on the drop down list there are several part numbers to which you can click and it autofills adjactent fields with the part Name and costs
    What I can not find is where those values are stored and how to change them. I dont think they are external from the form.
    If somebody could explain how this section of the form works and how it auto populates the adjacent fileds, I should be able to intergrate it into my form. ( Please remeber to speak slow as I'm still finding my way around )
    Many Thanks in advance.
    Dave

    Post your questions in the forum for LiveCycle Designer.

  • Help with extending schema for redhat ldap sudo integration.

    Hi all,
    I've done LDAP administration for a few years, but I'm new to Directory server and I'm a bit stuck. I want to apply a custom schema and allow sudoers in our CentOs (Redhat) Linux servers. They're authenticating correctly, but I can't get sudoers to work. I've followed this documentation to update my schema.
    http://kbase.redhat.com/faq/docs/DOC-2057
    I'm having issues with the step that creates the SUDOers group as the following.
    dn: ou=SUDOers,dc=example,dc=com
    objectClass: top
    objectClass: organizationalUnit
    ou: SUDOers
    I want to make administration easy via the Workgroup manager so I don't have to manually add users to this group via ldif files. When I create a sudoers group via the workgroup manager, I get this dn
    cn=sudoers,cn=groups,dc=spidertracks,dc=local
    As you can see, it's a cn, not an ou. Furthermore, how do I get the defaults in the sudoer's group so that redhat recognizes the setup, but users can be assigned via the workgroup manager?
    Thanks,
    Todd

    Anyways , I've created an LDIF for Active Directory with theses attributes and class objects.
    Don't really know if this is needed inside AD or not.
    If anyone wants these LDIFs for some reason, drop me a line. Keep in mind that they are a work in progress, so, if you find anything you dont like and would like to change it, please do let me know so I can update my versions aswell.
    If anyone got any idea regarding the last questions I posted, please do let me know aswell
    Rp

  • Newbie help with sample Studio app. "Plain Text Editor"

    I'm trying to make the jump from AppleScript to AppleScript Studio, and because I want to eventually write a document producing application I thought I'd start with the textbook example "Plain Text Editor" included with Xcode. I think I see how menu items are connected to "Target/Actions," and I was able to build and run it without difficulty. It's remarkable how little AppleScript had to be written to produce a rudamentary text editor. But in playing with the built application, I noticed that the Revert menu item does not work exactly as expected.
    If you create a text document, and then make some change to it, and then click the Revert menu item, you get the expected little dialog asking if you want to revert to the most recently saved version, but if you then click the Revert button, the text displayed in the text view object does not revert to the original. However, something is happening, because whatever code is behind the Save, Close, and Quit menu items does seem to be "aware" that the Revert item has been invoked: because if you click one of these after Revert, the "do you want to save changes?" warning doesn't appear, just as one might expect.
    The Revert menu item seems to be connected to a "Target/Action" called "revertDocumentToSaved:" which sounds perfectly reasonable. But does the fact that Revert doesn't cause the displayed editing text to revert mean that (a) there is a bug in the code behind this Target/Action, or (b) that the writer of this textbook example just didn't bother to do everything needed for the Revert item to work in an intuitive manner?
    Whichever the answer, what would I do to make it work properely?
    It seems like there must be some sort of connection between the text view object in the editing window, and the Close, Save, Quit suite of menu items, because the behavior of these is dependant on whether or not there are unsaved changes in the text view object. But looking through the Inspector for this object, I don't see any, neither AppleScripts, nor Outlets, nor Target/Actions. Where and for what should I be looking?
    Dual 1.2 GHz   Mac OS X (10.4.8)  
    Dual 1.2 GHz   Mac OS X (10.4.8)  

    I think -- and I'm sure someone will correct me if I'm wrong -- that this is a place where AppleScript Studio's implementation just isn't done right. Either they intended to add a "revert" handler somewhere and forgot, or else they meant to have it send an existing message and didn't.
    I haven't done any document-based applications -- heck, I've only dabbled slightly in AppleScript Studio -- so there may be a "deeper" answer to this, but you might consider just hooking the menu item up to send its "choose menu item" handler to your document script, and have it react accordingly.

  • Help With Sample Editor...

    I'm trying to play an audio file at a slower tempo (to study something) while not changing the pitch.
    I double clicked the file in the arrange window, and highlighted a section of it in the Sample Editor. The options in the Digital Factory are all still greyed out however, so Time and Pitch manipulation won't work...what am I doing wrong here?
    Thanks
    Tom

    Make sure the file is in an uncompressed format, like AIFF instead of AAC. You can convert the file in iTunes. This solved the problem for me when I ran into the same issue.

  • Help with sorting a list

    Hi,
    can anyone help me with sorting of a list by date?
    I have like 5 objects in the list, 4 are string and one is list.
    I want to sort them by Date..
    How can I do that?
    I don't know if I can use CompateTo?? I am new to programing, I would appreciate if anyone can explain with sample code.
    Your help is appreciated.

    ASH_2007 wrote:
    Hey thanks for your response, but there is a little problem with what I said earlier.
    Actually my List is a type of record (it's called Employee record)
    Here what exactly I have:
    for Iint i=0; i< employeeRecord.getList().size(); i++)
    EmployeeRecord emp = employeeRecord.getList().get(i);
    //so if I can not hold my date information in an object, coz it's says type mismatch
    //I am not sure how can I do this?
    }Can you please help with sample code?
    Thanks tonsEither cast or learn about generics. Also, use an Iterator or a foreach loop, NOT get(i).
    [Collections tutorial|http://java.sun.com/docs/books/tutorial/collections/]
    [Generics intro|http://java.sun.com/j2se/1.5.0/docs/guide/language/generics.html]
    [Generics tutorial|http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf]
    Foreach

  • Hello Members Please Help Error Installing Sample Schemas (HR)

    Hi members, and thank you for your help.
    After much mulling I have installed Oracle 12c (64b) on my Windows 7 64b SP.
    Apparently everything is working fine, I can access both from the web (EM Express) an SQL Plus as SYS for example.
    he probelma is:
    I downloaded and unzipped winx64_12c_examples and have installed correctly.
    I have verified that you have added the files in the respective folders.
    For example, in C: \ Oracle12c \ product \ 12.1.0 \ dbhome_1 \ demo \ schema \ human_resources I have the 10 files.
    12/10/2002 19:27 1,173 hr_analz.sql
    29/08/2002 14:29 2,825 hr_code.sql
    29/08/2002 14:29 7,387 hr_comnt.sql
    29/08/2002 14:29 9,718 hr_cre.sql
    29/08/2002 14:29 16,439 hr_dn_c.sql
    Hr_dn_d.sql 934 29/08/2002 14:29
    29/08/2002 14:29 1,196 hr_drop.sql
    29/08/2002 14:29 1,410 hr_idx.sql
    27/05/2011 11:25 3,368 hr_main.sql
    15/08/2008 18:12 46,647 hr_popul.sql
                   10 files 91 097 bytes
    Now I come to install the samples as indicated in the link:
    http://docs.oracle.com/cd/E16655_01/server.121/e15979/installation.htm
    The inputs...
    SQL * Plus: Release 12.1.0.1.0 Production on Tue Sep 6 1:21:36 2013
    Copyright (c) 1982, 2013, Oracle. All rights reserved.
    Enter the user name: sys as sysdba
    Enter the password ± to:
    Connected to:
    12c Oracle Database Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Advanced Analytics and Real Application Testing opt
    ions
    SQL> @? / Demo / schema / human_resources / hr_main.sql
    specify password for HR as parameter 1:
    Enter a value for 1: passw
    specify default tablespeace for HR as parameter 2:
    Enter a value for 2: users
    specify temporary tablespace for HR as parameter 3:
    Enter value for 3: temp
    specify password for SYS as parameter 4:
    Enter value for 4: passw
    specify log path as parameter 5:
    Enter a value for 5: C: \ Oracle12c \ product \ 12.1.0 \ dbhome_1 \ demo \ schema \ log\
    The output is full of errors and seems not to have done anything ... ?
    However, if I have created the LOG in the right direction.
    Below I put the full LOG output.
    ===============================================================================
    C:\Oracle12c\product\12.1.0\dbhome_1\demo\schema\log\hr_main.log
    ===============================================================================
    DROP USER hr CASCADE
    ERROR at line 1:
    ORA- 01918 : user ' HR ' does not exist
    CREATE USER hr IDENTIFIED BY passw
    ERROR at line 1:
    ORA- 65096 : user or role name shared Invalid
    ALTER USER hr DEFAULT TABLESPACE users
    ERROR at line 1:
    ORA- 01918 : user ' HR ' does not exist
    ALTER USER hr TEMPORARY TABLESPACE temp
    ERROR at line 1:
    ORA- 01918 : user ' HR ' does not exist
    GRANT CREATE SESSION , CREATE VIEW, ALTER SESSION , CREATE SEQUENCE TO hr
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    GRANT CREATE SYNONYM , CREATE DATABASE LINK , RESOURCE, UNLIMITED TABLESPACE TO hr
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    Online .
    GRANT execute ON TO hr sys.dbms_stats
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    ERROR :
    ORA- 01017 : invalid username / password , logon denied
    Warning :no longer connected to ORACLE !
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating table COUNTRIES ****** ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOBS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOB_HISTORY table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMP_DETAILS_VIEW view ...
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** countires table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOBS ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOB_HISTORY ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0641 : " EXECUTE " requires connection to the server
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------ END
    Thats is all, I think ....
    So here I come, continued searching google and forums but can not find a solution to this problem.
    Please appreciate any help with this, I need the sample database running.
    Thank you very much in advance and good luck.

    NEW ... LAST CHANGES !!
    I changed the PDB, which appeared as mounted pdborcl been open with the command:
    alter pluggable database pdborcl open;
    SQL> connect system/oracle@localhost:1521/pdborcl as sysdba
    Conectado.
    SQL> SELECT NAME, OPEN_MODE, RESTRICTED, OPEN_TIME FROM V$PDBS;
    NAME                           OPEN_MODE  RES
    OPEN_TIME
    PDBORCL                        READ WRITE NO
    06/09/13 20:54:33,875
    And now I repeat the process ...
    SQL> @? / Demo / schema / human_resources / hr_main.sql
    specify password for HR as parameter 1:
    Enter a value for 1: passw
    specify default tablespeace for HR as parameter 2:
    Enter a value for 2: users
    specify temporary tablespace for HR as parameter 3:
    Enter value for 3: temp
    specify password for SYS as parameter 4:
    Enter value for 4: passw
    specify log path as parameter 5:
    Enter a value for 5: C: \ Oracle12c \ product \ 12.1.0 \ dbhome_1 \ demo \ schema \ log\
    And The output  of the log has been changed !!!!
    ===============================================================================
    C:\Oracle12c\product\12.1.0\dbhome_1\demo\schema\log\hr_main.log
    ===============================================================================
    User deletion.
    User created .
    User changed.
    User changed.
    Grant finished properly.
    Grant finished properly.
    Online .
    GRANT execute ON TO hr sys.dbms_stats
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    ERROR :
    ORA- 01017 : invalid username / password , logon denied
    Warning :no longer connected to ORACLE !
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating table COUNTRIES ****** ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOBS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOB_HISTORY table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMP_DETAILS_VIEW view ...
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** countires table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOBS ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOB_HISTORY ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0641 : " EXECUTE " requires connection to the server
    we move forward
    Comments are welcome
    Thanks again !

Maybe you are looking for