Oracle ORA-01428: argument is out of range error

Oracle ORA-01428: argument is out of range error

I take it you don't feel like spending the extra money for the EE add-on that was designed to CREATE an INDEX on polygons of logitude,latitude values in such away that a simple
SELECT * FROM ZIP_CODES WHERE SDO_WITHIN_DISTANCE( Z.ZIPCODE_AREA, /* point for zipcode */, 'distance=' || in_distance ) = 'TRUE';
will be very efficient and fast.
primary thing:
you need to drop out the WHEN OTHERS THEN NULL;
also, take advantage of the NO_ROWS_FOUND exception for finding out if a row exists in the database. (instead of doing an IF statement on the results of COUNT(*))
back to your problem
You'll need to investigate which row is causing the problem.
Most likely, it is the zipcode that was the input for the search.  I've seen this occur many times on similar trigonometric calculations.
You may have to surround a lot of those trigonometric functions with ROUND( ____, 25) to get it to work.
However, I highly advise you to take a look at what can be done with Oracle Spacial
MK

Similar Messages

  • ORA-01428: argument '0' is out of range

    Hi,
    in 10g R2 , I created (code found in David Kurtz article) a function as follows but when use it I receive an error :
    SQL> CREATE OR REPLACE FUNCTION h2i (p_hash_value NUMBER) RETURN VARCHAR2 IS
      2  l_output VARCHAR2(10) := '';
      3  BEGIN
      4  FOR i IN (
      5  SELECT substr('0123456789abcdfghjkmnpqrstuvwxyz',1+floor(mod(p_hash_value/(POWER(32,LEVEL-1)),32)),1) sqlidchar
      6  FROM dual CONNECT BY LEVEL <= LN(p_hash_value)/LN(32) ORDER BY LEVEL DESC
      7  ) LOOP
      8  l_output := l_output || i.sqlidchar;
      9  END LOOP;
    10  RETURN l_output;
    11  END;
    12  /
    Function created.
    SQL> select SQL_PLAN_HASH_VALUE, sql_id ,h2i(SQL_PLAN_HASH_VALUE) from v$active_session_history;
    select SQL_PLAN_HASH_VALUE, sql_id ,h2i(SQL_PLAN_HASH_VALUE) from v$active_session_history
    ERROR at line 1:
    ORA-01428: argument '0' is out of range
    ORA-06512: at "SYS.H2I", line 4ANy idea ? Any help ,
    Thank you.

    Thaks Michael,
    SELECT sql_id, dbms_utility.sqlid_to_sqlhash (sql_id) hash,
           sql_plan_hash_value
      FROM v$active_session_history
    WHERE sql_plan_hash_value != 0
    SQL_ID              HASH SQL_PLAN_HASH_VALUE
    g1p4md32k85mv 3307476603           149324150
    bwhzpth8a3zgv  279051771          2848324471
    bwhzpth8a3zgv  279051771          2848324471
    0zcud3g9fky57 3538516135          2890534904
    0zcud3g9fky57 3538516135          2890534904
    0zcud3g9fky57 3538516135          2890534904
    08bqjmf8490s2 2420409090          2890534904
    4gd6b1r53yt88 3393152264          2675018582
    4gd6b1r53yt88 3393152264          2675018582
    26xbn5mhmjqn9 3778599561           381738983
    4gd6b1r53yt88 3393152264          2675018582Then can I conclude that h2i function is wrong and it would be better to use original oracle dbms_utility.sqlid_to_sqlhash ?

  • ORA-01428: argument '-1' is out of range

    hi
      here is the details: -
    Select walkin_id, applying_for from walkins where walkin_id =197
    WALKIN_ID     APPLYING_FOR
    197             CLASS1:CLASS2:OTHER /*stored colon seprated classification*/
    Select program_id, program_name, classification from ss_programs
    PROGRAM_ID     PROGRAM_NAME     CLASSIFICATION
    1             PG1                         CLASS1
    2             PG2                         CLASS1
    3             PG3                         CLASS3
    4             PG4                         CLASS1
    5             PG5                         CLASS1
    6             PG6                         CLASS1
    7             PG7                         CLASS1
    8             PG8                         CLASS1
    9             PG9                         CLASS1
    10             PG10                     CLASS2
    11             PG11                    CLASS2
    12             PG12                     CLASS3
    13             PG13                     CLASS1
    14             PG14                     CLASS1
    15             PG15                    CLASS1
    16             PG16                     CLASS1
    17             PG17                     CLASS1
    18             OTHER                     OTHER
    now i wanted to extract all the program_ids belongs to the  walkins.applying_for (colon seprated ss_programs.classification) and
    rebuild them into colon separated list
    like if
    walkins.applying_for is :  CLASS1:CLASS2:OTHER then the
    program_list would be : PG1:PG2:PG4:PG5:PG6:PG7:PG8:PG9:PG10:PG11:PG13:PG14:PG15:PG16:PG17:OTHER
    and for this i build the following query and its giving me
    "ORA-01428: argument '-1' is out of range" error and i am stucked.
    So could you please tell me where i am doing wrong
    and can we do this with SQL like below specified query or some other (SQL) way.
    SELECT SUBSTR (LTRIM(MAX (SYS_CONNECT_BY_PATH (program_id, ':')) KEEP (DENSE_RANK LAST ORDER BY curr),
                    ':'), 2) programs
    FROM               
    (SELECT walkin_id, program_id,
           row_number() over (partition by 1 order by program_id) curr,
           row_number() over (partition by 1 order by program_id)-1 prev
    FROM      
    (SELECT wp.walkin_id, sp.program_id
    FROM SS_PROGRAMS sp,
        (SELECT walkin_id, substr(val, decode(level, 1, 1, INSTR(val, ':', 1, LEVEL -1)+1),
               INSTR(val, ':', 1, level) - decode(level, 1, 1, INSTR(val, ':', 1, LEVEL -1)+1)) walkin_classif
           FROM      
           (SELECT walkin_id, DECODE(SUBSTR(applying_for, -1, 1), ':', applying_for, applying_for||':') val FROM walkins
        WHERE walkin_id =197)
        CONNECT BY INSTR(val, ':', 1, LEVEL) > 0) wp
    WHERE sp.classification = wp.walkin_classif))
    GROUP BY walkin_id
    CONNECT BY prev = PRIOR curr AND walkin_id = PRIOR walkin_id
            START WITH curr = 1;

    And if you want it to work for more than 1 walkin at the same time:
    SQL> create table walkins (walkin_id, applying_for)
      2  as
      3  select 197, 'CLASS1:CLASS2:OTHER' from dual union all
      4  select 198, null from dual union all
      5  select 199, 'CLASS4' from dual union all
      6  select 200, 'CLASS3:CLASS1' from dual
      7  /
    Table created.
    SQL> create table ss_programs (program_id, program_name, classification)
      2  as
      3  select 1, 'PG1', 'CLASS1' from dual union all
      4  select 2, 'PG2', 'CLASS1' from dual union all
      5  select 3, 'PG3', 'CLASS3' from dual union all
      6  select 4, 'PG4', 'CLASS1' from dual union all
      7  select 5, 'PG5', 'CLASS1' from dual union all
      8  select 6, 'PG6', 'CLASS1' from dual union all
      9  select 7, 'PG7', 'CLASS1' from dual union all
    10  select 8, 'PG8', 'CLASS1' from dual union all
    11  select 9, 'PG9', 'CLASS1' from dual union all
    12  select 10, 'PG10', 'CLASS2' from dual union all
    13  select 11, 'PG11', 'CLASS2' from dual union all
    14  select 12, 'PG12', 'CLASS3' from dual union all
    15  select 13, 'PG13', 'CLASS1' from dual union all
    16  select 14, 'PG14', 'CLASS1' from dual union all
    17  select 15, 'PG15', 'CLASS1' from dual union all
    18  select 16, 'PG16', 'CLASS1' from dual union all
    19  select 17, 'PG17', 'CLASS1' from dual union all
    20  select 18, 'OTHER', 'OTHER' from dual
    21  /
    Table created.
    SQL> with walkins_normalized as
      2  ( select walkin_id
      3         , substr
      4           ( ':' || applying_for || ':'
      5           , instr(':' || applying_for || ':',':',1,l) + 1
      6           , instr(':' || applying_for || ':',':',1,l+1) - instr(':' || applying_for || ':',':',1,l) -1
      7           ) applying_for_element
      8      from walkins w
      9         , ( select level l
    10               from ( select max(length(applying_for) - length(replace(applying_for,':')))+1 maxn
    11                        from walkins
    12                    )
    13            connect by level <= maxn
    14           ) m
    15     where l <= length(applying_for) - length(replace(applying_for,':'))+1
    16  )
    17  , string_aggregated as
    18  ( select walkin_id
    19         , rtrim(pl,':') program_list
    20         , rn
    21      from walkins_normalized w
    22         , ss_programs p
    23     where w.applying_for_element = p.classification
    24     model
    25           partition by (w.walkin_id)
    26           dimension by (row_number() over (partition by w.walkin_id order by p.program_id) rn)
    27           measures (cast(p.program_name as varchar2(100)) pl)
    28           rules
    29           ( pl[any] order by rn desc = pl[cv()] || ':' || pl[cv()+1]
    30           )
    31  )
    32  select walkin_id
    33       , program_list
    34    from string_aggregated
    35   where rn = 1
    36  /
    WALKIN_ID PROGRAM_LIST
           197 PG1:PG2:PG4:PG5:PG6:PG7:PG8:PG9:PG10:PG11:PG13:PG14:PG15:PG16:PG17:OTHER
           200 PG1:PG2:PG3:PG4:PG5:PG6:PG7:PG8:PG9:PG12:PG13:PG14:PG15:PG16:PG17
    2 rows selected.And by the way, you should think of redesigning your walkins table to something normalized...
    Regards,
    Rob.

  • Spatial index creation error -ORA-13011: value is out of range

    I am trying to create a spatial index and this is what I get.
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13200: internal error [ROWID:AAAFXYAADAAABxyAAD] in spatial indexing.
    ORA-13206: internal error [] while creating the spatial index
    ORA-13011: value is out of range
    ORA-00600: internal error code, arguments: [kope2upic014], [], [], [], [],
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 7
    ORA-06512: at line 1
    I can't find any documentation as to how to fix this. How do you determine which row of data is out of range? Any help would be greatly appreciated!

    Hi Jeff,
    The data at rowid AAAFXYAADAAABxyAAD has a problem.
    Can see what the issue is by doing:
    select sdo_geom.validate_geometry(geom_col_name,diminfo)
    from your_table_name a, user_sdo_geom_metadata b
    where b.table_name='YOUR_TABLE_NAME'
    and a.rowid='AAAFXYAADAAABxyAAD';
    If you are using Oracle9iR2 then this would be even better:
    select sdo_geom.validate_geometry_with_context(geom_col_name,diminfo)
    from your_table_name a, user_sdo_geom_metadata b
    where b.table_name='YOUR_TABLE_NAME'
    and a.rowid='AAAFXYAADAAABxyAAD';

  • Index: The argument is out of range: 8 0 or 8 =8. (Error: RWI 00012)

    Hi Friends,
    One of my user is receiving the below error, pls help me is resolving this.
    index: The argument is out of range: 8<0 or 8>=8. (Error: RWI 00012)
    Thanks in Advance
    MMVIHAR

    Hi,
    No, you defiitely should not/cannot apply FP4.2 ontop of SP05
    This fix is going to be ported to FP5.1  which is planned for CW25 (end of June)  according to here:
    https://websmp104.sap-ag.de/~form/sapnet?_SHORTKEY=01200252310000092015&_SCENARIO=01100035870000000202&
    Regards,
    H

  • Repost: Oracle VM Manager (IndexError: list index out of range) error

    The Oracle VM Manager software will not import a server side created VM for management purposes. It is giving an index-out-of-range error when trying to retrieve the Memory Size from the jumpbox.xen file (I created a symbolic link to this file called vm.cfg).
    Here is the log for the index-out-of-range error:
    ovs_root.log
    "2008-08-20 02:03:26" INFO=> utl_list_dir: directory('/OVS/running_pool') => pro
    jectweb/,infinesse-web/
    "2008-08-20 02:03:26" INFO=> list_dir: directory('/OVS/running_pool') => project
    web/,infinesse-web/
    "2008-08-20 02:03:26" INFO=> utl_get_vm_size: vm('/OVS/running_pool/infinesse-we
    b') => 12020
    "2008-08-20 02:03:26" INFO=> get_vm_size:vm('/OVS/running_pool/infinesse-web') =
    success:size=12020"2008-08-20 02:03:26" ERROR=> xen_get_memory:vm('/OVS/running_pool/infinesse-web
    ')=><IndexError: list index out of range>
    "2008-08-20 02:03:26" INFO=> get_vm_memory: vm('/OVS/running_pool/infinesse-web'
    ) scope=cfg rs=failed:<IndexError: list index out of range>
    and my vm.cfg file:
    # -- mode: python; --
    # This JumpBox requires Hardware Support otherwise known as Xen's HVM mode.
    # To test your Xen installation if it supports this mode, issue the following
    # command:
    # sudo xm info | grep xen_caps
    # it should return a capabilities line like:
    # xen_caps : xen-3.0-x86_32 hvm-3.0-x86_32
    # as long as there is an hvm entry as shown above it should work.
    ## If starting Xen fails you may need to set a custom path
    ## for your kernel or device model files. Uncommant the following
    ## variables and put in the appropriate paths
    ## Uncomment and set your custom hvm loader path here
    # hvm_path = ""
    ## Uncomment and set your custom device model loader path here
    # devmodel_path = ""
    # You will probably want to uncomment the following VNC variables so you
    # can see the JumpBox console over VNC. Make sure to set the vncpassword to
    # something unique. Also, if you run multiple JumpBoxes on the same host, you
    # may want to leave vncdisplay unset and use the domid for the display numbers
    #vnc=1 # enable VNC library for graphics, default = 1
    #vnclisten="0.0.0.0" # address that should be listened on for the VNC server if vnc is set.
    #vncdisplay=1 # set VNC display number, default = domid
    #vncconsole=1 # enable spawning vncviewer for domain's console
    #vncpasswd='password' # set password for domain's VNC console
    memory = '256'
    vfb = ['type=vnc,vncunused=1,vnclisten=0.0.0.0']
    ########### You shouldn't have to edit anything below here ##############
    import os
    import sys
    # Assemble the basepath
    file = os.getcwd() + '/' + sys.argv[2]
    basepath = os.path.dirname(os.path.abspath(file))
    datatarball = basepath + '/disks/data/data.xen.tgz'
    builder = "hvm"
    hvmfiles = [
    '/usr/lib/xen/boot/hvmloader',
    '/usr/lib/xen-ioemu-3.0/boot/hvmloader'
    devfiles = [
    '/usr/lib/xen/bin/qemu-dm',
    '/usr/lib/xen-ioemu-3.0/bin/qemu-dm'
    # Check to see if the user has assigned custom HVM or device_model paths
    try:
    hvmfiles.insert(hvm_path,0)
    except NameError:
    pass
    try:
    devfiles.insert(devmodel_path,0)
    except NameError:
    pass
    # Choose the appropriate HVM Loader
    for i in hvmfiles:
    if os.path.exists(i):
    kernel = i
    break
    # Choose the appropriate Device Models
    for i in devfiles:
    if os.path.exists(i):
    device_model = i
    break
    # Need to test if device_model and kernel are set, if not return with error.
    # If this is the first time this has run, extract the data disk tarball
    # then remove the tarball
    if os.path.exists(datatarball):
    os.chdir(basepath + '/disks/data')
    os.system("tar -zxpf " + datatarball)
    os.remove(datatarball)
    # Continue normal configuration
    name = "joomla15"
    vif = ['type=ioemu, mac=00:16:3E:2B:1F:04, bridge=xenbr0']
    disk = ['file:' + basepath + '/disks/root/root.hdd,hda,w','file:' + basepath + '/disks/data/data.xen,hdb,w']
    root = "/dev/hda1 ro"
    extra = "4"

    Hi Ravi,
    the error is due to the componet JAVA(TM) 7 which is not supported.
    Better to run JAVA 6, I'm running the update 33, you can download it from http://www.oracle.com/technetwork/java/javase/downloads/jre6-downloads-1637595.html
    Remeber to remove JAVA &
    Go to control panel --> add remove programs and remove JAVA (TM) 7.
    It will solve the problem.
    Ciao,
    Massimo

  • Attribute out of range error with Dalsa Spyder camera

    I have a Dalsa Spyder camera SG-11 which seems to work fine in NI MAX. I've also had this camera working successfully in a LabView vi but now, for some reason, I am getting an error message "Attribute out of range  (-1074360302)". 
    I've tried using different gain values (since MAX sometimes gives an attribute out of range error relating to gain) but am not having much success.
    Has anyone else experienced this problem and found a work around?
    Lightworker 

    Hi LightWorker,
    I've not seen this probelm specifically with Dalsa Spyder SG-11 cameras but there are several KnowLedge Base Articles on the error for various differnt models of camera. It may be that one of these fixes will apply to your camera as well.
    How Do I Resolve "Error: 0xBFF69012 Attribute value is out of range” When Connecting to a GigE Camer...
    Why do I get Error 0xBFF69012 "Attribute Value is Out of Range" with my Basler GigE Camera?
    Stingray Camera & NI LabView / Vision Builder Error -1074360302 "Attribute is out of range"
    Please let us know if any of these solve your issue.
    Kind regards,
    James W
    Controls Systems Engineer
    STFC

  • CRAXDDRT PrintOutEx method throes 'value out of range' error

    Hi,
    I am using CRAXDDRT.dll for Crystal reports 10 to print a report to a file in afp format.
    The following is the scenario:
    We have to print out the Tax forms of all the accounts. These forms are printed through an AFP printer. We generate the AFP file and push it to the printer for printing. We create the files each containg10000 accounts. So, we create multiple afp files going in a loop in our code, breaking our files to contain 10000 accounts. For writing the report to a file we use the PrintOutEx method of CRAXDDRT.dll which also takes StartPage number and StopPage numbers as parameters. But when either of the parameters exceeds 32000(int) the method fails with a 'value out of range' error. Do we have any hot fix so that the PrintOutEx method accepts StartPageNum and StopPageNum values more than 32000.
    Public crReport As CRAXDDRT.ReportClass
    crReport.PrintOutEx(False, piCopiesToPrinter, True, 33000, 38000, sPortName)
    Thanks.

    CR 10 has been out of patch support since december of 07. See the following for more details:
    Business Objects Product Lifecycles [original link is broken]
    There is no equivalent API to PrintOutEx in the Crystal Reports SDK for .NET. Thus I understand why you need to use the RDC. However, my suggestion of changing your reference to craxDrt.dll as opposed to craxDDrt.dll still stands due to the two reasons I gave in my previous post (licensing and stability).
    I would also consider Don's suggestion re. the 32K limit:
    "Only work around I can think of is to limit the number of pages for your print jobs to 32K and then create multiple print jobs to select the same limit. Using Record Selection formula to set the limit, as for the actual page numbers being printed you will likely have to limit them also to 32k, the field may not be able to hold any page numbers higher than 32k."
    Finally, another suggestion worth investigating is to see if CR XI release 2 with the latest Service Pack has the same issue. CR XI r2 eval can be downloaded from here:
    http://www.businessobjects.com/products/reporting/crystalreports/eval.asp
    The latest Service Pack can be downloaded from here:
    https://smpdl.sap-ag.de/~sapidp/012002523100013876392008E/crxir2win_sp5.exe
    Ludek

  • Vector Array out of range error

    Hiya, I've run into a strange Vector out of range error when trying to splice a Vector array. The idea is to cut off the Vector array after a certain point....
    var vec:Vector.<int> = new Vector.<int>();
    vec.push(1);
    vec.push(2);
    vec.push(3);
    vec.push(4);
    vec.push(5);
    vec.splice(3,vec.length); // output RangeError: Error #1125: The index 5 is out of range 5.
    The strange thing is that it works perfectly, if I change the Vector to a regular array like:
    var vec:Vector.<int> = new Vector.<int>();    to    var vec:Array.<int> = new Array();
    Any ideas what am i doing wrong ?
    Thanks, Martin

    I don't know why it don't throw error in Array, but seccond parameter in splice method is deletecount, so you try to delete all elements start from 3 (from element 3 to element 8, but you don't have 8 elements).
    vec.splice(3,vec.length - 3);

  • ActiveWorkbook.Connections(Connection).OLEDBConnection - Subscript out of range error

    With ActiveWorkbook.Connections(Connection).OLEDBConnection  ' This statement is giving me a script out of range error                                      
                                                                        ' when used inside
    the function shown below.
    Sub getData(qArray() As String, Connection As String, ActSheet As String)
    'Updates the data from the Database. qArray is the SQL query in an array, connection defines which connection to use and ActSheet defines in which sheet to place the data
    Sheets(ActSheet).Select
        Range("A1").Select
            With ActiveWorkbook.Connections(Connection).OLEDBConnection
            .CommandText = qArray
            .BackgroundQuery = False ' Hvis true opdateres ikke før script er kørt færdig
            .CommandType = xlCmdSql
            .Connection = "OLEDB;Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=RDWEB;Data Source=dk0149sql.niladv.org;"
            .RefreshOnFileOpen = False
            .SavePassword = False
            .SourceConnectionFile = ""
            .SourceDataFile = ""
            .ServerCredentialsMethod = xlCredentialsMethodIntegrated
            .AlwaysUseConnectionFile = False
        End With
        ActiveWorkbook.Connections(Connection).Refresh
    End Sub
    I am getting a subscript out of range when I use the above statement inside the  getData function shown below.
    The data is getting into the qArray as seen the Locals Window after it errors
    How do I eliminate this error? 

    It seems that Connection has some bad value. Have you investigated what that may be?
    The code looks puzzling to me - it never seems to be running the query. Then again, this is a forum for SQL Server, and not for programming Excel. And it's probably in a forum of the latter type should have posted your question.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Blackberry - ref member out or range' error.

    Hi everyone,
    I'm porting my app to Blackberry and up until last week everything was working perfectly.
    In the last week I've probably made a few hundred changes and now my app won't run on the device, it gives a 'ref member out or range' error for a specific class.
    it seems there are a few others out there with the same error but there is no solution posted. It seems to compile fine and installs on the phone but when deleting the app it deletes much quicker than a working app.
    Anyone have this problem before?
    DAN

    It would be good to provide the stacktrace, it's the fastest way to identify at which line your program failed at. I believe calvino_ind has somehow answered you though.
    Just FYI, you don't have to do 'String str2 = new String("ay");'. The statement creates a new String instance every time it is executed. Number of instances can be created needlessly, if it happens to be in a loop, for instance.
    Instead, do this:
    String str2 = "ay";
    yc

  • Year out of range error running ODI APIs on WebLogic

    We are running ODI APIs on WebLogic to execute scenarios previously built using ODI Studio.
    Getting error: oracle.odi.runtime.agent.ExecutionException: Session Failed :3044 : 17268 :
    99999 : java.sql.BatchUpdateException: Year out of range.17268 : 99999 :
    java.sql.SQLException: Year out of range.
    java.sql.BatchUpdateException: Year out of range.
    The source table (fnd_profile_options) has dates such as '0001-01-01 AD' (in 'YYYY-MM-DD BC' format),
    which are valid dates in Oracle.
    The scenario executes successfully when run through ODI Studio, or via APIs on tomcat servers.
    Our current ODI version is Build ODI_11.1.1.3.0_GENERIC_100623.1635. Does anyone have any idea where to look?
    Thanks in advance.
    Joe

    Hi Joe,
    I suggest you to use a explict transformation on this date, I mean, to_date or to_char functions.
    I already saw some java issues with the regional settings that causes a distinct NLS_LANGUAGE SESSION on Oracle and then, because of that, some date works when launched from one application but not from other...
    Make any sense at your environment?
    Cezar Santos
    http://odiexperts.com

  • VGA monitor out of range error

    Hello all,
    I'm putting together a new computer with an oldish VGA only monitor. I used the latest installation disk. Installation went fine. I then did pacman -Syu of course. After that, whenever I boot my computer, it boots the kernel and shortly afterwards (before the login prompt) cause the monitor to go "out of range". I've tested the monitor with a Windows laptop and it seems fine. My question is: why did the VGA mode change during boot? How do I avoid that? If I can get a prompt and install X it'll be one step anyway. Thanks,

    lang2 wrote:
    I'm assuming you meant kernel log. I had to enable sshd and login remotely to get it:
    http://pastebin.com/QQwM99L3
    The problem:
    [ 4.544007] [drm] Initialized drm 1.1.0 20060810
    [ 4.674859] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 4.674863] i915 0000:00:02.0: setting latency timer to 64
    [ 4.706140] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
    [ 4.706142] [drm] MTRR allocation failed. Graphics performance may suffer.
    [ 4.706393] i915 0000:00:02.0: irq 41 for MSI/MSI-X
    [ 4.706396] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 4.706397] [drm] Driver supports precise vblank timestamp query.
    [ 4.736280] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 4.922865] checking generic (e0000000 fff0000) vs hw (e0000000 10000000)
    [ 4.922868] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 4.922883] Console: switching to colour dummy device 80x25
    [ 4.923077] fbcon: inteldrmfb (fb0) is primary device
    [ 5.083490] Console: switching to colour frame buffer device 240x67
    [ 5.195838] fb0: inteldrmfb frame buffer device
    [ 5.195839] drm: registered panic notifier
    [ 5.195954] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Maybe removing the vga part would help:
    [ 0.000000] Command line: root=/dev/sda3 ro vga=773
    but I'm basically guessing here.

  • Attention Out of Range error message

    In the middle of booting up, my G3 Mac screen goes black and this message appears: "Attention Out of Range H: 79.8 KHz V: 75.0 Hz". I've noticed the tenths number will sometimes vary, but the result is the same. Once the message appears, I cannot get into my computer. It still makes sounds like it is finishing the boot process, but the screen remains with that message.
    The only way to remove it is to reboot from CD and then restart. (The message also appears in the reboot process, but comes out of it once booting is complete). I don't change any settings, just booting from CD will fix it until the next time I shut down the computer. I have an Envision monitor which is set to millions of colors and a resolution of 1024 x 768, 85.00 Hz. My other resolution choices are:
    640 x480, 85 Hz
    800 x 600, 85 Hz
    1280 x 1024, 60 Hz
    The computer used to do this only occasionally, usually after one of my kids played an old CD game that would require the computer to change the screen resolution. If the power shut off while the game was active, then I'd get this message. But now it does it every time I boot (with or without the kid's games having been played).
    Please help me fix this problem, this is driving me nuts!

    Hi, No guru -
    The monitor setting left in PRAM governs the initial display setting used by the monitor until the settings in the Display Preferences file (and/or the Monitors Preferences file) become available during the booting process. The settings in those files are usually transferred to PRAM during the shutdown process, so that they are available at the next startup.
    Some things that may pertain or help -
    1) The settings in PRAM may be mangled. This can happen for no known reason (just one of those things), or can be caused by a too weak or dead internal battery (those batteries have an expected life of only about 4 or 5 years under best-case circumstances). Suggestions for this -
        • reset PRAM. This should return the monitor to an initial default setting of 800x600. Once the machine is fully booted, open the Monitors control panel and make sure the setting is the correct one. Then shut down (don't use Restart) and reboot a couple of times.
    Article #HT1379 - How to Reset PRAM and NVRAM
        • replace the internal battery if it is more than 4 years old, or if it is your practice to leave the machine unplugged regularly or for an extended period. You should be able to find a replacement at places like RadioShack for about US$17, cheaper on-line.
    2) Either the Display Preferences or Monitors Preferences file (or both of them) may be damaged or corrupt. The solution for this possibility is to throw away the suspect prefs file, then restart. A new one with default settings will be created automatically. Once restarted (it will probably boot using 800x600 as the resolution), open the Monitors control panel and redo your settings. Then shut down (don't use Restart) and reboot.
    3) Make sure that you have the separate Monitors control panel and Sound control panel, and not also a combined Monitors&Sound control panel.
    If your G3 is not an iMac (hence has a separate monitor) and the monitor is a CRT type, it may have its own internal PRAM where it retains some settings, even wrong ones. The way to reset that PRAM on many CRT monitors which have separate video and power cables - power everything down, disconnect the video cable from the Mac. Then turn the monitor on, wait 15 to 20 seconds, then turn it off; wait about 10 seconds, then repeat the cycle, 3 or 4 times. Then reconnect the video cable and boot back up.

  • Submit:Validating members::Subscript Out of Range  Error

    Hi,
       When I enter data in an Input Schedule and click "Send and Refresh Schedule" button, I receive an error message.
    Submitted Records : 4
    Accepted Records : 0
    Rejected Records : 0
    Submit:Validating members::Subscript out of Range Submit:Validating members::Subscript out of Range Submit:Validating members::Subscript out of Range Submit:Validating members::Subscript out of Range
    "Then the list of records not sent."
    No records are sent to the database.
    Why does this error occur?

    Hi Karthik, Just wondering if there are too many digits(i mean too many decimals in the numbers) in the sheet.
    regards
    shyam

Maybe you are looking for

  • Max amount of planes in the air simultaniously - giving arrival and departuetime

    hi! I use oracle 11g and I have a SQL Server table with a flight field (flightNo) and  two datetime fields (Departuredatetime, Arrivaldatetime). How is it possible to query the max amout of planes being in the air simultaniously in a certain timeperi

  • Is it possible to outline multiple files in one go?

    Hi all, I'm new to this platform, so forgive me if I haven't posted this question in the right place. I've gone through Google as well as the FAQ section and couldn't find an answer to the question above. Here are some details: I've got 75 files that

  • PowerShell script for AD name change

    I need to change all users logon name in AD to their first name.last name    Server 2003

  • REG: GL Account

    Hi Team, If Billing is to done in ERP System, then Customer should have GL Account. Anyone suggest me, For a customer where we will maintain GL Account in CRM System. With Regards, Venkatesh Panguluru

  • Verizon DSL & WRT54G

    Hi. I have been attempting to connect my Verizon DSL service up to a Linksys WRT54G Wireless Router for my mother. I can't figure out what I am doing wrong.  I have set up (and own) three of these wireless routers at my own apartment, and I've never