PLS-00323: subprogram or cursor... really wierd

I'm not sure where I'm causing this error, here is the pkg spec & body... but if i remove v_end_date from spec & body, then this pkg compiles fine...
Here is the error message:
PLS-00323: subprogram or cursor 'my_fn' is
declared in a package specification and must be defined in the
package body
Package Spec
CREATE OR REPLACE PACKAGE Pkg_Rep IS
FUNCTION my_fn ( v_app_id IN NUMBER, v_report_no IN NUMBER, v_prop_id IN NUMBER, v_start_dt IN DATE, v_end_dt IN DATE) RETURN number;
END Pkg_Rep;
Package Body
CREATE OR REPLACE PACKAGE BODY Pkg_Rep AS
FUNCTION my_fn ( v_app_id IN NUMBER, v_report_no IN NUMBER, v_prop_id IN NUMBER, v_start_dt IN DATE, v_end_date IN DATE)
RETURN number IS
BEGIN
END my_fn;
END Pkg_Rep;
/

The signature of the function must be identical, including the name of the parameters.

Similar Messages

  • PLS-00225: subprogram or cursor reference is out of scope

    I am trying to create a PL/SQL program to extract values from a table that has an XML data type. I created the SQL to extract the elements but when I put it into a PL/SQL program I get an error that points to a line in the SQL code that runs fine on it’s own.
    I stripped the PL/SQL code down to the simplest from in order to debug
    DECLARE
    cursor cur_asset_info IS
    SELECT extract(value(a1), '//ASSET_ID[1]/text()').getStringVal() AS "ASSET_ID",
    extract(value(a1), '//ASSET_ID[2]/text()').getStringVal() AS "IP_ADDRESS",
    extract(value(a1), '//IDENTIFIER/text()').getStringVal() AS "DB_IDENTIFIER",
    extract(value(a1), '//PARENT_KEY/text()').getStringVal() AS "PARENT_KEY"
    FROM scanxml_tbl p,
    table(xmlsequence(extract( p.object_value, '/IMPORT_FILE/ASSET')))a1;
    BEGIN
    DBMS_OUTPUT.PUT_LINE(SQLERRM);
    END
    When I run this I get:
    Error report:
    ORA-06550: line 8, column 35:
    PLS-00225: subprogram or cursor 'P' reference is out of scope
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    I am not exactly sure why I get the error.
    Thanks,
    Chris

    Hi ,
    Below is my code where is the issue.pls provide solution
    CREATE OR REPLACE PROCEDURE reconcile_dna
    IS
    CURSOR dna_host IS SELECT * FROM t_dna_stage;
    dna_host_cur dna_host%rowtype;
    CURSOR server_host IS SELECT * FROM t_servers WHERE rec_flag = 'N';
    server_host_rec server_host%rowtype;
    vhostserver_cnt NUMBER := 0;
    vhost_cnt NUMBER := 0;
    vhostdna_cnt NUMBER := 0;
    vserver_cnt NUMBER := 0;
    BEGIN
    DBMS_OUTPUT.put_line ('******Reconciliation Started******');
    UPDATE t_servers
    SET rec_flag = 'N';
    -- Updating t_servers table to set rec_flag='N' before starting the reconciliation process
    BEGIN
    DBMS_OUTPUT.put_line ('******Inside Reconciliation ******');
    OPEN dna_host;
    LOOP
    FETCH dna_host INTO dna_host_cur;
    EXIT WHEN dna_host%NOTFOUND;
    SELECT COUNT (*) -- searching in t_server table
    INTO vhost_cnt
    FROM t_servers
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    IF vhost_cnt > 0
    THEN
    UPDATE t_servers
    -- Updating t_server table if hostname found in dna data
    SET rec_flag = 'Y'
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    SELECT COUNT (*)
    -- searching in t_dna_defects table for reconciled hostnames
    INTO vhostserver_cnt
    FROM t_dna_defects
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    IF vhostserver_cnt > 0
    THEN
    UPDATE t_dna_defects
    -- Updating t_dna_defects table when hostname reconciled in t_servers
    SET remediate_date = SYSDATE,
    active = 'N',
    last_update_by = '502061473',
    last_update_date = SYSDATE
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    END IF;
    ELSE
    SELECT COUNT (*)
    -- searching in t_dna_defects table if hostname notfound in t_server table
    INTO vhostdna_cnt
    FROM t_dna_defects
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    IF vhostdna_cnt > 0
    THEN
    UPDATE t_dna_defects
    -- Updating t_dna_defects table when hostname found in t_dna_defects
    SET COUNT = COUNT + 1,
    last_found_date = SYSDATE,
    last_update_by = '502061473',
    last_update_date = SYSDATE,
    active='Y'
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    ELSE
    INSERT INTO t_dna_defects
    -- Inserting hostname information record in t_dna_defects table when not found in t_server and t_dna_defects
    ( reconcile_id, hostname,
    os, ip_address, business,
    business_unit,
    reporting_business_unit,
    userid, city,
    state, country, active, COUNT,
    first_found_date, last_found_date,
    created_by, creation_date
    VALUES (recon_id_seq.NEXTVAL, dna_host_cur.hostname,
    dna_host_cur.os, dna_host_cur.ip, dna_host_cur.business,
    dna_host_cur.businessunit,
    dna_host_cur.reportingbusinessunit,
    dna_host_cur.userid, dna_host_cur.city,
    dna_host_cur.state, dna_host_cur.country, 'Y', 1,
    SYSDATE, SYSDATE,
    '502061473', SYSDATE
    END IF;
    END IF;
    END LOOP;
    close dna_host;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.put_line ('In Exception step 1 ERROR IS'||SQLCODE||' '||SQLERRM);
    END;
    BEGIN
    DBMS_OUTPUT.put_line ('************Reconciliation step 2******');
    OPEN server_host;
    LOOP
    FETCH server_host INTO server_host_rec;
    EXIT WHEN server_host%NOTFOUND;
    SELECT COUNT (*)
    INTO vserver_cnt
    FROM t_server_defects
    WHERE LOWER (hostname) = LOWER (server_host_rec.hostname);
    IF vserver_cnt > 0
    THEN
    UPDATE t_server_defects
    SET last_found_date = SYSDATE,
    COUNT = COUNT + 1,
    ACTIVE='Y';
    ELSE
    INSERT INTO t_server_defects
    (reconcile_id, hostname, active,
    first_found_date, last_found_date, remediate_date
    VALUES (recon_id_seq.NEXTVAL, server_host_rec.hostname, 'Y',
    SYSDATE, SYSDATE, NULL
    END IF;
    END LOOP;
    CLOSE server_host;
    UPDATE t_server_defects
    SET ACTIVE='N'
    where trunc(last_found_date)<>trunc(sysdate);
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line ('****Inside exception for step 2******');
    DBMS_OUTPUT.put_line ('ERROR IS'||SQLCODE||' '||SQLERRM);
    END;
    COMMIT;
    END;

  • Pls-00225 subprogram or cursor reference is out of scope solution

    Hi ,
    Below is my code. i am getting cursor out of scope error. pls provide solution
    CREATE OR REPLACE PROCEDURE reconcile_dna
    IS
    CURSOR dna_host IS SELECT * FROM t_dna_stage;
    dna_host_cur dna_host%rowtype;
    CURSOR server_host IS SELECT * FROM t_servers WHERE rec_flag = 'N';
    server_host_rec server_host%rowtype;
    vhostserver_cnt NUMBER := 0;
    vhost_cnt NUMBER := 0;
    vhostdna_cnt NUMBER := 0;
    vserver_cnt NUMBER := 0;
    BEGIN
    DBMS_OUTPUT.put_line ('******Reconciliation Started******');
    UPDATE t_servers
    SET rec_flag = 'N';
    -- Updating t_servers table to set rec_flag='N' before starting the reconciliation process
    BEGIN
    DBMS_OUTPUT.put_line ('******Inside Reconciliation ******');
    OPEN dna_host;
    LOOP
    FETCH dna_host INTO dna_host_cur;
    EXIT WHEN dna_host%NOTFOUND;
    SELECT COUNT (*) -- searching in t_server table
    INTO vhost_cnt
    FROM t_servers
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    IF vhost_cnt > 0
    THEN
    UPDATE t_servers
    -- Updating t_server table if hostname found in dna data
    SET rec_flag = 'Y'
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    SELECT COUNT (*)
    -- searching in t_dna_defects table for reconciled hostnames
    INTO vhostserver_cnt
    FROM t_dna_defects
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    IF vhostserver_cnt > 0
    THEN
    UPDATE t_dna_defects
    -- Updating t_dna_defects table when hostname reconciled in t_servers
    SET remediate_date = SYSDATE,
    active = 'N',
    last_update_by = '502061473',
    last_update_date = SYSDATE
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    END IF;
    ELSE
    SELECT COUNT (*)
    -- searching in t_dna_defects table if hostname notfound in t_server table
    INTO vhostdna_cnt
    FROM t_dna_defects
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    IF vhostdna_cnt > 0
    THEN
    UPDATE t_dna_defects
    -- Updating t_dna_defects table when hostname found in t_dna_defects
    SET COUNT = COUNT + 1,
    last_found_date = SYSDATE,
    last_update_by = '502061473',
    last_update_date = SYSDATE,
    active='Y'
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    ELSE
    INSERT INTO t_dna_defects
    -- Inserting hostname information record in t_dna_defects table when not found in t_server and t_dna_defects
    ( reconcile_id, hostname,
    os, ip_address, business,
    business_unit,
    reporting_business_unit,
    userid, city,
    state, country, active, COUNT,
    first_found_date, last_found_date,
    created_by, creation_date
    VALUES (recon_id_seq.NEXTVAL, dna_host_cur.hostname,
    dna_host_cur.os, dna_host_cur.ip, dna_host_cur.business,
    dna_host_cur.businessunit,
    dna_host_cur.reportingbusinessunit,
    dna_host_cur.userid, dna_host_cur.city,
    dna_host_cur.state, dna_host_cur.country, 'Y', 1,
    SYSDATE, SYSDATE,
    '502061473', SYSDATE
    END IF;
    END IF;
    END LOOP;
    close dna_host;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.put_line ('In Exception step 1 ERROR IS'||SQLCODE||' '||SQLERRM);
    END;
    BEGIN
    DBMS_OUTPUT.put_line ('************Reconciliation step 2******');
    OPEN server_host;
    LOOP
    FETCH server_host INTO server_host_rec;
    EXIT WHEN server_host%NOTFOUND;
    SELECT COUNT (*)
    INTO vserver_cnt
    FROM t_server_defects
    WHERE LOWER (hostname) = LOWER (server_host_rec.hostname);
    IF vserver_cnt > 0
    THEN
    UPDATE t_server_defects
    SET last_found_date = SYSDATE,
    COUNT = COUNT + 1,
    ACTIVE='Y';
    ELSE
    INSERT INTO t_server_defects
    (reconcile_id, hostname, active,
    first_found_date, last_found_date, remediate_date
    VALUES (recon_id_seq.NEXTVAL, server_host_rec.hostname, 'Y',
    SYSDATE, SYSDATE, NULL
    END IF;
    END LOOP;
    CLOSE server_host;
    UPDATE t_server_defects
    SET ACTIVE='N'
    where trunc(last_found_date)<>trunc(sysdate);
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line ('****Inside exception for step 2******');
    DBMS_OUTPUT.put_line ('ERROR IS'||SQLCODE||' '||SQLERRM);
    END;
    COMMIT;
    END;
    Regards,
    Tiru

    Would you please edit your post and put formatted code between 'code' tags as discussed in the FAQ.
    This code needs to be rewritten. It uses loops and multiple queries to do simple updates.
    For example the first query in this code
    SELECT COUNT (*) -- searching in t_server table
    INTO vhost_cnt
    FROM t_servers
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);
    IF vhost_cnt > 0
    THEN
    UPDATE t_servers
    -- Updating t_server table if hostname found in dna data
    SET rec_flag = 'Y'
    WHERE LOWER (hostname) = LOWER (dna_host_cur.hostname);isn't even needed - just do the second UPDATE - if there aren't any rows to update then nothing will be updated? The first query would only be beneficial if the normal case is that there are no records to be updated. For cases where there are records to be updated you are executing two queries when one would do the job. And both queries will use full table scans unless you have functional indexes on both 'hostname' columns.
    You then have two more sets of queries that use two queries instead of one.
    I suggest you remove the extra queries, and then put the remaining formatted code in 'code' tags. The code will be simpler, perform better and be easier to see what your problem is.

  • PLS-00323 forward declaration in PLSQL Version 10.

    Hello.
    I have a package which contains forward references which compiles on a 9i database.
    However, when I try to compile an exact copy of the procedure on a 10g database it returns an error
    "PLS-00323: subprogram or cursor 'P_PA_ACTION_START' is declared in a package specification and must be defined in the package body"
    I was wondering if there were any differences in the rules concerning forward references in pl/sql 10.
    Thanks in advance.
    Glyn Williams.

    Hello.
    I have a package which contains forward references which compiles on a 9i database.
    However, when I try to compile an exact copy of the procedure on a 10g database it returns an error
    "PLS-00323: subprogram or cursor 'P_PA_ACTION_START' is declared in a package specification and must be defined in the package body"
    I was wondering if there were any differences in the rules concerning forward references in pl/sql 10.
    Thanks in advance.
    Glyn Williams.

  • I have the PLS-00323 but ..I am getting it

    Ok here is the declaration in the the package header..
    FUNCTION fn_populate_rgns_from_national(fv_sales_force_no IN
    tsales_force.sales_force_no%TYPE
    ,fv_budget_no IN tbudget_plan.budget_no%TYPE) RETURN VARCHAR2;
    ....now here is the package body ...
    Function fn_populate_rgns_from_national(fv_sales_force_no IN
    tslaes_force.sales_force%TYPE ,
    fv_budget_no IN tbudget_plan.budget_no%type) RETURN VARCHAR2 IS
    BEgin
    < yada > <yada>
    ENd ;
    As far as I can tell...the declaration is the same in the
    package header and body...then why the heck, I am getting the
    PLS-0323 error :
    LINE/COL ERROR
    5/10 PLS-00323: subprogram or
    cursor 'FN_POPULATE_RGNS_FROM_NATIONAL'
    is declared in a package specification and must be
    defined in the
    package body
    I am at my wits end..

    its typing mistake...
    package specification
    fv_sales_force_no IN tsales_force.sales_force_no%TYPE
    package body :
    fv_sales_force_no IN tslaes_force.sales_force%TYPE ,
    _no is missing in package body.. make changes to either
    package body or specification and run it. its not oracle bug,
    human mistake.

  • Really wierd stains when inserting photoshop files into my indesign document

    Dear Indesigners,
    I had encountered this problem before. Then I exported the file as JPEG and printed from there on.
    But now it really bothers me what adobe is doing.
    I am creating a birthcard. There for I designed the background (in indesign with simple lines & circles). Photo with ribbon I designed in photoshop. The circle pattern around the picture is also in Indesign.
    Whenever I print this file from indesign I get really wierd stains on my Photoshop part of the document.  You can verify this in the attachment.
    If I export this and print from there, the stains are nowhere to be seen.
    Is this some weird setting that I have looked over? The Photoshop document is in CMYK format.
    This is the export file:
    This is the scanned, printed file (increased contrast)

    http://indesignsecrets.com/eliminating-ydb-yucky-discolored-box-syndrome.php

  • Really Wierd!! IMAC 24inch please advise

    I have no idea what just happend!!??
    im hoping someone can give me some insight on this one please!!
    i was just using my Imac when my BT mighty mouse geeked out.
    everytime i would click it acted as a right click....after numerous clicks the screen then magnified at about 500 percent!!
    and i was able to float around the whole screen by moving my mouse??
    as if i captured a pic of my desktop and also my web pages....
    the only way i got it back to normall was to do a restart!!
    my question is this,
    1.was this a feature i triggered by mistake?
    or was this a glitch??
    im really freaked out about this as im not sure what to make of it....
    any advise would be greatlly appreciated.......

    If you press the ctrl key and use the scroll ball it will zoom in and out of the screen.
    Hope that helps.
    Ryan

  • CS3 Custom cursor acting wierd

    Hello, I am a student in an animation class; our current project is making a website portfolio.  I have discovered some sort of bug or something to that effect, inside of my custom cursor is a button, this button contains a click function.  When I click with the cursor the animation does play, but to a point.  The error occurs when the layer with the custom cursor is above the layer with the buttons.  Neither the rollover, nor the "go to" function work when the timeline's layers is arranged like so.  BUT when the custom cursor is in a layer below the buttons the buttons work fine, but the cursor's animation doesn't play when you click on them, and becaue the cursor is on a layer below the buttons it appears below the buttons when rendered out.
    Please help if you can,
    Thanks!~

    that's normal behavior.  mouse events are intercepted by the top-most interactive object.
    if you want help working-around that behavior, are you using as2 or as3?

  • Really wierd sound in MBP.

    I recieved my mbp a few days ago and love it. But today i had it on the desk and went to move it to the other room and i heard a wierd sound when it was at an angle that sounds like magnetic balls were rolling around. Its hard to describe the sound but it did sound like little balls were rolling around. It stopped doing it now. Please hel[ figure out what the sound was! Thanks
    Macbook Pro   Mac OS X (10.4.7)  

    Well, I would have said the hard drive, however, the fact that it only happens while on an angle leads me to believe it may be the fan. I can't imagine the hard drive being damaged to the point where it grinds on tilt and yet still works. More likely it is a loose fan that is aggravated by a tilt. It all depends on the location of the sound though.

  • Imac acting really wierd!

    I'm back for more advice. Just when I thought I had the silly thing fixed after the "sleep" issue after doing the update... Now something really weird is going on. Sunday night, our power went out for a max of 2 seconds. The computer and everything with it is on a surge protector. iMac was asleep at the time. When we went to wake it up yesterday, it wouldn't wake up! We held the power button and finally it came on, but it was running incredibly slow. We tried to get online, but iMac said that we didn't have an internet connection. We have DSL. I tried everything on the silly machine and nothing would work. It wouldn't let me put it to sleep, shut down, change users (so I could run my "test" account). All I ever got was the dreaded bouncing beach ball. To make a long story short, I decided my only option after trying disk repairs, etc.. was to an "archive and install". I did that and the darn computer still was doing the same exact thing!! I couldn't put it to sleep, shut it down, switch users, anything! I couldn't even pull up my system information so I could call Apple!
    Today, I drug my iMac to work with me, thinking that I could call Apple and have the mac right here and still use my PC work computer. I turned on my mac and low and behold, it works perfectly! It's like yesterday never happened! It goes to sleep, wakes up, shuts down, does all of the tests (which were negative). What gives??
    My questions are: What could have happened? Could my power strip be bad, but not bad enough to completely quit working? Could my DSL modem be acting up and making my mac act crazy? I thought that when I get home from work today, I will plug the mac into a seperate outlet and then re-set the modem. I will then hook the modem into my airport express and see what happens. What do you think? Thank you!!
    iMac G5 PowerMac 12.1 Power PC G5 (3.0)   Mac OS X (10.4.7)   1.9 GHz, 1gb

    Hi nuttysami123,
    You probably did a variation of the SMU reset, check out the link...
    I had my power go out last night briefly and could not reconnect to the internet. What happened was I had changed the "master" password on my account, when power and DSL came back on, the DSL account did not recognize the username with my new password. I had to reset DSL router to recognize my new password and like your magical Mac, my internet connection came back... Rick
    iMac G5 iSight 20" - 30G iPOD in Slimming Black -   Mac OS X (10.4.7)   - HP Pav 15" WS and Toshiba Sat 17" WS LP's - Canon 20D & A620

  • Really wierd problem! HELP!

    Today I restarted my mac because I had just installed a new version of quicktime.
    But when it rebooted everything was wrong. The custom background I had was replaced with the standard apple one. All of the icons in the status bar had been reset to default (eg. I had the time set to display seconds, but now it doesn't. And when I go into preferences to change it back it doesn't work).
    The dock has gone back to default and has a question mark for iMovie. When I go into preferences to change something like the background, it doesn't work. It remains the same. Also there are no longer any startup items listed. But there were before.
    Mail is asking me to set up an account when I already have 2 accounts set up. iTunes displayed a licence agreement on launch. Loads of other apps have been reset.
    But what's even more weird is that all my prefences, applications, files, folders, everything are still there, un-touched. All as they were before the restart.
    I've tried repairing permissions and the same file pops up. cd9660.fs. It changes the permissions everytime, but it never seems to work.
    I've also tried doing a disk repair. That says there is an incorrect file count everytime, but never seems to work when it trys to fix it.
    What do I do next?
    Tom

    Hi Tom
    You have several unconnected things going on here.
    First, the case of the missing user files. Did you, at any point, rename your home folder (the folder with the house icon)? See here:
    http://docs.info.apple.com/article.html?artnum=107854
    Second, the message about the cd9660 permissions in Repair Permissions can be safely ignored. See here:
    http://docs.info.apple.com/article.html?artnum=107298
    Third, the incorrect file count. Presumably you ran Disk Utility from your installation disk? Have you tried running DiskWarrior - if not, I thoroughly recommend it.
    But first, restore your home folder as specified in the first step.
    Matt

  • I've got a really wierd problem

    Alright well my specs are:
    athlon64 3000+ newcastle core
    sapphire radeon 9800pro 256-bit 128mb
    geil pc3200 ddram
    samsung 120gb 7,200 rpm 8mb cache hdd
    msi k8t fsr
    running win2k server sp4
    now heres the problem, ever since a few days ago when I booted my computer normally the mouse(microsoft optical) has stopped working(I can notice its not getting any power because the laser on the bottem is off, normally it turns on after the second set of beeps when I boot up), when I plug in some old mouse it works fine. Now the major problem is that when I plug in my linksys usb adapter my mouse almost stops working, as in I can't move the pointer but it still responds to clicks. Also the lights on the usb adapter dim out, as if it isn't getting any power.
    now I'm not sure if something happened to the mobo or if somethings wrong with my powersupply, sadly its a stock 420W psu from thermaltake that came with my case
    if it matters I'm using 10 case fans but I doubt that my psu can't support my hardware since its been working for 2 months now..
    help and any ideas would be great

    aha!!! another person with exactly the same problem as me!!!
    m8, i had EXACTLY the same problem, i had threads 40 responses long about it...
    there IS a solution!!
    but it costs money... you need a powered USB hub, basically a PCI card which has usb ports in the back of it, no external power, just plugged into the pci slots. i have only just fixed this problem after 3/4 months of random problems, ill link my old discussions about it in a sec.
    hope this does fix it for you, im pretty sure it will!
    Edit: thats obviously only for the mice and gamepads etc wont help with network afaik

  • IMac 24 2.33 issues- REALLY wierd

    OK, here is the largest and strangest set of issues you have ever heard of. Nothing compares, and I dare you to fix it!
    I got my hands on an iMac 2.33 (white), however it was just the back, stand and logic board- It had a sticker that read, "turns on, chines, no boot"
    SO, I browsed for someone with the rest of it to see what the issue was, and to see if I could fix it. I assumed it was a bad HDD...
    I got a 24 2.16 iMac, and I took it home and took all the parts out. Turns out that the iMac would phisically freeze upon attempting to boot and the graphics card had problems. The CPU was working fine.
    SO, I took out the graphics card and swaped in the other card. now it turns on, chimes, goes to the grey screen with logo, boots fine with no lagging in the wheel, but then freezes on the grey screen- like the one just before the blue, which goes to the desktop.
    STRANGEST YET, when I took a look at the light, it would go off at the boot as normal, then after being stuck at the grey screen for no more than a minute it would turn on and stay on, no flashing.
    I have tried the other logic board from the other copmputer (which was suspected to be iffy) and it does the same.
    I'm also not computer illiterate, so here's what I have done-
    Booted normally
    Booted safe mode, safe issue as above
    Booted verbose mode, nothing wrong, no errors and it continues to the grey screen
    Tried my back up of the 10.6 disk which is on a USB drive, freezes on the spinning wheel- maybe USB is an issue but I do not have any actual disks or a DL DVD
    Swaped RAM but that would cause a loud beep if it was an issue.
    Here's the catch, and I'm not sure if its the issue- the internal drive was originally from another computer, an iMac 20 core duo. Could it be some driver issues? Its a 750GB drive but size shouldn't matter...?
    Please let me know what you think about this cluster of issues. In the meantime I will try to eliminate some of the variables.

    Update- just tried to boot without an inter HD- showed my the "missing file system" icon, no freeze ups
    I also tried to boot from a USB from there- also froze.
    I will try to use my 10.4 disk and see what happens

  • Display doing really wierd things!  please help

    Hi- All of a sudden this morning the display on my ibook did this most peculiar thing. The fonts and everything on the desktop got much larger and the whole screen moves around as if it is being dragged (as in drag and drop). I'm using an external mouse (the trackpad has been dead for years). I changed mice to see if that would solve the problem, but no luck. Rebooting doesn't help either. As it boots up everything looks fine, but as the boot up process finishes everything increases in size and then moves around when I move the mouse. It is enough to make me sea-sick! Thanks, in advance for your help. -Howard

    Hi- I figure it out from the question 2 below this one- the "zoom" function had somehow gotten turned on! Thanks -Howard

  • REALLY wierd iPod Touch Sound

    Hello, I have a 2nd generation iPod touch currently running iOS 4.0... When I push my volume buttons to adjust my iPod's volume, it says "Headphones", when I don't have headphones plugged in. So the only way that I can get ANY sound out of my iPod, is to plug in headphones, or a male AUX. Sound won't even work when i plug it in to a iPod docking station for listening to music.
    _*SOMEONE PLEASE HELP ME!!!_ My warranty is gone, and this is the ONLY iPod I'm allowed to have.

    SRY can't help.But if you are near an apple store bring it to the store and ask the geiunus bar people for help
    http://www.apple.com/retail/geniusbar/

Maybe you are looking for