Table or View Not Found Problem

Hi all,
I am facing a strange problem where-in I am calling a query from a normal SQl window which works but the same in Procedure gives me an error.
User A...This runs this statement
Select * from B.emp which gives results. The same statement when I compile in a procedure it gives an error saying Table or View not Found.
User A has a select on B.Emp where B is the owner of table Emp.
I am not able to get to the solution of the same. Is it apossibility of a synonym conflict? Can someone help in what ways this error can come?
Thanks and Regards,
Kapil Uppal

Hi,
>>Well the error is Table Or View Does not exist
Interesting, what version of Oracle are you using ? As you can see below, the stored procedure does not recognized the privilege that have been granted through a role.
LEGATTI@ORACLE10> create user user1 identified by user1;
User created.
LEGATTI@ORACLE10> create user user2 identified by user2;
User created.
LEGATTI@ORACLE10> grant connect,resource to user1,user2;
Grant succeeded.
LEGATTI@ORACLE10> create table user1.emp (id number);
Table created.
LEGATTI@ORACLE10> create role user1_role_tables;
Role created.
LEGATTI@ORACLE10> grant user1_role_tables to user2;
Grant succeeded.
LEGATTI@ORACLE10> grant select on user1.emp to user1_role_tables;
Grant succeeded.
LEGATTI@ORACLE10> connect user2/user2
Connected.
USER2@ORACLE10> select count(*) from user1.emp;
  COUNT(*)
         0
USER2@ORACLE10> create or replace procedure my_test_procedure as
  2  n_id number;
  3  begin
  4  select count(*) into n_id from user1.emp;
  5  end;
  6  /
Warning: Procedure created with compilation errors.
USER2@ORACLE10> show errors
Errors for PROCEDURE MY_TEST_PROCEDURE:
LINE/COL ERROR
4/1      PL/SQL: SQL Statement ignored
4/38 PL/SQL: ORA-01031: insufficient privilegesCheers

