Errors in odi 11g

hi friends.
what are the errors in odi 11g and how to handle these errors??
please refer some site for it.
thanks.

HI Soumya,
please refer below link:
http://docs.oracle.com/cd/E17904_01/core.1111/e10113/chapter_odi_messages.htm
Regards,
Surya

Similar Messages

  • DATE Format Error in ODI-11g(11.1.1.3)

    I am using ETL transformations in ODI-11g. There's a dominant issue regarding date formattings when I map an ODI variable (storing date) with a TGT column(datatype=date) mappings.
    In all the src-tgt mappings I am formatting the date by using TO_DATE() functions. But still getting the error:
    "ORA-01830: date format picture ends before converting entire input string".
    A point to Note: The same ETL in other env are ruuning fine but in my new dev env it's giving this date error.
    I had checked with the DBA folks and they confirmed they set equal DATE settings in all the env.
    The ODI Variable is defined as an "Alphanumeric".
    Tx Used: #BUSINESS_CURRENT_DT=TO_DATE('Date','YYYY-MM-DD')
    Require some urgent advice...Please let me know

    Hi,
    W store name-value pair in the Control table from where we exctract our data. Both (param name and param value) are varchars.
    Well this looks pretty strange in 11g! Here's what we found out...
    If you are trying to retrieve a date variable by using TO_DATE() in the refresh query the ODI Java driver (JDK 1.6) would call java.sql.timestamp and gracefully attach HH:MI:SS.NS along with the date (YYYY-MM-DD HH:MI:SS.NS). My target ia a date always..!
    So, when I do: TO_DATE('20101010','YYYY-MM-DD) in the refresh query ODI stores it as '2010-10-10 00:00:00.0'
    For this the Load always fails as Oracle would not be able to interpret a timestamp by suing TO_DATE()
    The Java driver does this damage. However, it may be wise to store as a timestamp rather as a date if in case u do a Data capture and want the exact time credentials.
    Unfortunately not a req, as of now for us so I had to chop-off the timestamp..!
    Let me know if you find any other details...
    Thanks.!

  • Error when exporting to flat file in ODI 11g

    This works ok in ODI 10g. I'm using IKM SQL to File Append on Windows Server 2008 R2
    Getting the following error when exporting to a flat file in ODI 11g: ODI-40406: Bytes are too big for array
    I've seen a couple of threads like this on the forum, but I've never seen an answer to the problem.

    Problem is with the difference in behaviour for the IKM SQL to File Append KM between 10g and 11g.
    Our 10g target file datastore had a mixture of fixed string and numeric columns. Mapping from the source to target was simple one to one column mapping. It generated the desired fixed format flat file; numerics were right adjusted with embedded decimal point and leading spaces. Each numeric column in the generated flat file occupied the exact space allocated to it in the layout. This gave the desired results, even though documentation for the 10g IKM states that all columns in the target must be string.
    When we converted to 11g and tried to run this interface, it generated an error on the "numeric" columns because it was wrapping them in quotation marks. The result column was being treated as string, and it was larger than the defined target once it acquired those quotation marks.
    In order to get 11g to work, I had to change all the numeric columns in the target data store to fixedstring 30. I then had to change the mapping for these numeric columns to convert them to right adjusted character strings (i.e. RIGHT(SPACE(30) + RTRIM(MyNumericColumn),30).
    Now it works.

  • How to capture Field validation errors in the Error table in ODI 11g

    Hello,
    We are using ODI 11g (11.1.1.5) and the scenario is to read the data from a flat file (.txt) and do a bulk insert into MS SQL Server database table.
    We need to capture the error records (if the source field size is greater than the target column size) into the error table. However the interface errors out at step "Loading - SrcSet0 - Load data (BULK INSERT)" with error message "SQLServer JDBC Driver][SQLServer]Bulk load data conversion error (truncation) for row 33, column 6" but these errors are not being inserted into the error table.
    Is there a way to capture these errors in the error table? Below is the KM details.
    LKM: LKM File to MSSQL (BULK)
    CKM: CKM SQL
    IKM: IKM MSSQL Incremental Update
    FLOW_CONTROL is set to true for the IKM.
    Thanks,
    Krishna

    Hello,
    I had the same problem with ODI when I was trying BULK INSERT of the txt file into MS SQL. Check the cell(s) in your source file (txt) - it looks like the value in hte cell has hiding symbols: when pressing F2 tryng edit the value in the cell the coursor appared far to the right from the right end of the value. So, try to use backspace to delete the hiding symbols and verify the above. If avasrything is OK, then modify your txt file. Let me know if it works.
    BTW , I've created procedure inside the MS SQL 2008R2, which BULK INSERTed records into temporary (#...) table and immediatelly, without any verification all the records were inserted into the final table in the DWH here is the statement:
    if object_id('TEMPDB..#<table>','U') is not null drop table #<table>
    CREATE TABLE [dbo].[#<table>] 
    [1] [varchar] (50) NULL, 
    [2] [varchar] (100) NULL, 
    [3] [varchar] (100) NULL, 
    [4] [varchar] (100) NULL, 
    [5] [varchar] (100) NULL, 
    [6] [varchar] (100) NULL, 
    [7] [varchar]  (100) NULL, 
    [8] [varchar] (100) NULL, 
    [9] [varchar] (100) NULL, 
    [10] [varchar] (100) NULL, 
    [11] [varchar] (100) NULL 
    ) ON [PRIMARY]
    bulk INSERT #<table> FROM 'N:\<table>.txt'
    with
    (FIRSTROW=2,KEEPNULLS,CODEPAGE=1252,FIELDTERMINATOR='\t'
    INSERT
    INTO <table>
    SELECT
    * FROM #<table>
    and it works! Let me also know if you find any other way around.
    regards
    Anatoli

  • Error while using startcmd.sh for OdiExportScen in ODI 11g

    Hi,
    I have upgraded ODI 10g to ODI 11g.
    I have a package wherein I have defined a procedure which has the following jython code for export of scenarios to ODI server.
    import os
    scen='#DEPLOYMENT.PVV_GET_SCN'
    scen_name=scen[5:-7]
    scen_ver=scen[-7:-4]
    file_name='/soaap/ODI_HOME/Scenarios/#DEPLOYMENT.PVV_GET_SCN'
    odiscen="/soaap/ODI_HOME/oracledi/bin/startcmd.sh OdiExportScen -SCEN_NAME="+scen_name+" -SCEN_VERSION="+scen_ver+" -FILE_NAME="+file_name
    if os.system(odiscen) <> 0:
    raise odiscen
    This code was working fine on ODI 10g but now I am getting this error when exeuting on ODI 11g :
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 8, in ?
    /soaap/ODI_HOME/oracledi/bin/startcmd.sh OdiExportScen -SCEN_NAME=SCN_PKG_DEPLOYMENT -SCEN_VERSION=002 -FILE_NAME=/soaap/ODI_HOME/Scenarios/SCEN_SCN_PKG_DEPLOYMENT002.XML
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:345)
         at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:169)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2374)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java:1615)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java:1580)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2755)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:619)
    Please guide for this.
    Thanks,
    Divya

    Hi,
    I was trying to execute the same thing in ODI 10g with the script you have mentioned and get errors with invalid syntax.
    Can you please explain how did you execute the export scenario command in ODI 10g. Would we really helpful.
    We are trying to export scenarios from operator to the local directory.
    Please find the script.
    import os
    scen='#V_GET_ODI_SCEN'
    scen_name=scen[5:-7]
    scen_ver=scen[-7:-4]
    file_name='C:\ODI_SCEN_DMP\#V_GET_ODI_SCEN'
    odiscen="C:\OraHome_1\oracledi\bin\startcmd.bat OdiExportScen -SCEN_NAME="scen_name" -SCEN_VERSION="scen_ver" -FILE_NAME="+file_name
    if os.system(odiscen) <> 0:
    raise odiscen
    org.apache.bsf.BSFException: exception from Jython: Traceback (innermost last):
    (no code object) at line 0
    File "<string>", line 6
         odiscen="C:\OraHome_1\oracledi\bin\startcmd.bat OdiExportScen -SCEN_NAME="scen_name" -SCEN_VERSION="scen_ver" -FILE_NAME="+file_name
         ^
    SyntaxError: invalid syntax
    Your help is appreciated.

  • ODI 11g (11.1.1) error -- statement is not in batch mode

    I am getting this ODI error:
    ODI-1217: Session SOME_NAME (1225001) fails with return code -1256.
    ODI-1226: Step SOME_NAME fails after 1 attempt(s).
    ODI-1240: Flow SOME_NAME fails while performing a Loading operation. This flow loads target table SOME_NAME.
    ODI-1228: Task SrcSet0 (Loading) fails on the target SUNOPSIS_ENGINE connection SUNOPSIS_MEMORY_ENGINE.
    Caused By: java.sql.SQLException: statement is not in batch mode
    It most often occurs when my dataset has a number of records that is divisible by 10
    Any ideas on how to resolve this annoying and reoccurring error???
    Thank you for your help
    ....

    It seems you are hitting on an ODI bug for which patch is available. Please refer to Note ID 1530553.1 on support.oracle.com
    "java.sql.SQLException: statement is not in batch mode' Signalled When Executing An ODI 11g Scenario Populating An XML File After Upgrade From 10g [ID 1530553.1]"

  • ODI 11g Installation Error(JDK).

    Hi
    I have a problem with installation ODI 11g under Widows 7 (64 bit). I have installed jdk(jdk1.7.0) 32 bit version.
    When I start setup.exe (run as Administrator), Oracle Universal Installer starts, but needs to specify path to JDK
    "Preparing to launch Oracle Universal Installer from C:\Users\*. Please wait ...
    Please specify JDK location ( Ex. /home/jdk ), <location>/bin/java should exist:"
    When I input a path like C:\Program Files (x86)\Java\jdk1.7.0\bin , it is giving msg like
    Please specify a valid JDK location:
    Thanks

    Michael Rainey - Thanks for your reply
    *1* . I have installed JDK in C Drive so that JDK path will not Contain any spaces.
    C:\Java\bin
    *2* . As per the Oracle documentation:
    I have used JRE Location to start the installer on command Prompt:
    D:\Work\Softwares\Odi Setup\ofm_odi_generic_11.1.1.6.0_disk1_1of2\Disk1\install\win64>setup.exe -jreLoc C:\Java\jre
    *3* . I have also set ClassPath as
    System Variables
    A . Variable Name: JAVA_HOME
    Variable Value: C:\Java\bin
    B . Variable Name: Path
    Variable Value: D:\app\UserName\product\11.1.0\db_2\bin;%SystemRoot%\system32;
    *%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;*
    C:\Java\bin;
    But Still it is not working.
    Please give me any suggestion
    Thanks
    Yogesh

  • Issue in creating Master repository from ODI 11g

    Hi,
    I am unable to create a Master repository connection using ODI 11g from local machine. I am using Oracle server of 11g version and have Master and a Work repositories in it. When I was trying to create a connection using ODI 11g it is throwing me the following error message,
    Could not connect to repository
    java.lang.IllegalStateException: Local Repository table is empty
         at oracle.odi.core.repository.support.RepositoryUtils$RepositoryInfoSource.loadRepositoryInfo(RepositoryUtils.java:182)
         at oracle.odi.core.repository.support.RepositoryUtils.loadMasterRepositoryInfo(RepositoryUtils.java:373)
         at oracle.odi.core.repository.Repository.getMasterRepository(Repository.java:72)
         at oracle.odi.core.OdiInstance.createMasterRepository(OdiInstance.java:501)
         at oracle.odi.core.OdiInstance.<init>(OdiInstance.java:553)
         at oracle.odi.core.OdiInstance.createInstance(OdiInstance.java:529)
         at oracle.odi.ui.docking.panes.OdiCnxFactory$1.run(OdiCnxFactory.java:205)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:655)
         at java.lang.Thread.run(Thread.java:619)
    Suggest me to resolve this issue.
    Regards, Sujeev

    Try following links.
    They are nice and Explanatory.
    http://www.odigurus.com/2011/10/creating-master-repository-using-odi.html
    http://odinetwork.blogspot.in/2011/03/creating-and-connecting-to-odi-master.html
    http://odiexperts.com/creating-master-and-work-repository/
    Thanks,
    Mahesh

  • Odi 11g - IKM SQL to Hyperion Essbase (DATA) log file always empty

    In odi 11g when using *"IKM SQL to Hyperion Essbase (DATA)"* setting the the "LOG_ENABLED" = true,
    only an empty file are generated.
    Just "LOG_ERRORS" file (if errors occurs) are created.
    Is this just an my issue?
    Can someone help me?
    p.s.: the same issue, I got even with the *"IKM SQL to Hyperion Planning"*
    Thx in advance, Paolo

    Thanks John for your suggestion.
    here the patch *"Patch 10302682: IKM SQL TO PLANNING: LOG FILE IS CREATED BUT NOTHING INSIDE."*
    I didn't see any other about Essbase...
    I try to check all day on support site.
    Paolo
    Edited by: Paolo on 19-apr-2011 8.44

  • HOW TO INSTALL ODI 11g / OWB 11g  IN WINDOWS SERVER 2008 R2 (64 BITS)

    Hi everybody,
    I have a serious problem.
    Last week we buy a new server with Windows Server 2008 Std. R2 x64, for a new project. I tried to install the RDBMS Oracle 11g R2 (x64) without problems, but when i try execute the "Design Center" contents in OWB, show me the error: 0xc0000018
    Then, I´m thinking in install Oracle Data Integrator to solution it, but i`ve read that neither can install on 64 bits system... This is true?
    Somebdoy knows how can I install OWB 11g / ODI 11g in a Windows 2008 Server 64 bits?
    Thanks & Regards!

    OWB 11G Will have been installed with the database, it now ships with 11G.
    Check you are on a supported platform for design centre using the certification matrix.
    Quick google search for you regards 0xc0000018 :
    Problem in Lunching OWB Design Center

  • ODI 11g link editor problem

    Hi
    I have recently upgraded to ODI 11g from ODI 10g.
    In ODI 11g when we are clicking on the Link Editor option it is throwing following error.
    ODI-20344 Cannot Launch the editor for this expression
    sun.awt.X11.XException: Cannot write XdndAware property
    We are using JDK1.6 .Please let me know the solution at the earliest.
    Thanks!!

    Thanks!! We have tried your solution ,it is working for first time, when we are trying to edit any other expression i.e second time, it is the trowing the same error.
    Edited by: 898955 on Nov 24, 2011 2:16 AM

  • Issue with the upadted database Schema in ODI 11g ?

    Hi ,
      I am new to ODI ..  and i am using ODI 11g .
    the problem which i am facing is below stated :
    I have an existing interface with both source and target tables its working fine . when there is change in the column in the source and the target table i do the reversed enginnner to get the new colums in the source nad the target schema .
    I tried to retain the existing mapping  of source and traget by deleting the source schema and replacing it with the newly updated schema  in the source colum in the interface .
    and  drag and drop the the newly updated schema In the target colum in this way i was able to retain the existing mapping ,and did the mapping for the new columns in both .
    The problem is that it is running succesful and data for the earlier existing mapping are moving from source to target but not for the newly mapped column .
    please help me out in sorting out this issue 
    the knowlede modules that i am using it are as follows
    For LKM  i am using LKM SQL to SQL
    For CKM  - CKM SQL
    FOR IKM -IKM SQL Incremental Update

    Thanks for the suggestion .i am working with Interface . i implemented that and got the colums without deleting anything ,but when  i am mapping the newly upadted colums i am getting an error while executing the Interface .
    ODI-1228: Task TARGET_1 (Control) fails on the target  connection odipoc.
    Caused By: java.sql.SQLSyntaxErrorException: ORA-00904: "COUNTRY": invalid identifier
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
    at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1115)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3954)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1539)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.execute(SQLCommand.java:163)
    at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:102)
    at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:1)
    at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
    at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
    at java.lang.Thread.run(Thread.java:662)

  • ODI 11g 1.1.1.7: Studio doesn't start since install of Java 7

    Hi,
    as many other users I happened an uncomfortable surprise after having naively installed Java 7 on my Win 7 notebook. The Java 6 install was removed and ODI Studio didn't start anymore.
    I found out that Java 7 is not supported with ODI 11g and
    re-installed Java 6 (jdk1.6.0_45)
    set the JAVA_HOME variable to this JDK directory
    tried to start on the command line "odi.exe -jreLoc C:\Prog\Java\jdk1.6.0_45"
    I de-installed and re-installed ODI 1.1.1.7 completely
    but nothing helped. When pressing the icon or starting from the command line: no event, no error message, anything.
    I have no idea how to debug this. With most other Oracle products the appropriate JVM cames along with the product installation. But ODI depends from the external Java install.
    How to proceed now? As far as I know it's allowed that both Java versions coexist on one machine. But what's missing to point ODI to the 6 env?
    Any idea appreciated!!
    Best regards
    Thomas

    What path is set in ODI.CONF file ?
    Check it and modify if required.
    Bhabani
    http://dwteam.in

  • Problem when exporting and importing project from odi 10g to odi 11g

    Hi,
    I want to migrate my project from odi 10g to odi 11g.
    But when i am importing the interface then it is giving the error of mising references .
    I have exported the project(without its child component),models
    (including my datastore),KM's,folder (without its child component),packages(with child components),interaces(with child components),procedures(with child components),variables from odi 10g.
    After exporting all these objects i imported all the objects with import type set as "Synonym mode insert" into odi 11g but when i imported the interface it is giving the error of missing references.
    Source technolgy is Oracle and target technolgy is Postgres.
    Topologies have been made in the ODI 11g same as in ODI 10g.
    Please help.

    You dont need to migrate the complete repository. You can migrate a project at a time into ODI 11.1.1.5.x
    You have to be careful while importing. You have to follow a sequence when importing.
    Empty Project -> KMs -> Models (with DB Stores) -> Variable -> Empty Folders -> Interfaces -> Procedures -> Packages ---- All in SYNONYM mode insert (no exceptions)
    And your repository id in 11g MUST be different from the one in 10g.

  • Customized Jar files in ODI 11g

    Hi guys:
    I've searched the ODI 11 documentation but I'm not able to find where can I put my customized jar files with the classes that I've create.
    For instance:
    I need to put an Apache Commons Lang3 jars in ODI 11g to be able to use the StringUtils class in my Beanshell scripts.
    Where do I put these Jar files now? I had put them into /ODI_HOME/agent/drivers, JAVA_HOME/lib, JAVA_HOME/jre/lib and also in my WINDOWS_APP_DATA\USER\ODI\ORACLEDI\USERLIB and still got the same error of Class not Found.
    I'm using ODI_11.1.1.6.0_GENERIC_111219.1055
    Thanks in advance.
    Luiz Araujo

    Please restart your agent and odistudio. Then try it.

Maybe you are looking for

  • How can i sell my music on the Music Store ?

    Bonjour, from France ! (not quite sure if this is the right place to ask this question, but didn't find any better forum...) I'm a professional french music artist, and i am trying to understand how to proceed to sell some of my original tracks on iT

  • "Submit Form" doesn't work in an Acrobat Form.

    We created an Acrobat form which includes a "Submit Form" button, but this button does not work in Unix. Is this a known issue? If not, is there a fix for this?

  • How do I configure Firefox to open multiple pages on startup and not set my homepage to open mutliple tabs?

    So I know how to set my homepage to open multiple tabs, however it has the undesired effect of making it so those tabs are opened every time I hit the homepage button. Is there a way to set Firefox to open multiple pages on start-up, while not actual

  • Hierarchical query with out using Connect by prior

    Hi Guys, I am supporting a product which is enterprise based and only allowd to write queries which are ANSII standard. I have an requirement like If I provide the child I need to know all the parents till  highest level. My table structure is like b

  • Sleeping Round Trip Adjustments in Progress

    I just edited a peace last night in FCP6 last night. I sent the sequence to Color-v1.0.4 and done all of the primary color tweaks then saved. I did not close either program (FCP6 or Color) and left them open as i slept from 5:30 - 11am. then i came b