Confusion over Engine VersionString

I downloaded and installed the lastest 4.0.1f Patch (which wonderfully fixes my variables view window) and wanted to put some code in my program to disable the variables view if the version of TestStand the user is running is less than this patch.  When I retrieve Engine.VersionString, the value is 4.0.1f1 (4.0.0.1030) while the MajorVersion is 4, the MinorVersion is 0, and the RevisionVersion is 0.  Why is the Revision 0?  Shouldn't it be 1?  Since I can't seem to find BuildVersion, I have to resort to parsing up the VersionString.  Is there something I am missing?
I can see where having the BuildVersion would be pretty handy since the named version isn't the same as the numbered version.
Any advice would be appreciated.

Richard,
To answer your question - Why is the Revision 0?
Because 4.0.1 is really an upgrade of 4.0 and not a seperate new version of TestStand. Hence,  the internal version is kept as 4.0.0 for technical reasons.
You could either parse the versionString you get from the engine or use windows SDK to get the version of tsengine.dll.
We are planning to add API to get buildVersion in a future version of TestStand.
Regards
Anand Jain
National Instruments
Message Edited by Anand Jain on 02-07-2008 02:29 PM

Similar Messages

  • Still confused over fup changes to Total BB option...

    There still seems to be confusion over the planned changes for Total BB Option 1 customers.
    Although KerryG has informed us that the monthly allowance will remain at 10Gb and the charge for additional use will be changing to £5 per 5Gb, BT customer services seem to think the extra usage charge remains the same as it is now.
    Please see posts from KerryG and bobm here -
    http://community.bt.com/t5/BB-in-Home/WHERE-IS-OUR​-USAGE-MONITOR-BT/m-p/41085#M24680
    Does anyone have any further info please ?

    Hi Del
    I can confirm that the info I provided on the earlier thread was correct.  I am sorry if people have received other information when calling in.  I have fed this back to the relevant teams to make sure all advisors are aware of these recent changes. 
    To clarify, the position for BT Total Broadband Option 1 is:
    Usage allowance – will remain at 10GB
    Additional usage charges – they will be charged at 5GB for £5 (rather than 1GB for £1) as from November 1st 2010.
    As mentioned before, there are a couple of links that may be useful for those who think they may be likely to incur additional usage charges and wish to review which broadband option is best for them:
    Details of usage allowances for each option
    Details of options for upgrading your broadband package
    Thx
    Kerry
    Retired BTCare Community Manager - StephanieG and SeanD are your new Community Managers
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Confusion over Native Query Result List

    I have this confusion over the field object of a resultList of a Native query. This is because it has contradicted the idea of the books for me.
    This is a pure example
    @SqlResultSetMapping(name="LoanCapitalization.reportMapping",
    columns={
        @ColumnResult(name="policy_number"),
        @ColumnResult(name="policy_holder"),
        @ColumnResult(name="amount"),
        @ColumnResult(name="outstanding_loan"),
        @ColumnResult(name="interest"),
        @ColumnResult(name="amount_to_date"),
        @ColumnResult(name="effective_date"),
        @ColumnResult(name="sub_system_code")
    @NamedNativeQuery(name="LoanCapitalization.aggregateStatement", query="SELECT   l.policy_number, l.last_name || ' ' || l.first_name as " +
            "policy_holder, l.amount, c.out_principal_bf as outstanding_loan, c.out_interest_bf as interest, " +
            "SUM (r.repayment_amount) as amount_to_date, c.effective_date, l.sub_system_code FROM loan l JOIN v_latest_capitalization c " +
            "ON l.loan_id = c.loan_id JOIN loan_repayment r ON l.loan_id = r.loan_id WHERE " +
            "c.effective_date BETWEEN ?1 AND ?2 GROUP BY l.policy_number, l.last_name, l.first_name, l.amount, " +
            "c.out_principal_bf, c.out_interest_bf, c.effective_date, l.sub_system_code order by l.sub_system_code, l.last_name",
            resultSetMapping="LoanCapitalization.reportMapping")and
    Query query = entityManager.createNamedQuery("LoanCapitalization.aggregateStatement");
            AggregateStatementLoanBalanceReportData data = null;
            List<AggregateStatementLoanBalanceReportData> returnList = new ArrayList<AggregateStatementLoanBalanceReportData>();
            query.setParameter(1, reportCriteria.getFromDate());
            query.setParameter(2, reportCriteria.getToDate());
            List<Object[]> resultList = query.getResultList();
            System.out.println("resultList.size() >>>>>>>>>> " + resultList.size());
            for (Object[] obj : resultList){
                data = new AggregateStatementLoanBalanceReportData();
                System.out.println("(String)obj[1] >>>>>>>>>> " + (String)obj[1]);
                System.out.println("(String)obj[2] >>>>>>>>>> " + (String)obj[2]);
                System.out.println("(String)obj[3] >>>>>>>>>> " + (String)obj[3]);
                System.out.println("(String)obj[4] >>>>>>>>>> " + (String)obj[4]);
                System.out.println("(String)obj[5] >>>>>>>>>> " + (String)obj[5]);
                System.out.println("(String)obj[6] >>>>>>>>>> " + (String)obj[6]);
                data.setPolicyNumber((String)obj[0]);
                data.setName((String)obj[1]);
    .......My first shocking surpise is that all the System.out.println() return nulls but
    System.out.println("resultList.size() >>>>>>>>>> " + resultList.size()); returned 1.
    so can anyone suggest what the problem may be.
    Regards,
    Michael

    I came across your post as I experienced the same problem. As I found no answers I tried different let's say stupid solutions.
    The one that solved my problem was to write the name for the @ColumnResult in capitals as I noticed that Oracle transforms the alias column names into capitals. I guess otherwise the mapping doesn't occur correctly.
    My example:
    @SqlResultSetMappings({
    @SqlResultSetMapping(
    name = "Customers.searchCustomers",
    entities =
    @EntityResult(entityClass = Customers.class)
    columns =
    @ColumnResult(name = "CONTACTDATE"),
    @ColumnResult(name = "CONTRACTDATE")
    String queryString =
    "SELECT c.CUSTOMER_ID, c.LAST_NAME, c.FIRST_NAME, c.OPU, c.CUSTOMER_CORE_ID, " +
    "to_char(con.CONTACT_DATE, 'yyyy-dd-mm') AS CONTACTDATE, to_char(contr.CONTRACT_DATE, 'yyyy-dd-mm') AS CONTRACTDATE " +
    "FROM CUSTOMERS c " +
    "LEFT JOIN CONTACTS con ON con.CUSTOMER_ID = c.CUSTOMER_ID AND con.ACTIVE = '1' " +
    "LEFT JOIN CONTRACTS contr ON contr.CUSTOMER_ID = c.CUSTOMER_ID AND contr.ACTIVE = '1' " +
    "WHERE c.CAMPAIGN_ID = ?1 AND upper(c.LAST_NAME) LIKE ?2 AND upper(c.FIRST_NAME) LIKE ?3";
    query = em.createNativeQuery(queryString,
    "Customers.searchCustomers");

  • Confusion over ASM

    Hi All,
    i was going through ASM docs and so far my understanding " its is purely an instance which has got only the metadata of all the RDBMS instances using that ASM"
    In ASM instance we dont have redo log file, datafiles etc then what is the functionality of DBWr and LGWr background processes in ASM instnace?
    Regards,
    ASM

    Hans Forbrich wrote:
    Aman,
    Even I started with the misinterpretation that ASM handles I/O for the database. Not quite correct.
    In the simplest explanation of ASM I've come up with is: Actual database I/O is 'raw', with the benefit that ASM manages the table of contents of the disk. The database server process asks ASM where to start reading; the DBWR asks ASM where to start writing - both server process and DBWR still operate.
    "The Oracle ASM instance manages the metadata and provides space allocation for the Oracle ASM files. When a database instance creates or opens an Oracle ASM file, it communicates those requests to the Oracle ASM instance. In response, the Oracle ASM instance provides file extent map information to the database instance."
    This is taken from the 11gR2 ASM manual in Chapter 1 http://download.oracle.com/docs/cd/E11882_01/server.112/e10500/toc.htm at Fig 1-1
    Hans,
    Thanks so much for the correction and for the link. I stand corrected, ASM does teh metadata writes only, the actual data IO operations are handled by the db's background processes only.
    Just now, I opened [ASM Under the Hood book|http://www.amazon.com/Oracle-Automatic-Storage-Management-Under/dp/0071496076] and was reading it to find the answer and page no 44 clearly mentioned the same what you have just said. Here is a note from the same page about DBWR ,
    >
    This processes manages the SGA buffer cache in the ASM instance. DBWR writes out dirty buffers ( changed metadata buffers ) from ASM buffer cache to disk. >
    Which I believe is a very clear explanation that ASM processes just maintain metadata stuff. Thanks so much once again!
    @Gurfan, Eduardo,
    Apologies for any confusion that I unknowingly have created. Please read Hans's reply and mine over here.
    regards
    Aman....
    Edited by: Aman.... on Oct 10, 2009 7:24 AM corrected page no, it was 44 :-( .

  • Confusion over the many ways to represent channels

    So I'm making progress on my task, but figuring out the intent of each of these channel representations is still throwing me for a bit of a loop.  So far I've run across...
    Channel Name      : string       : "MyChannel"
    Channel Reference : string       : "[1]/MyChannel"
    Channel Number    : integer      : "1"
    Channel Object    : object
    Channel List      : element list : (seems to be a generic list object)
    Channel String    : string       : "1-3,5,7-10"
    There are probably more I haven't encountered yet.  VBScript's variant-with-subtype nature is making it harder for me to make sense of how everything fits together.  Frequently I *think* the arguments and data types match up only to find out the scripting engine disagrees with me.  In any case, the various channel representations combined the mix of object-oriented and functional APIs is making my head spin.  On top of that, the documentation doesn't seem to be entirely consistent with the naming conventions it uses.
    Does anyone know why there are so many types of channel represenation and what they are each intended to be used for?

    Thanks Walter, that does help.  After reading your post and going over the Channel Refences in the help file for the eleventh time, I think I'm understanding it better.  There are still some things that don't make sense to me.  Mostly I think they are either me just not getting it yet or documentation errors.
    Example 1
    If you type the following code, (and assuming you have at least 3 channel groups)
    logfilewrite("----------")
    dim chList, chan
    set chList = data.GetChannels("[3]/*")
    logfilewrite("Count: " & chList.Count)
    set chan = chList(
    the pop-up help tells you the input parameter is a reference, but finishing that line with,
    set chan = chList("[3]/[1]")
    results in a type mismatch error.  Just this morning I realized it is actually displaying the help for the GetChannels method, not the ChannelList.Index method like it should.
    Example 2
    The help for ChnLinGenImp says the return value "is a String variable type. Receives the name of the new channel."
    logfilewrite("----------")
    dim chans(4), i
    for i = 1 to 4
    chans(i) = ChnLinGenImp(i, 100, i, 0)
    ' chans(i) = ChnLinGen(i, i, i, 100)
    logfilewrite(chans(i))
    next
    If you run this script you'll see it actually returns the channel reference, not the channel name.  The ChnLinGen function also claims to return the channel name but instead returns a reference.
    Example 3
    ChnLinGen and ChnLinGenImp also differ from each other in very important way that the documentation doesn't tell users about.
    logfilewrite("----------")
    dim chans(4), groups(2), i, j
    data.Root.Clear
    for j = 1 to 2
    set groups(j) = data.Root.ChannelGroups.Add("Group" & j)
    data.Root.ChannelGroups(j).Activate
    for i = 1 to 4
    chans(i) = ChnLinGenImp(i, 100, i, 0)
    ' chans(i) = ChnLinGen(i, i, i, 100)
    logfilewrite(chans(i))
    next
    next
    If you run the script like this you get the results I (and probably most people) expect.  Two groups each with 4 channels.  But when you replace ChnLinGenImp with ChnLinGen and run the script instead of adding channels to the (active) second group, it overwrites the channels in the (inactive) first group.
    I had to read the two help pages pretty closely before I understood what is happening.  ChnLinGenImp will always create a new channel in the active group.  The first argument (the crypticly named "GHdChnName") is for what you want the new channel name (as opposed to channel reference) to be.  If the suggested channel name already exists it will append a number to make the new channel name unique.  ChnLinGen's first argument "specifies the result channel," meaning it will accept any argument that resolves to a single channel.  If that channel already exists, it gets overwritten.  ChnLinGen appears to interpret the first i as a channel index rather than a channel name.
    Intuitively I expect these two functions to behave similarly.  I understand the ability to generate implied channels may have been added years after generating real channels and it may not have been possible to design the ChnLinGenImp behavior to be the same as ChnLinGen, but they are in the same family of functions and when there are behavioral differences between similar functions those differences need to be highlighted.  Once I understood the behavior of these two functions, the documentation made more sense to me.  It did little to alert me about the differences before the fact.
    Incidentally, I know I can get ChnLinGen to behave the same by simply changing the call to something like,
    chans(i) = ChnLinGen("[" & j & "]/" & i, i, i, 100)
    ...but the cost of working with an api isn't driven by how long it takes me to type in the correct code, it's driven by how long it takes me to figure out what the correct code should be.  And while these snippets are clearly contrived examples, I believe they illustrate the underlying problem of an inconsistent api and ambiguous (or sometimes just plain wrong) documentation.
    I'm new to DIAdem and I like the customizability, but I sure hope NI can allocate sufficient resources to fix the shortcomings.

  • Confused over photostream and I cloud, how to move my pictures

    Hi, 
    I have an iPhone 4S and an iPad 2.  Apple store sold me cloud storage over a year ago as my phone needed to be replaced under warranty and I had to back up.  I paid to continue after the year was up. 
    I am horribly confused however as I apparently have 15GB storage I have paid for with 10.6GB available and yet I cannot change to iOS 7 as there isn't enough memory in my phone. 
    I have synced to iTunes and can't get to my photos which are in photo-stream.  Ideally I would like to take all of my photos in photostream and save them onto my PC but I don't know where they are in order to do this.
    Any help much appreciated as I'm about to throw the lot out of the window having read what feels like the entire apple support community and getting more and more confused.
    Many thanks
    Lisa

    As I think you have realised, you need space on your phone for the update.
    Welcome to the Apple Community.
    My webpage here might help you understand the various ways photos can be saved on your device and some of the advantages and disadvantages associated with each method.

  • Premier Elements 7 - confusion over mixing video formats

    Hi
    I have been using a DV camcorder (SD quality) for some time, originally recording in 4:3 format, and more recently in 16:9 format (as we bought a wide screen telly).
    I have just treated myself to a new AVCHD Panasonic video recorder recording High Definition footage in 1080 16:9 PAL format onto an SD memory card.
    I wanted to take all this footage and put it on my computer to edit it together and start making some films to keep for the future - on DVD for now, and at some point on Blue Ray. To this end I have just purchased Adobe Premier Element 7.0, with Photoshop Elements 7.0 bundled together.
    My confusion is that it appears I can only use one format in a "project" as I need to define the parameters for the "project" in terms of SD vs HD and 4:3 vs 16:9. I was hoping to be able to store all of my footage of various quality definitions and screen ratils into a "library" (which I see is called "Organiser" in Adobe terms) on the hard disk, and then pick and choose from the "library" what to put into each "film project" as I make them, mixing formats as I wish. I realise that in this way, the output would itself switch from 3:4 to 16:9 etc on accasions as I switch scene to use a different format, and so may not appear to be the smoothest edit.... but I thought that would be my decision to do if I wanted it. Instead it appears I cannot mix a few minutes if 4:3 SD footage of my son as a baby, with more recent 16:9 1080 HD footage of him as a boy - which is a real shame as it is what I wanted to do....
    Have I misunderstood, or am I right in thinking I am limited in this way?
    Why can I mix still photos of any format with video , but not mix different formats of PAL video?
    Many thanks

    Thanks Paul
    I have been having go, as you suggest, and as you said, I cannot edit my AVCHD footage in Scene mode as it has 5.1 audio (which I cannot change on the videocam) This is very disappointing as I really wanted the simplicity of the scene editing rather than timeline.... This is compounded by the fact that timeline editing seems even more complicated than normal as each new AVCHD clip I add is placed onto a different video track (not all on track 4 as you thought)- so it is real mess to work out on my screen.... Is this a bug, the way PRE treats 5.1 tracks - or is it just oversight and poor design? Do you think it might be addressed by Adobe?
    Anyhow, thanks for explaining what is going on, as without your warning, I would have assumed that the PRE 7 sceneline feature was broken - you would have thought there would be some warning / documentation from Adobe about this, as effectively, a big feature is now unavailable to me as an AVCHD user - and the product claims to be compatible with AVCHD!
    Would you be able to advise on a couple more of my "newbie" file format questions?
    How do the settings work between setting the initial PROJECT format, and then choosing the various OUTPUT (sharing) settings. For example, if I want to edit a project using AVCHD clips only, and output it to DVD quality to watch on a PC or burn to DVD disk, do I get the same thing if I set the project setting to PAL AVCHD High Def 1080 5.1 and then the share setting to DVD quality output, as I would if I set the project settings to DV 48hz and the share setting to DVD quality output?
    My ideal would be to retain the High Definition of the footage through the editing process and then be able to output to DVD quality now, but to be able to come back to the finished edited project in the future and choose to output it to Blueray when I have upgraded my TV and bought a blueray player. i.e. I am trying to make my filming and edited projects a bit futureproof....
    Finally, I am just not up enough on all the different format lingos (Mpeg1, MPeg2, H.116 etc) to know what I should be choosing from the list for:
    1) outputting edited footage to burn onto a DVD to be used on a DVD player
    2) outputting edited footage to save onto a PC to view in the best possible quality on a PC
    Do you know?
    Many thanks

  • Confusion over nested tables and system generated nested tables

    Hi,
    I have been reading other threads about nested tables, naming and updating them etc, but I have what seems
    to me some odd behaviour.
    I modified my schema to set the attribute xdb:maintainDom to be false for a collection and then registered
    the schema with the generate tables option defaulted to true. The result was that I had to add xdb:tableProps
    attributes specifying nested table storage at each element above the collection element, this was because Oracle
    was creating tables at each level. So I have this kind of thing:
    <xsd:element name="BibPt" xdb:SQLType="BIBPT_T"
      xdb:defaultTable="BIBPT"
      xdb:tableProps="NESTED TABLE XMLDATA.PTEES.PTEE_SEC.PTEE STORE AS NESTED_PTEE_SEC
    NESTED TABLE XMLDATA.INVS.INV STORE AS NESTED_INV_BIBPT TABLESPACE BIBLIO">
    <xsd:element name="Ptees" xdb:SQLType="PTEES_T" xdb:tableProps="NESTED TABLE
    XMLDATA.PTEE_SEC.PTEE STORE AS NESTED_PTEE_SEC2">When I did this the nested tables were created, but when I loaded data never had anything in them. Instead
    I found that nestes tables with systems generated names like "SYSNTxxxxxxxxx" has been created that contained
    the data.
    When I registered the schema without the tables being generated, I created a table with this syntax:
    create table poc_wip2 of xmltype
    xmlschema "http://www.derwent.co.uk/wpi.xsd" element "WPI"
    NESTED TABLE XMLDATA."BibPt".PTEES.PTEE_SEC.PTEE STORE AS NESTED_PTEE_SEC
    NESTED TABLE XMLDATA."BibPt".INVS.INV STORE AS NESTED_INV_BIBPT(Thanks to a posting by Sam Monsarrat which showed me this was possible).
    Now I had my named nested tables, which contained the data after it was loaded and no system named
    nested tables.
    So why the difference?
    In the first instance why do my named nested tables stay empty and why does the data go into system
    generated tables I have no control over as regards tablespace placement?
    Is it possible to have a XML schema registered that only generates tables that I have named with the defaultTable
    attribute, rather than all or nothing?
    And last but not least, what's the best approach for this, since I want to be able to access the data via indexes
    on the nested tables.
    Thanks
    Pete

    Hi Pete
    Would you please publish the schema you are using?
    Thanks,
    Tobias

  • Very Confused over Reinstall Discs, Recovery Discs and how do I CREATE THEM!

    I am the owner of a Lenova IdeaCenter K300 Computer with Windows 7 64Bit OS
    The system has been running for just about a year now...no issues, very stable...however after a recent issue with another computer MFG system...I have questions:
    First the Other MFG system - The computer was purchased in April of 2008 with Windows Vista, the computer was unplugged on November 1, 2008 and stored in a cool Dry place....In October of 2011 My Godson wanted a new computer and I told him I have a computer that was lightly used and would do what he wanted it to do.
    I plugged in a monitor, keyboard, mouse, and turned on the unit when MUCH to my surprise the HD had failed...BADLY...so I went to a local store, purchased a new HD and installed it on the machine. 
    First let me explain that this computer MFG after several calls to them looking for help.. explained to me the following
    1: Reinstall Discs were NOT avail
    2: The System did not support creating Recovery discs since all the information that the system needed was stored on
        the Hard Drive that was supplied with the system...and that the OEM Windows VISTA version was available to use for
        3 years
    I said Okay, but I have a computer that had a HD failure so how do I go about reinstalling Windows Vista to get the computer up and running again?  They told me that I had to PURCHASE from a store a copy of Windows Vista.   I said that I had from two other computers from another MFG Windows Vista Reinstall Discs, can I use those, and use the Product Key code supplied by YOUR company to reintsall the OS?  They said NO...you need the orginal Hard Drive....I was like WHAT!
    Needless to say you can imagine my EXTREME frustration over not being able to get the computer up and running again.  After several calls to the Presidents Office I was finally....after 6 weeks of battle able for a cost mind you of $19.99 to get physical DVD's to reintall Windows Vista onto the system - (they should arrive this week)
    So now I am sitting in front of this LENOVA computer wondering ...Worse CaseScenerio...HD FAILURE...and lets face it it DOES HAPPEN.
    so here are my questions
    1: What is the difference between Recovery Disc and Reinstall Dics?
    2: If this Lenova System can only Create Recovery Discs ...and the HD needs to be replaced will the Recovery discs reintsall Windows 7 on this system?
    3: How do I create these discs...I found an option on Lenova Rescue System to create Recovery Discs but it was 24  4.5 GB DVD's to do this?  Windows Vista only needed 2
    Am I missing something here can some one Please help me
    thank you!

    They should sell you recovery disc without any problems. If you call customer service and you feel that the conversation is going no ware you probably talking to wrong person. Disconnect and tray another time, you will never speak to the same person twice
    OEM reinstall disc doesn’t need activation, retail windows disc needs but you have serial number on the sticker so just call Microsoft and activate it.
    Recovery disc is a copy of your computer hard drive with windows, drivers, software included
    Reinstall disc is the same for all computers with windows only, you have to install drivers and software separately
    Reinstall OEM disc is only for Lenovo system but it is the same like retail windows disc with added pre-activation

  • Confused over saving files in Bridge or Camera Raw CS4

    I'm a little confused the way Bridge and Camera Raw saves files that have been adjusted. For example, when I took a photo and just applied a crop to it, I clicked on "save image" in camera raw, set up a new folder and new file name. I clicked on ok expecting to see the uncropped photo in the original source folder. What I saw was the cropped photo under the original file name.
    Ultimately I found the original file by looking through explorer. I guess my question is, Is there a tutorial that explains the way Bridge/Camera Raw saves files?
    Appreciate the help

    The changes applied by Camera Raw are saved as metadata, a few lines of code added to the file or to a separate XML file. If you want to save the changes done by Camera Raw then simply click on Done, the Save button will save a copy, not the current changes back onto the original file.
    Check out the section on Camera Raw from the Help files:
    http://help.adobe.com/en_US/Photoshop/11.0/WSB5C0E258-66DE-4089-9CB0-42F396E2B814.html

  • HELP, so confused over Printing!!!!

    I am so confused!!!     ICC Profiles, sRGB vs RGB, color management.   I work in Photoshop Elements 7 and use Canon Pixma MP610 printer.   I would like a start to finish in setting up in PSE 7.   

    Well.... One thing is if you want a higher secure method, you will have to use certificates. PEAP is probobly the most deployed method and the simplest EAP method. This would require you to build an IAS server (comes with windows server) and a Certificate Authority Server which also comes with Windows Server. Just do a search on Google.. configure 802.1x windows server 2003 and you will find some good articles on setting this up. WDS for fast roaming requires the use of Cisco wireless cards or cards that are CCK2 compliant. If you are using internal cards, fast roaming will not work. They will however work if you are using Cisco 7920 ip phones. Hope this kind of helps.

  • Confusion over user and schema

    hi all i am new to oracle
    as far as my understanding goes in oracle for every user by default an schema
    is created where tables and other objects are granted to the user please correct me if i am wrong
    now my problem is that i created user but its not getting reflected in the schema
    shouldnt the schema get created automatically
    i am confused what should i check for
    thanks in advance

    hello,
    First of all you should know the terminology.
    Schema -> Collection of objects (Tables, Views, Indexes, Sequences etc.,)
    Example: Scott/tiger (Is a sample oracle user) In database terminology it is named as Scott's Schema.
    When you create a new user in oracle the user would be empty with no objects. Unless you have previleges to create objects.
    SRI>create user junk identified by junk
    2 default tablespace users
    3 temporary tablespace temp;
    User created.
    Elapsed: 00:00:00.15
    SRI>conn junk/junk@sri
    ERROR:
    ORA-01045: user JUNK lacks CREATE SESSION privilege; logon denied
    Warning: You are no longer connected to ORACLE.
    SRI>conn sri/sri@sri
    Connected.
    SRI>grant connect to junk;
    Grant succeeded.
    Elapsed: 00:00:00.03
    SRI>conn junk/junk@sri
    Connected.
    SRI>select * from tab;
    no rows selected
    SRI>create table x(id number(10));
    create table x(id number(10))
    ERROR at line 1:
    ORA-01031: insufficient privileges
    Elapsed: 00:00:00.00
    SRI>conn sri/sri@sri
    Connected.
    SRI>grant resource to junk;
    Grant succeeded.
    Elapsed: 00:00:00.01
    SRI>conn junk/junk@sri
    Connected.
    SRI>create table x(id number(10));
    Table created.
    SRI>select * from tab;
    TNAME TABTYPE CLUSTERID
    X TABLE
    Hope this info helps you to start with :)
    cheers
    -Sri

  • Newbie confusion over launching VBox Guest Services.

    Hi all,
    This is my first time of installing Arch Linux  as a guest using Virtual Box on a Mac. I have followed the instructions set out in the Wiki section for VBox.
    The following excerpt below had me a confused for a while.
    All these features can be enabled indepently and manually with their dedicated flags.
    # VBoxClient --clipboard --draganddrop --seamless --display --checkhostversion
    But VirtualBox provides a currently undocumented feature, a Bash script VBoxClient-all which enables all these features automatically and checks if a X11 server is really running before enabling some of them.
    # VBoxClient-all
    To start that script automatically when system starts run the following command as root (or sudo):
    # systemctl enable vboxservice
    Am I correct in thinking that in order to get clipboard, full screen etc... I still have to use the VBoxClient -all command rather than the systemctl enable vboxservice?
    I order to get the guest features to work I use the VBoxClient-all script in my autostart file.
    If I run ps -ef | grep -i vbox without the autostart script i see the following below
    root 184 1 0 14:44 ? 00:00:01 /usr/bin/VBoxService -f
    and the clipboard features etc do not work.
    Have I misunderstood something?
    Thanks

    HTTP request processing failed. HTTP error [403] will be returned. The error is [You are not authorized to view the requested resource.No details available].#
    This first line says it all.  If you are just lauching it then what ever user that you are logging in as does not have rights to see what you are attempting to show.  If it is the first screen after login, then it is the default role that he does not have access too.

  • Request help for confusion over Oracle single instance database

    Hello all,
    Following Oracle version was installed at the client site @ the moment
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64) on Non-Clustered enviornment.
    The clients are going to arrange another identical server and wants to configure it with 2 nodes windows cluster enviornement.
    The current server where Oracle server was installed will become active node of the cluster.
    The confusion is if we should install the following version on node 2
    Oracle Clusterware 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64)
    or
    node 2 should also be installed with
    Oracle Database 11g Release 1 (11.1.0.6.0) for Microsoft Windows (x64) version ?
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/111060-win64soft-099656.html
    Any help for removing confusion would be appreciated
    Thanks,

    I think it's first needed to think about what kind of configuration you want; Failsafe, DataGuard or even RAC? But you talk about clustered and an active node, so I take it the object is to create a Failsafe cluster.
    If you want to use FailSafe first read about it, for example use http://www.oracle.com/technetwork/database/windows/index-082893.html (Resources: Documentation)
    Eric

  • Confusion over iCloud

    Hey guys,
    A little confused. I am currently syncing my iCloud mail (via settings on the iPhone), notes and bookmarks with my iPhone .
    Whats with the @mac.com in iTunes?

    If you are locking the screen before plugging it into your charger, try plugging it into your charger before locking the screen.  (When you lock the screen on battery power, wifi drops to conserver battery power.  I'm not sure that it will reconnect to wifi when you plug it in with the screen locked if it has already disconnected from your wifi.)

Maybe you are looking for

  • Problem with Creation of TemSe file...

    HI Experts... Here im facing the problem with creation of # 3 rd Quarters Temse file.when ever i use the tcode pc00_m40_f24 and entering the details of quater 3 ...here im showing up the ABAP Runtime error."""Overflow for arthimitic operation Type P

  • Is Mac Mini support IBM PC compatible?

    So, not only Windows. Linux, DOS, and others, can I install them, and how to select the operating system when booting?

  • Reinstall osx lion

    I got my OS X lion from the free upgrade since i bought my mac recently, however, not all software are compatible with the new os and I would like to downgrade my os to snow leopard then back to lion after i'm done.  Since I didn't have any cd for th

  • How to add variant to Financial statement !!!!!!!!!

    HI, I have created new GL account for one of the bank. User wants this bank account to be added to her variant list in F.01 ( Financial statement ) . when we goto f.01 we choose variant as bank and execute it then we get details of financial statemen

  • OWB 10R2: Compare OWB repository against actual

    Hi, Is there a way to compare the date in the OWB repository against the actual schema? Some of our developers made changes in the actual schema but not in the repository. We want to compare the differences. Any tips or suggestions are welcome! Best