Queries in SQL developper do not return anything?

Hello there,
First of I am completely new to Oracle and IT in general. Apart from having used computers since the heyday my knowledge of programming is very little. I have been reading Oracle documentation and bought the CBT nuggets tutorials to prepare for examination.
I have followed the instructions to install the HR schema which worked in SQL*Plus but whenever i go into SQL developper and create a connection using the same username/password as I did in SQL*plus, then type in the select table_name from user_tables; query, nothing happens.
What am I doing wrong? Am i simply not connecting to the same DB?
Thanks in advance

So when i set up the HR schema using SQL plus and was prompted to give a password for HR, i did that. Now when i open up the SQL plus (as administrator) and log in using username HR and the password i set for it, I can access the Schema's default tables such as employees.
However on SQL developper, I open up a new connection called HR and put the same password that HR uses on SQL plus but whenever I attempt a select statement there are no returns. It just seems like SQL developper is not connected to the database.
I am currently using the CBT nuggers tutorial for the fundamentals exam 1z0-051 and the tutorial uses both SQL developer and SQL plus.
I appreciate all the responses but unfortunately I am stuck :(
I get this message when i go to Query builder:
Text is not a valid, single SELECT statement.
Syntax Error at line 4, column 9
select * employees;
^^^
Expected: ',','BULK','FROM','INTO',BULK_COLLECT_opt,from_clause,into_list,
Query Builder disabled.
Edited by: Vlakarmis on Jan 2, 2013 7:04 AM

Similar Messages

  • Read from sql task and send to data flow task - [OLE DB Source [1]] Error: A rowset based on the SQL command was not returned by the OLE DB provider.

    I have created a execut sql task -
    In that, i have a created a 'empidvar' variable of string type and put sqlstatement = 'select distinct empid from emp'
    Resultset=resultname=0 and variablename=empidvar
    I have added data flow task of ole db type and I put this sql statement under sql command - exec emp_sp @empidvar=?
    I am getting an error.
    [OLE DB Source [1]] Error: A rowset based on the SQL command was not returned by the OLE DB provider.
    [SSIS.Pipeline] Error: component "OLE DB Source" (1) failed the pre-execute phase and returned error code 0xC02092B4.

    shouldnt setting be Result
    Set=Full Resultset as your query returns a resultset? also i think variable to be mapped should be of object type.
    Then for data flow task also you need to put it inside a ForEachLoop based on ADO.NET recordset and map your earlier variable inside it so as to iterate for every value the sql task returns.
    Also if using SP in oledb source make sure you read this
    http://consultingblogs.emc.com/jamiethomson/archive/2006/12/20/SSIS_3A00_-Using-stored-procedures-inside-an-OLE-DB-Source-component.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • A rowset based on the SQL command was not returned by the OLE DB provider.

    Hi
    I am calling a stored procedure using ssis.
    i am creating a work table--temp in the procedure and using that to join and select columns from other tables.
    i am gettig the error
    [Positions [22612]] Error: A rowset based on the SQL command was not returned by the OLE DB provider.
    please help

    SET NOCOUNT ON 
    in the stored procedure and try again.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Why does my function not return anything when I create as a schema object

    I have user ABC who owns several tables some of which have foreign key constraints.
    I have user XYZ that has been granted access to all tables owned by user ABC.
    When I create a function as user XYZ using following I get no return when I issue:
    select XYZ.ztm_tables_depended_on('ABC', 'A_TABLE_OWNED_BY_ABC') from dual :
    Please see after function definition.
    CREATE OR REPLACE FUNCTION ZTM_TABLES_DEPENDED_ON(p_Owner VARCHAR2, p_Table_Name VARCHAR2) RETURN VARCHAR2 IS
      CURSOR C1 IS
      SELECT OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME
      FROM   ALL_CONSTRAINTS
      WHERE  OWNER           = p_Owner
      AND    TABLE_NAME      = p_Table_Name
      AND    CONSTRAINT_TYPE = 'R'
      ORDER  BY OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME;
      v_Referenced_Owner       VARCHAR2(31);
      v_Ret_Val                VARCHAR2(4000);
      FUNCTION CONSTRAINT_TABLE_NAME(p_Owner VARCHAR2, p_Constraint_Name VARCHAR2) RETURN VARCHAR2 IS
        CURSOR C1 IS
        SELECT TABLE_NAME
        FROM   ALL_CONSTRAINTS
        WHERE  OWNER           = p_Owner
        AND    CONSTRAINT_NAME = p_Constraint_Name;
        v_Ret_Val ALL_CONSTRAINTS.TABLE_NAME%TYPE;
      BEGIN
        OPEN  C1;
        FETCH C1 INTO v_Ret_Val;
        CLOSE C1;
        RETURN v_Ret_Val;
      END;
    BEGIN
      FOR R IN C1 LOOP
        IF (R.OWNER <> R.R_OWNER) THEN v_Referenced_Owner := R.R_OWNER || '.';
        ELSE                           v_Referenced_Owner := NULL;
        END IF;
        v_Ret_Val := v_Ret_Val || ', ' || v_Referenced_Owner || CONSTRAINT_TABLE_NAME (R.R_OWNER, R.R_CONSTRAINT_NAME);
      END LOOP;
      RETURN LTRIM(v_Ret_Val, ', ');
    END;
    But, if I embed the function within an anonymous block as follows, I get results:
    DECLARE
      CURSOR C1 IS
      select owner, table_name
      FROM   all_tables where owner = 'ABC';
      FUNCTION ZTM_TABLES_DEPENDED_ON(p_Owner VARCHAR2, p_Table_Name VARCHAR2) RETURN VARCHAR2 IS
        CURSOR C1 IS
        SELECT OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME
        FROM   ALL_CONSTRAINTS
        WHERE  OWNER           = p_Owner
        AND    TABLE_NAME      = p_Table_Name
        AND    CONSTRAINT_TYPE = 'R'
        ORDER  BY OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME;
        v_Referenced_Owner       VARCHAR2(31);
        v_Ret_Val                VARCHAR2(4000);
        FUNCTION CONSTRAINT_TABLE_NAME(p_Owner VARCHAR2, p_Constraint_Name VARCHAR2) RETURN VARCHAR2 IS
          CURSOR C1 IS
          SELECT TABLE_NAME
          FROM   ALL_CONSTRAINTS
          WHERE  OWNER           = p_Owner
          AND    CONSTRAINT_NAME = p_Constraint_Name;
          v_Ret_Val ALL_CONSTRAINTS.TABLE_NAME%TYPE;
        BEGIN
          OPEN  C1;
          FETCH C1 INTO v_Ret_Val;
          CLOSE C1;
          RETURN v_Ret_Val;
        END;
      BEGIN
        FOR R IN C1 LOOP
          IF (R.OWNER <> R.R_OWNER) THEN v_Referenced_Owner := R.R_OWNER || '.';
          ELSE                           v_Referenced_Owner := NULL;
          END IF;
          v_Ret_Val := v_Ret_Val || ', ' || v_Referenced_Owner || CONSTRAINT_TABLE_NAME (R.R_OWNER, R.R_CONSTRAINT_NAME);
        END LOOP;
        RETURN LTRIM(v_Ret_Val, ', ');
      END;
    BEGIN
      FOR R IN C1 LOOP
        DBMS_OUTPUT.PUT_LINE(ztm_tables_depended_on(R.Owner, R.Table_Name));
      END LOOP;
    END;
    Any ideas what is happening here?

    Any ideas what is happening here?
    Justin explained the probable reason.
    See the 'How Roles Work in PL/SQL Blocks' section of the database security doc for the details
    http://docs.oracle.com/cd/E25054_01/network.1111/e16543/authorization.htm#i1007304
    How Roles Work in PL/SQL Blocks
    The use of roles in a PL/SQL block depends on whether it is an anonymous block or a named block (stored procedure, function, or trigger), and whether it executes with definer's rights or invoker's rights.
    Roles Used in Named Blocks with Definer's Rights
    All roles are disabled in any named PL/SQL block (stored procedure, function, or trigger) that executes with definer's rights. Roles are not used for privilege checking and you cannot set roles within a definer's rights procedure.
    The SESSION_ROLES view shows all roles that are currently enabled. If a named PL/SQL block that executes with definer's rights queries SESSION_ROLES, then the query does not return any rows.
    Roles Used in Named Blocks with Invoker's Rights and Anonymous PL/SQL Blocks
    Named PL/SQL blocks that execute with invoker's rights and anonymous PL/SQL blocks are executed based on privileges granted through enabled roles. Current roles are used for privilege checking within an invoker's rights PL/SQL block. You can use dynamic SQL to set a role in the session.
    See that line starting with 'All roles are disables in any named PL/SQL block'?

  • What is a good way to check if sql select basd cursor return anything

    Hello everyone,
    I am trying to find a good way to identify that a SQL select based cursor return nothing.
    I know that or we use exception when no data found, or count(*) to check how many rows are returned.
    I have a cursor based on quite a long select statement.
    Like
    CREATE OR REPLACE PROCEDURE aaa (v_input IN NUMBER, v_output OUT VARCHAR2)
         CURSOR long_cursor IS
              --long select statement(with input variable) ;
    BEGIN
         Select count(*)
         Into v_count
      From
      -- a long select statment with input again ;
      IF v_count > 0 then
        For record in long_cursor loop
         --Get information from cursor
            --other processing for output
        End loop;
      END IF;
    END;Is there any other way than the above ?
    I would love to reduce the amount of typing. I know that repetition in code is not good.
    Thanks in advance,
    Ann
    Edited by: Ann586341 on Feb 28, 2013 2:29 PM

    >
    Not sure I understand your point. I am still a new bie here.
    >
    A flag is just a piece of data. By itself it doesn't prevent anyone from changing the data. And in a multiuser system anything you try to check is based on the COMMITTED data in the system. Two users can be changing two different rows at the same time but neither user will see the other change.
    So if you try to count how many rows meet a particular condition you may get a count of 8 but after the other user commits the count might be 7 or 9. So if you use 8 it may not be valid for very long.
    >
    But the app we use is Oracle Application Express 4.0.
    I assume when the data is read, there will be some kind of lock on these rows so other users cannot change it, right ?
    Or should I use SELECT for update even I do not update anything here.
    >
    I can't help you with that one. That would be a question for the application express forum.
    Oracle Application Express (APEX)
    You don't need to use FOR UPDATE if you don't plan to change the data. But, as explained above, you can't rely on any data you query being the same because another user could be changing it while you are looking at it.

  • Echo $ORACLE_HOME not returning anything

    Hello,
    We are an Oracle On Demand customer , when i try to login to host using putty and try to find the Oracle Home using the command
    # echo $ORACLE_HOME ,
    it doesnt return anything. Is there any configuration that is missing, any help will be appreciated.
    I tried modifying the .bash_profile file by adding
    ORACLE_HOME=$ORACLE_BASE/product/10.2.0
    export ORACLE_HOME
    but still no luck.

    Poking about on the intertubes, I found an Oracle On Demand Technology reference guide (but probably from a different version). Anyways, it has an appendix where all the conventions about setting ORACLE_BASE, ORACLE_HOME and SID are found. You should find that guide for your circumstance, there appears to be a lot of conventions based on things you haven't mentioned.
    Remember, filenames beginning with a dot are hidden (I don't use filezilla so I don't know how it handles that), and some systems are set up with more general environment settings set elsewhere than your .bashrc. You may simply need to dot some other file or use oraenv to condition your settings, or need to create a .bashrc or some other shell specific file.

  • Java Perpared Statement does not return anything

    Sorry fo bad language.
    I have connection with Oracle 8 with JDBC thin drivers. Almost all queries, simple and very complex are doing well, except one:
    select srcCard.object_id
    from objects srcCard, params attrs
    where
    attrs.attr_id = ?
    and attrs.object_id = srcCard.object_id and
    attrs.value=?
    union
    select srcCard.object_id
    from objects srcCard
    where project_id = ? and
    object_type_id in (
    select object_type_id
    from object_types
    start with object_type_id=?
    connect by prior object_type_id=parent_id )
    and srcCard.name=?
    Such query get parameters and don't return anywhere. Java waited for 48 hours and still continue to wait results from Oracle. If I look at sessions list in Oracle (with DBA studio), there is no such query.
    The most strange thing is: query is not work only in Weblogic. If I try to run it with sql navigator or with sqlplus it returns data normally (with extract equal arguments).
    Where is the bug? Is it known bug of driver, Oracle or configuration of Oracle?

    Hi, Jason,
    user11925071 wrote:
    Hello All,
    I have a 8i DB and SQL Plus. in SQL Plus, when I do "desc cat", it gave me this:
    SQL> desc cat;
    Name Null? Type
    TABLE_NAME NOT NULL VARCHAR2(30)
    TABLE_TYPE VARCHAR2(11)
    However when I do "select * from cat;", I though I would get a list of tables, but instead I got "no rows selected". Why is that?The most likely reason is that the table has no data.
    Try:
    SELECT  COUNT (*)
    FROM    cat;to check.
    And the second question is very likely related to the first. I can "desc user_constraints" but when I tried to select some constraints, I got error like this:
    SQL> select constraint_name, constraint_type from user_constraints where tname = 'county_of_use';
    select constraint_name, constraint_type from user_constraints where tname = 'county_of_use'
    ERROR at line 1:
    ORA-00904: invalid column nametname is not a column in user_constraints. Perhaps you meant table_name.
    Text inside quotes is case-sensitive. Most names are all upper-case, so you proabably want to say
    SELECT  constraint_name
    ,     constraint_type
    FROM     user_constraints
    WHERE     table_name       = 'COUNTY_OF_USE';Edited by: Frank Kulash on Sep 22, 2009 5:12 PM
    Originally said "you probably want to say constraint_name'. I agree with the next 2 replies; table_name is more likely.

  • APEX_UTIL.GET_PRINT_DOCUMENT  not returning anything

    I have a report query and have provided a layout to print it
    I need to get the html generated from the report so that I can mail it.
    As I could not get the generated file in the PL/SQL package written , for quick testing I started testing using a SQL stmt to check for the length of the LOB
    select dbms_lob.getlength(APEX_UTIL.GET_PRINT_DOCUMENT (
    p_application_id=>my_app_id,
    p_report_query_name=>'name of qry',
    p_report_layout_name=>'name of layout',
    p_report_layout_type=>'rtf',
    p_document_format=>'htm')) lob_size
    from dual
    I also tried by providing the p_print_server => null in addition to the parameters passed.
    But the query returns NULL only.
    The qry and layout are correct as the query when tested in the edit qry screen in APEX shows the output report in the format required (including html , PDF etc)
    Any pointers ?
    Thx
    Edited by: user618186 on Apr 24, 2009 2:35 PM
    Edited by: user618186 on Apr 24, 2009 2:36 PM

    I have the same problem exactly...works as an APEX proc, will not work from sqlplus despite setting security group id. Mail works. Attachments with another BLOB works. But I can't get this function to give me the BLOB.

  • Java.sql.Types.CLOB not returned

    When I run the following on an oracle 8.1.7 server using thin/OCI driver on a table with a CLOB column,
    DatabaseMetaData dbmd = conn.getMetaData();
    ResultSet rs = dbmd.getColumns( null, null, tableName, "%" );
    while (rs.next()){
    int colType = (int)rs.getShort(5);
    I dont get java.sql.Types.CLOB returned in colType, instead I get java.sql.Types.OTHER.
    However, after a query on the same table, the result set metadata.getColumnType() returns java.sql.Types.CLOB.
    Any ideas?
    Thanks in advance

    You can't do that. You can't do it in SQL either: there's no way to call a stored procedure without providing parameters of a specific type.
    There are two things you can do, however: one is to declare the parameter as VARCHAR and hope it's not a BLOB or something that the db will not automatically convert to VARCHAR and the other is to do a SELECT in the procedure you are calling instead of returning the value as an output parameter. The second option is better in that you can then use ResultSet.getObject() from Java and obtain the correct object type, not a String you might need to parse afterwards.
    Alin.

  • PL/SQL Procedure does not return at end of routine

    Hi All,
    I am in the midst of migrating data for a client. To migrate the data I have written a PL/SQL Block which based on the logic has several loops in the same. As I got the new application DB design I introduced more code to capture the data for the new tables.
    The problem now is that after having finalised all the code when I run the script it does not come out and after some time I get ORA 3113 and Host def undefined error.
    The data is huge . The main table contains about 17000 records but other child tables can reach up 400000 records.
    I am running this in my Dev database.

    Hi All,
    I am in the midst of migrating data for a client. To
    migrate the data I have written a PL/SQL Block which
    based on the logic has several loops in the same. As
    I got the new application DB design I introduced more
    code to capture the data for the new tables. Use less PL/SQL more SQL. Or at least BULK Binds.
    >
    The problem now is that after having finalised all
    the code when I run the script it does not come out
    and after some time I get ORA 3113 and Host def
    undefined error. Do you get the same error with less data, like 2 rows only? Maybe you just hit a network timeout. Ora-3113 could be everything really.
    >
    The data is huge . The main table contains about
    17000 records but other child tables can reach up
    400000 records. Not huge. More than a school/homework project. Big would be like 1 Mill+, huge more like 50 Mill.
    >
    I am running this in my Dev database.Message was edited by:
    Sven W.

  • Re: AJAX-get() not returning anything

    Hello!
    I have the function listed below.
    <script language="JavaScript1.1" type="text/javascript">
    function getJob(callObj,setObj,pWhat) {
    var get = new htmldb_Get(null, &APP_ID.,
    'APPLICATION_PROCESS=getJob', 0);
    alert("Here now plz");
    get.add('P3_EMPNO',callObj.value)
    var gReturn= get.get();
    if(gReturn && pWhat == 'OBJ')
    { html_GetElement(setObj).value = gReturn }
    else if (gReturn && pWhat == 'DIV')
    { html_GetElement(setObj).innerHTML = gReturn }
    else
    { html_GetElement(setObj).value = 'null' }
    get = null;
    </script>
    I also have this application process with this text
    declare
    v_job varchar2(10);
    begin
    select job
    into v_job
    from emp
    where empno = :P3_EMPNO;
    htp.prn(v_job);
    end;
    The get.add() in my function works and sets the cache value for :P3_EMPNO but the get.get() seems not to return any value so nothing is eventually displayed. Might u guys know where i'm messing it up.
    Thnx in adv

    So i added an alert in one of the ifs and concatenated with gReturn and confirmed that the get() is actually working.
    <script language="JavaScript1.1" type="text/javascript">
    function getJob(callObj,setObj,pWhat) {
    var get = new htmldb_Get(null, &APP_ID.,
    'APPLICATION_PROCESS=getJob', 0);
    alert("Here now plz----1");
    get.add('P3_EMPNO',callObj.value)
    var gReturn= get.get();
    if(gReturn && pWhat == 'OBJ')
    { html_GetElement(setObj).value = gReturn;
    alert("OK, Here now plz----1"+gReturn);}
    else if (gReturn && pWhat == 'DIV')
    { html_GetElement(setObj).innerHTML = gReturn }
    else
    { html_GetElement(setObj).value = 'null' }
    get = null;
    </script>
    So how do i display html_GetElement(setObj).value in an item on the form?
    Thnx!

  • Cfldap not returning anything

    I am trying to use cfldap to retireve a user's AD
    information. I have confirmed that I am using the correct server,
    username, password, and start path. But, it always returns a blank,
    no data. Yet, I get no errors. If I do a cfdump, there is no data.
    I am at a loss. At least with an error message I would have
    something to work with. Does anyone have any suggestions or ideas
    on why I would get an empty record with no errors? My code is as
    below:

    Tricks I use with LDAP.
    1) Simplify your attributes, only select CN or * until you
    know you are
    retrieving the desired node, then add all the other elements.
    2) Try without a filter until you confirm the desired node(s)
    are being
    returned, then add the filter.
    3) Try other scopes. Maybe there are no sub nodes to the node
    you have
    mapped to.
    4) A third party LDAP browsers helps me a great deal to make
    sure I am
    understanding the LDAP data correctly. I use the Softerra
    free LDAP
    browser.

  • Ldapsearch_s does not return anything

    Hi,
    I try to use the code below, but somehow retval is always 0. Any idea?
         ldap_user := 'cn=orcladmin';
         ldap_passwd:= 'welcome';
         ldap_base := ' '; --'cn=Login Server (portal30_sso)';     
         v_session := DBMS_LDAP.init(ldap_host, ldap_port);     
         retval := DBMS_LDAP.simple_bind_s(v_session,ldap_user, ldap_passwd);
         my_attrs(1) := 'userpassword';
         retval := DBMS_LDAP.search_s(v_session,
                   ldap_base,
                   DBMS_LDAP.SCOPE_SUBTREE,
                   'objectclass=*', --'cn=TURKER',
                   my_attrs,
                   0,
                   my_message);     
    Thanks.

    Hi Nilay:
    Can you tell me more about your environment. Im trying to reproduce this on my system. How are you executing this code?
    Can you give me step by step what you are doing.
    Thanks,
    Jay

  • I,ve been trying to use the "IMAQ Count Objects" but it seems it does not return anything. I,m not sure if i need a grayscale image as an input? anyone can help

    Any more information on :IMAQ Count Objects" vi?

    It looks like you are correct. I was thinking of the input to "Complex Measure", which requires the binary image. I started with IMAQ back when we had to chain all the routines together ourselves, instead of having a single vi that did everything for us.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • Point cloud clip doesn't return anything in the result table

    Hi experts,
    I am wondering why my point cloud clipping function does not return anything into the result table.
    The boundaries of my point cloud are:
    min long 316,500
    max long 316,643.21
    min lat 234,000
    max lat 234,105.38
    min elevation -4.79
    max elevation 30.87
    For the ind_dimquery I have tried different geometry types, like 3003 and 3008, usually with the elem_info_array (1,1007,3)
    like in the following example:
    SQL> declare
    2 inp sdo_pc;
    3 begin
    4 select pc into inp from base109 where rownum=1;
    5 insert into restst
    6 select * from table(sdo_pc_pkg.clip_pc(
    7 inp,
    8 sdo_geometry(3003, 29903, null,
    9 mdsys.sdo_elem_info_array(1,1007,3),
    10 mdsys.sdo_ordinate_array(316510, 234080, -3, 316550, 234100, 2)),
    11 null, null, null, null));
    12 end;
    13 /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.20
    SQL> select count(*) from restst;
    COUNT(*)
    0
    What am I doing wrong? This should be a query window within the right area and I know that at least one point lies within this defined window.
    Any help is greatly appreciated!!!!!
    Cheers,
    F.

    yes exactly, I have tried all of this already.
    For a further example, there is a point in:
    POINTS(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    R G B I POINT_ID
    SDO_GEOMETRY(3001, 29903, SDO_POINT_TYPE(316503.49, 234089.46, 3.32), NULL, NULL
    71 91 78 70 55
    so theoretically, I'd feel that at the VERY LEAST this point should be in the 3008geometry and 1007 elem array for the coordinates for xmin, y min, zmin, xmax, ymax, zmax for
    316500, 234080, 2, 316510, 234100, 5
    but...nothing. Nothing in the result table.
    For full query:
    SQL> declare
    2 inp sdo_pc;
    3 begin
    4 select pc into inp from base109 where rownum=1;
    5 insert into restst
    6 select * from table(sdo_pc_pkg.clip_pc(
    7 inp,
    8 sdo_geometry(3008, 29903, null,
    9 mdsys.sdo_elem_info_array(1,1007,3),
    10 mdsys.sdo_ordinate_array(316500, 234080, 2, 316510, 234100, 5)),
    11 null, null, null, null));
    12 end;
    13 /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.13
    SQL> select count(*) from restst;
    COUNT(*)
    0

Maybe you are looking for

  • IPhoto will not open since upgrading to OSX 10.8

    Hi, has anyone come across this since upgrading to Mountain Lion. iPhoto will not open and I get the below error message. I was previously on OSX 10.6 with all updates applied to the OS. I upgrade the iPhoto app under iLife 11 on OSX 10.6 and it work

  • Unable to download Management Packs

    Hello, I am having trouble downloading Management Packs on a newly deployed all-in-one SCOM server. Currently I am trying to download the recent version of the Windows Server Operating System Library (6.0.7061.0) but the download is simply failing wi

  • SWF files won't play in Firefox

    When opening SWF files from my computer, Firefox won't run the file, and instead opens a 'save' box so I can apparently re-save the file to my hard drive. This happens both when I drag and drop a file from Windows Explorer and also when I choose 'Ope

  • N73 with update V4.0726.2.0.1 blue tooth satalite ...

    I recently updated to the new software but now I cannot get the bluetooth satalite reciever to work with my tomtom 6, I can pair with it and set it as authorised but it will not work, I check on the status of the satalites and nothing is being reciev

  • Need current video driver

    HP Pavilion p6577c Desktop PC  -  Intel(r) G45/G434 Express Chipset Intel has a new driver  - driver version 15.17.19.64.2869 (8.15.10.2869) for Intel® integrated graphics. Your driver list only has orinal driver - new drive came out on 11/16/2012 .