Similar Messages

  • Table or view not found

    Hello,
    Please help me, I´m doing a query over a database table and it gave me the next exception:
    java.sql.SQLException: [POL-5130] table or view not found Excepción Interna: java.sql.SQLException: [POL-5130] table or view not found Código de Error: -5130<
    I already tried the solucion suggested in the dev guide.

    Hi Raj,
    could you post the fulll Oracle error Message?
    Also, read up on how to grant explicit priviliges to schemas on procedures/views and tables. This may be necessary in order for a dbms_job to function as expected.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10897/users_secure.htm#CHDBDBGI
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_9013.htm#SQLRF01603

  • PL/SQL Exception for ORA-00942 - Table or view not found?

    Hey there!
    I want to create an exception my code runs into whenever it tries to select from a table that is not existent (or because of insufficient privileges).
    How can I get these ORA-00942 errors and place them into a exception? Except for WHEN OTHERS, that's not concrete enough.
    Regards,
    Thomas

    SQL> DECLARE
      2   table_not_found EXCEPTION;
      3   PRAGMA EXCEPTION_INIT(table_not_found, -942);
      4  BEGIN
      5   EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM DUALX';
      6  EXCEPTION
      7   WHEN table_not_found
      8   THEN
      9      dbms_output.put_line('Table NOT found');
    10  END;
    11  /
    Table NOT found

  • CMR JDEV9032 TABLE VIEW NOT FOUND

    Hello,
    I'm breaking my head on the following:
    I created two entity beans (A and B). Both are CMP EJB's.
    In EJB terms : A has the field (id, name), B also.
    In the deployment descriptor I set a CMR relationship from A to many B's. This is just like the example of the EMP DEPT. The only difference is that there are no tables mappped yet of the EJB's A and B. They are to be generated at deployment time by the oc4j instance.
    This goes correctly. The tables are created (no intermediate tables are created), direct foreign keys (I'm using oc4j 904 pre to do this).
    So the idea is to work from EJB's and not to worry about the database.
    Since I'm using a CMR (so local interfaces are used), I created a Session Facade, so that I can try to create entity (read records) through a sample client (generated by JDeveloper 9032).
    I can create individual ejbs (==records), I see them in the database. But the moment I try to relate the objects (either by doing a B.setA(LocalA) on the B-entity or by adding to the collection A.getBees().add(LocalB)) it goes wrong.
    None of these work. I get a table or view not found exception. This is strange, since I can see at deployment that two tables are generated, exaclty like I expected. But setting the relationship is very hard !!!!!!
    My question is: who can help me on this ? I found some examples on otn.oracle.com, but they NEVER described the situation where you want to set the relationship.
    Now I'm working for a customer and the deadline is reaching. JDeveloper 9032 is the developerplatform. The embedded OC4J shipped with JDeveloper has a bug (Datasource not closed), that's why I'm using the OC4J 904 pre, since the bug is fixed in this release. Of course a Oracle 9i database is used.
    Hope to hear from you soon.

    Dear Debu,
    The only things I set in the orion-ejb-jar.xml is that datasource name and the table name. I can create instances of the A and B EJB's. Setting the relation between A and B seems to result in the message "Table or View not found".
    Furthermore If I try to do:
    (on Entity A).
    (This code is declared in a SessionFacade EJB which is used to set the relation();
    public void connect( Long idA, Long idB){
    LocalA a = LocalAHome.findByPrimaryKey(new Long(idA));
    LocalB b = LocalBHome.findByPrimaryKey(new Long(idB));
    // now b is filled.
    a.getBees().add(b); // Exception is thrown.
    The Exception is an Illegal State Exception.
    My Question is Why ?
    Regards,
    Rokesh Jankie

  • Table or view not exists error from procedure - occurs randomly

    I have a procedure used in a website, it works fine until recently we occationaly getting an error said Table or View not exists, the error will go away if refresh the page which will re-execute the procedure.
    This procedure uses an table object as temp table and just a select statement form several tables. The table object is used in other procedures as well. I can't find out what cause this error because it's not always repeatable and the error message didn't give out the exact table that cause the error.
    Any idea what might cause this or how to trace the reason that cause the error?
    We don't have a good DBA here so really need some help, any advice are welcome.
    Cheers

    I don't think it's possible that any previlege changes are made or the tables in used in the procedure are droped because after we run our db scripts to build the db, then we testing the website which can only execute procedures, and no procedures execute DDL script to make such changes.
    It's worth to mention that we have a Table Type called EntityIDTable() which is used in many of our other procedures, but I think table type is initialise as local variable in each procedure so shouldn't conflict to each other, am I right? Also, the same script are running several times a day to generate same db but with different schema names so we can test on different site templates. One change script did drop one of the table and recreate it, but it use the &DB_Schema_Name.Tablename to drop a table so shouldn't affect the table in other schema I think. (I enclosed the procedure below)
    Also, any event log in Oracle I can enabled and trace the problem to find out what table is not exists at that point that this problem occurs?
    Cheers
    Below is the sample code of the procedure:
    aEntityIDSet varchar2,
    aCount out int
    as
    L_KeyID Category.CategoryID%type:=null;
    l_strEntityIDSet varchar2(255);
    l_strPipeSepValsInput varchar2(255);
    l_UserEntityID varchar2(255);
    l_EndPointInput int;
    l_Strlength integer;
    l_UserKey NUMBER;
    l_UserOriginalKey NUMBER;
    l_RREntityData ENTITYIDTABLE:= ENTITYIDTABLE(); /*creating on object from a table type to store entity values in*/
    -- end of Local variables used for Category Security
    begin
    -- Category Security
    -- Split up the EntityIDSet
    l_strEntityIDSet:= aEntityIDSet;
    l_strPipeSepValsInput:= l_strEntityIDSet || '|';
    l_EndPointInput:= instr(l_strPipeSepValsInput,'|',1,1);
    l_UserEntityID:= SUBSTR(l_strPipeSepValsInput, 1, l_EndPointInput - 1);
    l_UserKey:= To_Number(l_UserEntityID);
    l_UserOriginalKey:=l_UserKey;
    l_strPipeSepValsInput:= SUBSTR(l_strPipeSepValsInput,l_EndPointInput+1);
    l_Strlength:=LENGTH(l_strPipeSepValsInput);
    While ( l_Strlength > 0) loop
    <<get_entityId>>
    l_EndPointInput:= instr(l_strPipeSepValsInput,'|',1,1);
    l_UserEntityID:= SUBSTR(l_strPipeSepValsInput, 1, l_EndPointInput - 1);
    l_UserKey:= To_Number(l_UserEntityID);
    l_RREntityData.extend;
    l_RREntityData(l_RREntityData.COUNT):= Entityidtype(l_UserKey);
    l_strPipeSepValsInput:= SUBSTR(l_strPipeSepValsInput,l_EndPointInput+1);
    l_Strlength:=LENGTH(l_strPipeSepValsInput);
    end loop get_entityId;
    -- the block above used in many other procedures to get the entityID
    select Count(Distinct ri.ID) into aCount From
    -- here joint to other 6 tables
    -- the inner join below use the ENTITYIDTABLE
    inner join
    (SELECT distinct KC.KnowledgeGeneID FROM Category Cat
         inner join KnowledgeGeneCategory KC on KC.CategoryID=Cat.CategoryID
         where EXISTS (SELECT EntityID FROM TABLE(cast (l_RREntityData as ENTITYIDTABLE)) ET
         INNER JOIN (SELECT EntityID, EntityTypeID, CategoryID FROM CategoryRowLevelSecurity CRLS
         WHERE CRLS.EntityTypeID=1) S ON ET.USERENTITYKEY=S.EntityID
         where S.CategoryID=Cat.CategoryID
         UNION
    SELECT EntityID FROM CategoryRowLevelSecurity CRLS
         WHERE EntityID=l_UserOriginalKey
         AND EntityTypeID=0
         AND CRLS.CategoryID=Cat.CategoryID)
         OR NOT EXISTS (SELECT CategoryID FROM CategoryRowLevelSecurity CRLS
         WHERE CRLS.CategoryID=Cat.CategoryID)
    ) CS ON CS.KnowledgeGeneID = k.KGID
    where ri.ProcessID = riPro.ProcessID)
    end QueryNotifications;

  • Cannot join tables .item dependency not found in EUL

    cannot join tables.item dependency "a04 currency->b27 exchange rate 1" not found in EUL
    I am not able to open a workbook in discoverer in user edition.
    It seems I unwittingly deleted a join in the end user layer. I have tried to redo the join but I have not been able to replicate the join required. Is there any way I can work around this join without having to scrap my workbook? Rebuilding the workbook took a long time.
    Any suggestions would dig me out of a deep hole

    Hey,
    I got this Error after our environment was cloned from APPS Production (PRD) instance to Development (DEV). I saved my workbooks that were 'under construction' as *.DIS files as local copies to the network.
    After the clone was finished I imported the latest Business Areas back onto DEV, but there was no way I could open my saved local workbooks due to the error "cannot join tables .item dependency not found in EUL".
    After some hours of rage, by accident we found out that one of our Functional Consultants was able to open these workbooks! It turned out that when I logged on to APPS under the user_name (from FND_USER) of this person I could indeed open the workbooks and save them to the database after which I could open them again with my own user.
    So -in this case- I solved the problem by using a different user to open the workbooks. But who knows next time...
    Good luck, you'll need it.

  • Work around for server not found problems on FF36

    I have found a work around for all the people having server not found problems with FF36.
    If you manually set your network adapter DNS to an external DNS server (as opposed to your local ISP) then the problem goes away. I set mine to use the two google DNS servers:
    Preferred: 8.8.8.8
    Alternate: 8.8.4.4
    Not a clue why this works but it is 100% successful on my desktop PC, whereas before I could hardly connect to a webpage with FF36 without multiple page refreshes and much frustration, even though FF35 was fine and rolling back to FF35 was also fine.
    Something has changed in FF36 and either the way it handles DNS or the way it works with some network adapters.
    It is nothing to do with add-ons, profiles or firewall software as I have tried all of these things and only the DNS change made a difference. I even copied over a full working profile and the program files directory for Mozilla from my portable which was having no problems and the problem still existed on the desktop, which is why I started looking at the network adapater since everything else between the working PC and the non working one was identical.
    Hopefully this will help the developers to pin down the real cause of the problem and fix it in the next release.

    Well done. Thanks for finding that.
    That is not only assigned but has an approved patch included in the scheduled Fx36.0.1 release so it should be fixed in few days, watch out for the upgrade.
    * Bug 1093983 - DNS resolver should not use 'ANY' to get cached records for TTL <sup>[https://bugzilla.mozilla.org/show_bug.cgi?id=1093983#c35 c#35]</sup>
    * https://wiki.mozilla.org/Firefox/Channels/Meetings/2015-03-03#Schedule_Update
    With the bug now fixed it would not really be appropriate to add further comment. I do now see another related bug assigned but not being fast tracked, so if all goes well that will probably land in Firefox 39.
    * Bug 1138242 - DNS: Request A and AAAA record types rather than ANY when obtaining TTL on Windows

  • [ADF JDEV11.1.1.4] Timezone region not found problem in JDEV

    HEllo,
    I just moved my project to JDEV11.1.1.4 from 11.1.1.3.
    All is fine except for database Navigator.
    In 11.1.1.3, I was able to connect to my Oracle Database from Database Navigator Tab. I just needed to set the Java options -Duser.timezone="+01:00" to my project to resolve the timesone region not found problem when running my app onto the embedded WLS.
    In 11.1.1.4, I can run mu project fine with same Java options but I cannot anymore connect to my DB using Database Navigator.
    I got the famous ORA-01882: timezone region not found error.
    I tried adding this line into ide.conf:
    AddVMOption -Duser.timezone="+01:00"
    but still not working.
    Any idea what I should do pls?
    thx
    Jack

    OK, I made a mistake into the line:
    Adding :
    AddVMOption -Duser.timezone="+01:00"
    in ide.conf works fine.
    I just forgot to close and reopen JDEV.

  • View not found

    Недавно у коллеги в окне со списком заявок перестали отображаться заявки со статусом Открыто, Закрыто и соответственно не отображаются Все. "часики" крутятся и ничего не отображается, кроме короткого появления сообщения "View not found". Обновленные и другие категории отображаются нормально. 
    Сегодня у меня в HelpDesk тоже перестали отображаться заявки, аналогично, как и у коллеги. Выяснил по логу, что мы одновременно в одну секунду одну и ту же заявку закрывали, как дубликат и присоединяли к другой. У коллеги пошли какие-то глюки и он удалил заявку. В итоге у меня теперь список заявок не грузится. 
    Как это может лечиться? Явно приложение сформировать список с определенным статусом не может.
    This topic first appeared in the Spiceworks Community

    yes correct.I am using UpdateOrder WS API.
    there is a "vf_demo" role defined in cartridge.however i am not able to see this role in OSM Admin Client.
    but i am able to place the order thorugh web client.
    how to embed "vf_demo" role in OSM Admin Client??
    Regards,
    Kaushal

  • Loaded dump from 12.5.4 to 15.7, Error 622 & Tables/Views not found

    Hi all,
    I am getting desperate trying to fix that issue. I had to import a dump from an ASE 12.5.4 into a new database on an ASE 15.7. I therefore enabled the compatibility mode server-wide and then proceeded to the load which seems to have performed correctly. The database seems well imported, and I can access most of the tables/views/procedures (from my C# application), but a procedure is giving me troubles.
    I am getting this error while executing a given procedure :
    Error: 622, Severity: 20, State: 1
    Opentable was passed a varno of 52. Object 'temp worktable' in database 'tempdb' already has that session descriptor in use. This occured while opening object id -1245236 in database id 2.
    I realised this was caused by a view which is used in this procedure but which is weird is that the error is not thrown when running the SQL code itself, out of the procedure context.
    I am using Toad for Sybase as a client, and realised I cannot access the data tab of the concerned view, Toad gives me the same error. So I cannot execute this view while it performs without any trouble on  the original server (production server which runs ASE 12.5.4).
    I also realised, when trying to execute some pieces of the query individually that I get warnings about unfound tables (and that I should use sp_help to fix the problem). Although, the tables actually exists and I can access their data.
    I have tried so many things and still cannot fix this problem. I've used 'upgrade_object', 'sp_recompile' on all tables, 'dbcc reindex' on all tables.
    Would you have any idea where the problem could come from? Thank you very much

    Thank you for your reply.
    Good to know that enabling compatibility mode before or after loading the load doesn't have any effect.
    I didn't drop/recreate all the SP and views but I can tell you I recreated a similar view and it causes the same issue.
    I had a look at your link yes. I have run 'dbcc upgrade_object' several times already, on the view and the procedures calling the view, and it won't solve anything.
    I've seen a similar post about the problem I have when executing the code itself of the view in a "normal" adhoc query (errors saying the tables are not found) : SAP Sybase Forums - ASE - Backup and Recovery - PRoblem after restore - Object does not exist.
    Could it be the same problem for me?
    Although I've tried splitting the SQL query and executing the parts individually and it works without any trouble. Problem is when the 2 parts of the view are put together. It may be something that was possible with ASE 12.5.4 but not with 15.7 and that compatiblity mode doesn't solve. My view consists of an union a two selects where both have left joins, case when then else, not in and a final group by (adding an order by doesn't help, as I tried).
    PS : I don't have access to the production server where the dump is actually from (but I could if it is really necessary)

  • Com.sap.sql.log.OpenSQLException: table or view not exists

    Hi!.
    I'm developing a Portal Component over NW EP 2004s (7.0) which access to SQL Server database. I have created three tables on the system db (EPD). Connection is Ok, over datasource object, but i can't make a SELECT operation to my new tables.
    Hovewer, making a SELECT operation over older system tables is OK.
    I have adjusted permissions on my new tables, similar to the older tables. The table's owner is the same too.
    The exception i get is:
    **Exception of type com.sap.sql.log.OpenSQLException caught: The SQL statement "SELECT * FROM "SAPEPDDB"."UME_EP_UNLOCKUSERS"" contains the semantics error[s]: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist**
    [EXCEPTION]
    *com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM "SAPEPDDB"."UME_EP_UNLOCKUSERS"" contains the semantics error[s]: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist*
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.check(StatementAnalyzerImpl.java:38)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:101)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:87)
    at com.sap.sql.jdbc.common.CommonStatementImpl.executeQuery(CommonStatementImpl.java:114)
    at com.sap.engine.services.dbpool.wrappers.StatementWrapper.executeQuery(StatementWrapper.java:172)
    at com.uralita.database.DbManager.executeQuery(DbManager.java:105)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.getSystemsR3(ListaSistemas.java:184)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.doInitialization(ListaSistemas.java:93)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:105)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sap.sql.sqlparser.CommonSQLParserException: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist
    at com.sap.sql.sqlparser.CommonSQLStatement.checkSemantics(CommonSQLStatement.java:171)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.check(StatementAnalyzerImpl.java:35)
    ... 19 more
    caused by
    com.sap.sql.sqlparser.CommonSQLParserException: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist
    at com.sap.sql.sqlparser.CommonSQLStatement.checkSemantics(CommonSQLStatement.java:171)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.check(StatementAnalyzerImpl.java:35)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:101)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:87)
    at com.sap.sql.jdbc.common.CommonStatementImpl.executeQuery(CommonStatementImpl.java:114)
    at com.sap.engine.services.dbpool.wrappers.StatementWrapper.executeQuery(StatementWrapper.java:172)
    at com.uralita.database.DbManager.executeQuery(DbManager.java:105)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.getSystemsR3(ListaSistemas.java:184)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.doInitialization(ListaSistemas.java:93)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:105)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:534)
    Someone has been getting this problem? Any idea?
    Thanks!

    I have tried that.
    [EXCEPTION]
    *com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM EPD.SAPEPDDB.UME_EP_SLD" contains the syntax error[s]: - Open SQL syntax error: table names must not specify a catalog name (delete "EPD". before "SAPEPDDB"."UME_EP_SLD")*
    Database name must be Ok, because i can access to other tables which are in the same DB...
    Thanks for your help

  • Can't join tables.query dependency not found "" in EUL

    hi ALL,
    i created one report in disco 3.1.38 and its' running fine but after storing it in database and then again trying to open it from database it gives me error "can't join tables."name of query folder" dependency not found "" in EUL"
    if any one has come across such problem and has solution for it ..please reply back.
    thanks in anticipation
    manish

    Manish,
    I have not run into this error before and maybe one of the oracle consultants could answer this better. But I here it goes. I would first try a refresh on the folders that the report in question is using. Is it possible that the under lining tables have changed? Do you have another copy of the same report outside of the database and does it still work?
    Christopher

  • Page not found problems

    I'm traying to create a data page to display the result of a view in JDev 10g.
    when i run the page....i got a page not found! what can be the problem?

    Pedro,
    you should provide more information to the request. As a rule of thumb: Always spend the same time on asking a question that you want others to spend on answering it.
    e.g. How do you create the page ?
    From where do you start it
    Frank

  • How do I get past the drivers not found problem during Windows 7 install?

    I have a brand new (March 2012) MBP running Mac OS 10.7.3 (Lion) with a SuperDrive.  I'm trying to use Boot Disk Assistant to install Windows 7 with a valid Windows 7 DVD burned from an .iso.  I've partitioned the 750 GB HDD with 500 GB for Mac OS and 250 GB for Windows.  The system reboots and starts to install Windows 7.  Then it pops up an error:
    "A required CD/DVD drive device driver is missing.  If you have a driver floppy disk, CD, DVD, or USB flash drive, please insert it now.
    Note: If the Windows installation media is in the CD/DVD drive, you can safely remove it for this step."
    Of course, I can't eject the Windows setup DVD because the eject button doesn't work so I can insert the Windows Support Software that I downloaded from Apple.  So, I copied the Windows Support Software to a USB drive.
    Once I get to this point, I can browse to the USB drive and I get the following file tree:
    Drivers
         Apple
              x64
         Asix
         Atheros
         ATI
         Broadcom
         Cirrus
         IDT SigmaTel
         Intel
              Chipset
                   All
                   ia64
                   Lang
                        Chip
                             (various languages)
                   WIN7
                   x64
         Marvel
         NVidia
              NVidiaChipset32
                   Ethernet
                        NAM
                   HDAudio
                   SMBUS
                   SMU
              NVidiaChipset64
                   Ethernet
                        NAM
                   HDAudio
                   SMBUS
                   SMU
              Win7_32
              Win7_64
         RealTek
    The only directory that the installer recognizes as having valid drivers is the Intel > Chipset > WIN7.  When I select all of the drivers listed, the installer acts like it's installing something but then it stops saying that new devices were not found.  I can't get past this point.  The Windows 7 installer will not continue.  If I select any of the other directories, I get the message "No device drivers were found.  Make sure that the installation media contains the correct drivers, and then click OK."
    Any thoughts?  Admittedly, this is the my first experience dealing with Mac OS and I'm completely out of my league.  However, this is a Windows installation issue and I'm getting hung up on device drivers.  Usually in the PC world, I can easily go to the manufacturer's website and just download the drivers I need directly.
    ...Mel    
    Sr. Systems Administrator - Windows, SharePoint

    valid Windows 7 DVD burned from an .iso.
    Usually burned ISO to DVD only works when burn speed is set to slowest.
    Otherwise there are a number of problems with the install failing to do proper install, sometimes not even booting to start the install. Trouble is from using Apple Disk Utility. Burned in Windows, the ISO will be fine. Using Disk Utility at slowest has become "try reburn again at reduced speed."
    You can use mouse on startup to eject DVDs but what you want is your drivers later after Windows is installed, and have them on USB flash or something.
    you don't need any drivers except in a few cases (MacBook Air that lacks DVD and uses USB-DVDs)
    Product support page is best place to start with every device and product.
    www.apple.com/support/bootcamp
    has manual pdf, faq, how to, support articles

  • SAP database tables - Column statistics not found for table in DB02 - During import, inconsistent tables were found - Some open conversion requests still exist in the ABAP dictionary.

    Hi Experts,
    I'm implementing SAP note 1990492 which requires manual implementation. Implementation includes modifying standard tables (i.e. append
    the structure FIEU_S_APP_H to table FIEUD_FIDOC_H). After this I've adjusted the table in SE14 (Database Utility). I've done checks in SE14 and it shows the table is consistent.
    But during DB02 -> Space folder -> Single table analysis -> Input table name -> Indexes tab -> Upon clicking statistics, there is a warning "Column statistics not found for table".
    Our basis team is implementing an Add-On in the development system related to RWD Context Sensitive Help. They cannot proceed due to the following inconsistencies found in the table.
    Screenshot error from the activity:
    Screenshot from DB02:
    I'm an ABAP developer and have no other ideas on what to do. Thanks in Advanced.

    Hi All,
    We were able to fix the issue through the following:
    1. Call transaction
    SE14.
    2. Enter the name of
    the table and choose "Edit".
    3. Choose
    "Indexes".
    4. Select the index
    and choose "Choose (F2)".
    5. If you choose
    "Activate and adjust", the system creates the index again and it is
    consistent.
    6. Check the object
    log of this activation.
    7. If an error
    occurs, eliminate the cause and reactivate the index.

Maybe you are looking for