Strange ORA-12542 issue

Hi,
I'm facing a baffling ORA-12542 issue for batch processes run by our application.
OS Platform : Solaris 10 8/07 Sparc. Database runs in a Solaris sparse root zone
Database : Oracle 9.2.0.8
Listener : Uses default port of 1521
Background:
We have a daemon running on the database server that polls the database for jobs. This daemon queries a table with the database. If it finds a job it disconnects and spawns a new process based on the job definition. This process in turn calls a shell script that invokes SQL*Plus to generate a report.
Issue:
Periodically the daemon serves an ORA-12542. We've tried tracing the listener but no information comes up there.
In /var/tmp/.oracle we see only two socket files. So old socket files also do not seem to be causing a problem.
We've now increased the queue size for the listener. Also we've tried setting TCP_CONN_REQ_MAX_Q to 1024 on the Solaris server.
The only commonality between the daemon logs and listener logs we find is a step of service update. Could this be having any impact on a daemon which polls frequently? Below, the first line is from our daemon log and the lower lines are from the listener log.
tmd_TRN1[5683:1000]:17/07/2009 16:52:45 ORA-12542: TNS:address already in use
17-JUL-2009 16:52:44 * service_update * TRN1 * 0
17-JUL-2009 16:52:45 * service_update * DEV3 * 0
tmd_TRN1[5683:1000]:17/07/2009 11:32:38 ORA-12542: TNS:address already in use
17-JUL-2009 11:32:37 * service_update * AST3 * 0
17-JUL-2009 11:32:38 * service_update * AST1 * 0
17-JUL-2009 11:32:38 * service_update * DB115RPY * 0
17-JUL-2009 11:32:42 * service_update * AST2 * 0
17-JUL-2009 11:32:48 * (CONNECT_DATA=(SID=TRN1)(CID=(PROGRAM=tmd)(HOST=xxxxxx)(USER=tmbatch))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=50057))
* establish * TRN1 * 0
17-JUL-2009 11:33:01 * service_update * DEV1 * 0
17-JUL-2009 11:33:02 * service_update * DEV3 * 0
17-JUL-2009 11:33:07 * service_update * TRN1 * 0
17-JUL-2009 11:33:18 * service_update * TRN2 * 0
tmd_TRN1[8165:1000]:10/07/2009 15:15:52 ORA-12542: TNS:address already in use
10-JUL-2009 15:15:46 * service_update * TRN2 * 0
10-JUL-2009 15:15:52 * (CONNECT_DATA=(SID=TRN1)(CID=(PROGRAM=tmd)(HOST=xxxxxx)(USER=tmbatch))) * (ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=62888))
* establish * TRN1 * 0
10-JUL-2009 15:15:59 * service_update * AST2 * 0
10-JUL-2009 15:16:03 * service_update * DB115RPY * 0
10-JUL-2009 15:16:25 * service_update * TRN1 * 0
Any clues will be appreciated :-)
Cheers,
Aniruddha
Edited by: Aniruddha Khadkikar on Jul 20, 2009 11:29 AM
Edited by: Aniruddha Khadkikar on Jul 20, 2009 11:34 AM

Change this:
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(PORT = 1521)(QUEUESIZE = 20))
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
)As:
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
*(ADDRESS = (PROTOCOL = TCP)(PORT = 1521)( HOST = ipaddress of any one NIC )(QUEUESIZE = 20))*
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
Restart the listener and try again. For more see DOC ID 114323.1 on metalink.
Reason may be the entries in /etc/hosts which have two entries one for loopback address and other for NIC's assigned address.
Regards
Edited by: orant575 on Jul 20, 2009 11:52 AM

Similar Messages

  • Strange ORA-00947

    Hello all,
    I have a query in a stored procedure as follows:
    select min(ref.REFERENCE_V_INNER_CODE) INNER_CODE, item.COMPONENT_V_ID bulk collect into highest_quality_table
    from T_ITEM item, T_REFERENCE ref
    where (item.ITEM_V_CODE, item.COMPONENT_V_ID) in
    ( select ... )
    and item.ITEM_V_QUALITY_LEVEL=ref.REFERENCE_V_CODE_NAME
    group by item.COMPONENT_V_ID
    It's compiling successfully if I use a locally defined type for highest_quality_table:
    TYPE highest_quality_row_type IS RECORD ( INNER_CODE T_REFERENCE.REFERENCE_V_INNER_CODE%TYPE, COMPONENT_V_ID T_COMPONENT.COMPONENT_V_ID%TYPE );
    TYPE highest_quality_table_type IS TABLE OF highest_quality_row_type;
    highest_quality_table highest_quality_table_type;
    But then I tried to define such type on the level of schema:
    create or replace type highest_quality_row_type as object ( INNER_CODE NVARCHAR2(20), COMPONENT_V_ID NVARCHAR2(8) )
    create or replace type highest_quality_table_type as table of highest_quality_row_type
    After that the query fails to compile with the strange ORA-00947 (not enough values).
    Any idea why could it happen ?
    Edited by: 850271 on 06-Apr-2011 06:55

    Because RECORD != OBJECT. If you bulk collect into table of objects your SQL must select object of that type. Change select to:
    select  highest_quality_row_type(min(ref.REFERENCE_V_INNER_CODE),item.COMPONENT_V_ID)
      bulk collect
      into highest_quality_table
      from  T_ITEM item,
            T_REFERENCE ref
      where (item.ITEM_V_CODE,item.COMPONENT_V_ID) in ( select ... )
        and item.ITEM_V_QUALITY_LEVEL=ref.REFERENCE_V_CODE_NAME
        group by item.COMPONENT_V_ID
    /SY.

  • Strange ORA-01044 error

    Hi Guys,
    I'm getting a very strange ORA-01044 error:
    Oracle.DataAccess.Client.OracleException ORA-01044: size 87160000 of buffer bound to variable exceeds maximum 288212783965667328    at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx pOpoSqlValCtx, Object src, String procedure)*
    at Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, String procedure, IntPtr opsErrCtx, OpoSqlValCtx pOpoSqlValCtx, Object src)*
    at Oracle.DataAccess.Client.OracleCommand.ExecuteNonQuery()
    As you can see, the buffer size does not exceed the maximum stated, yet it is still causing an exception.
    Some background.. A new parameter has been added to a stored proc that was originally working fine, this new parameter is an associative array of numbers.
    On the ODP.Net side, I create a parameter that has a collection type of "*PLSQLAssociativeArray*" and Oracle DB Type of "*Int32*".
    Any ideas as to what might be causing this problem?

    Hi,
    What db version?
    There is an older bug where this error would be raised if the requested buffer size exceeded the granule size of the SGA. That was from the 9.2 timeframe as I recall.
    Regards,
    Mark

  • ORA-12542: Famous Error

    Hi,
    I'm using Oracle 10.1.0.1 with ODP.Net
    there's a c# web service that calls the database functions.
    for the fist few connections , its working fine, then it suddenly gives the error -
    ORA-12542: TNS:address already in use
    i tried with restarting the service and also restarting the server. but no use
    even when we check connection using the net manager it works for the first few times and then the same error comes. please help me identify and fix the error.
    its very urgent
    thanks
    shruti

    Cause
    Problem is caused due to the fact that the free ports in the windows client has been exhausted and it is trying to make use of a port which is in TIME_WAIT state which gives the error TNS-12542: Address already in use.
    There are 2 solutions available:
    +1.) Increase the free port range:+
    +======================+
    Start Registry Editor (Regedt32.exe).
    Locate the following key in the registry:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
    On the Edit menu, click Add Value, and then add the following registry value:
    Value Name: MaxUserPort Data Type: REG_DWORD Value: 65534
    Valid Range: 5000-65534 (decimal) Default: 0x1388 (5000 decimal)
    Description: This parameter controls the maximum port number used when an application requests any
    available user port from the system. Normally, ephemeral (that is, short-lived) ports are allocated between the values of 1024 and 5000 inclusive.
    +2.) Decrease the value for TIME_WAIT state:+
    +================================+
    TcpTimedWaitDelay (new in Windows NT versions 3.51 SP5 and later)
    Key: Tcpip\Parameters
    Value Type: REG_DWORD - Time in seconds
    Valid Range: 30-300 (decimal)
    Default: 0xF0 (240 decimal)
    Re: How serious is ORA-12542
    And also check this metalink doc id for the same.
    Note:252614.1
    HTH
    Aman....

  • Need help on ORA-12542: TNS:address already in use

    Hi Toady morning , i faced this error. my database and listener is already up and running but application user posted this error to me. i do not see any error logs in oracle. could anybody pls help me as soon as possible. for workaround i have restarted the database. As it is in production needed urgent help. Below is the error;
    Thu Aug 30 08:37:47 2012 733000 [DM_SESSION_E_CANT_MAKE_TEMP_CONNECTION]error: "Could not establish an internal, temporary database connection (database_name = , docbase_owner = I102, connection_string = ECM53); database system error was: ORA-12542: TNS:address already in use
    Current Session ID: 0100213a8155ce3e
    Last SQL statement executed by DB was:
    No Session Record.TID(10176) failure during processing of request: NewSessionByAddr_string.
    Thanks in advance

    890482 wrote:
    Hi Toady morning , i faced this error. my database and listener is already up and running but application user posted this error to me. i do not see any error logs in oracle. could anybody pls help me as soon as possible. for workaround i have restarted the database. As it is in production needed urgent help. Below is the error;
    Thu Aug 30 08:37:47 2012 733000 [DM_SESSION_E_CANT_MAKE_TEMP_CONNECTION]error: "Could not establish an internal, temporary database connection (database_name = , docbase_owner = I102, connection_string = ECM53); database system error was: ORA-12542: TNS:address already in use
    Current Session ID: 0100213a8155ce3e
    Last SQL statement executed by DB was:
    No Session Record.TID(10176) failure during processing of request: NewSessionByAddr_string.
    Thanks in advancebcm@bcm-laptop:~$ oerr ora 12542
    12542, 00000, "TNS:address already in use"
    // *Cause: Specified listener address is already being used.
    // *Action: Start your listener with a unique address.
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • Not able to resolve ORA-12154 issue

    Hi,
    have installed a Oracle 11g on a 64-bit Windows 2008R2 server. Installation based on logs was success full, however I do have some issues with getting TNS to work. I am able to TNSPING the server and it returns expected result, but when i try to connect via SQLPLUS (sqlpuls ora/ @srv1) it results in "ORA-12154: TNS:could not resolve the connect identifier specified".
    We are in contact with the sid by bypassing TNSNAMES.ORA , but that does not resolve my issue since i need this to work.
    I have attempted some suggested changes to tnsnames.ora, sqlnet.ora and listner.ora with out success sofar.
    Hope some one has some suggestions on how to overcome this issue
    tnsnames.ora
    SRV1=
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test1.example.com)(PORT = 1521))
    (CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_MAME = srv1)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    sqlnet.ora
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    listner.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oracle\product\11.2.0\dbhome_1)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\oracle\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
              (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
              (ADDRESS = (PROTOCOL = TCP)(HOST = test1.example.com)(PORT = 1521))
    ADR_BASE_LISTENER = C:\oracle

    Posting the requested data. If the result from lsnrctl services/status seem a bit strange, please assist me in change settings so that output is english:-)
    LISTNER.ORA
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
              (GLOBAL_BDNAME=srv1)
    (SID_NAME = srv1)
    (ORACLE_HOME = C:\oracle\product\11.2.0\dbhome_1)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = test1.example.com)(PORT = 1521))
    ADR_BASE_LISTENER = C:\oracle
    TNSNAMES.ORA
    srv1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST =148.53.60.44)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = srv1)
    C:\Users\CJuell>lsnrctl services
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 29-MAR-2011 13:22
    :44
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Kobler til (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=test1.example.com)(
    PORT=1521)))
    Tjenesteoversikt...
    Tjenesten srv1 har 1 forekomst(er).
    Forekomsten srv1, statusen UNKNOWN, har 1 behandler(e) for denne tjenesten.
    Behandler(e):
    DEDICATED etablert:0 avslÕtt:0
    LOCAL SERVER
    Tjenesten srv1.ingrnet.com har 1 forekomst(er).
    Forekomsten srv1, statusen READY, har 1 behandler(e) for denne tjenesten...
    Behandler(e):
    DEDICATED etablert:5 avslÕtt:0 tilstand:ready
    LOCAL SERVER
    Tjenesten srv1XDB.ingrnet.com har 1 forekomst(er).
    Forekomsten srv1, statusen READY, har 1 behandler(e) for denne tjenesten...
    Behandler(e):
    D000 etablert:0 avslÕtt:0 gjeldende:0 maks:1022 tilstand:ready
    DISPATCHER <machine: OSL-PPMV-VM31, pid: 2864>
    (ADDRESS=(PROTOCOL=tcp)(HOST=test1.example.com)(PORT=61088))
    Kommandoen ble utf°rt
    C:\Users\CJuell>lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 29-MAR-2011 13:23
    :00
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Kobler til (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=test1.example.com)(
    PORT=1521)))
    STATUS FOR LYTTERPROSESS
    Alias LISTENER
    Versjon TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Startdato 29-MAR-2011 11:44:12
    Oppetid 0 dager 1 t. 38 min. 48 sek
    SporingsnivÕ off
    Sikkerhet ON: Local OS Authentication
    SNMP OFF
    Lytterens parameterfil C:\oracle\product\11.2.0\dbhome_1\network\admin\listen
    er.ora
    Lytterens loggfil c:\oracle\diag\tnslsnr\osl-ppmv-vm31\listener\alert\lo
    g.xml
    Sammendrag for lyttende nettverksknutepunkt...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=test1.example.com)(PORT=1521
    Tjenesteoversikt...
    Tjenesten srv1 har 1 forekomst(er).
    Forekomsten srv1, statusen UNKNOWN, har 1 behandler(e) for denne tjenesten.
    Tjenesten srv1.ingrnet.com har 1 forekomst(er).
    Forekomsten srv1, statusen READY, har 1 behandler(e) for denne tjenesten...
    Tjenesten srv1XDB.ingrnet.com har 1 forekomst(er).
    Forekomsten srv1, statusen READY, har 1 behandler(e) for denne tjenesten...
    Kommandoen ble utf°rt
    C:\Users\CJuell>lsnrctl services

  • Strange ORA-00161 exception in Vista

    Hi
    Some of our customers wants to upgrade to Win Vista. I'm investigating if our application will run as expected on Vista. I got into unexpected trouble with the Oracle components. We're using version 2.102.2.20 which I understand has officially Vista support. Although, I get a ORA-00161 exception when TransactionScope is used in the code. I've looked closely at our DTC configuration but can't find anything strange. I can't find another way around it unfortunately. Have anyone else seen this problem? How do I solve it?
    Regards
    Carl

    I suspect all (or most) of you are running into the same issue.
    Windows Vista and Windows Server 2008 introduce new MSDTC changes that do not interoperate with older versions of Oracle Services for MTS. Oracle Services for MTS 10.2.0.4 and higher, with the exception of 11.1.0.6, support these new changes on Windows Vista Service Pack 1 and Windows Server 2008 or higher.

  • InDesign 5.5: Strange Printing Transparency Issues

    Hi guys, long time reader, first time poster. This forum has helped with a lot of problems, so thanks, and hopefully you can help with this one.
    I'm working on a multiple-spread page for a client that is giving me some strange issues when it's printed. The document has an image as a background for the entire page, and then a black box over the image with some text on top of it. For some reason, the black box with text is letting the image underneath show through, almost as if the box is 99% transparent or something. I've checked each box individually, and there's nothing in the transparency/attributes boxes. I'm not sure how, exactly, to solve this issue -- is there some sort of universal transparent image setting (for instance, set black to 99% opacity always or something similar)?. It's the only thing I can think of.
    InDesign CS5.5, OSX Lion. The files are a combination of TIFF and JPG images, and I get the same issue no matter what image format is underneath.
    Any feedback is welcome here.

    No problem, Peter. I've included a few shots from various pages (the problem stems to all black boxes placed over images over the 64 page document) on the links below.
    http://img40.imageshack.us/img40/5964/88392023.jpg
    http://img94.imageshack.us/img94/9741/93991019.jpg
    http://img20.imageshack.us/img20/7883/10837728.jpg
    The third one is the page that I took the picture of the printout with my phone.
    I've tried this on an offset press and a digital press; with 'knockout group' ticked and not. For the life of me, I can't understand why the black is still overprinting on the image when it shouldn't be.

  • Strange audi sync problem & different, stranger video sync issu in sequence

    I have two strange occurances with one particular set of media that was downloaded from the same original source mini-dv (recording in dvcam) tape. I have not found the same issue on any other footage.
    1) when the media is imported into FCP, the audio is out of sync. it is slightly out at the beginning and then gets progressively worse.
    2) when this footage is used in a sequence, the video that show in the sequence is not the same as the video that is exported when this sequence is exported as QT movie (or any other export option) Like the audio the video out of sync gets progressively worse.
    - The original media is perfectly in sync looking at the digitized source ie: in Quicktime. There is no audio out of sync problem.
    - the only difference I could see in the file was that this media is 3.5mb data rate whereas all the others are 3.6mb.
    - other tapes from the same camera do not have a problem
    - I do all my downloading from a firewire deck and not from the camera
    - I upgraded from 6.0.1 to 6.0.4 (as did the QT 7.5 upgrade also) to see if that fixed the problem but to no avail.
    Very perplexing. I managed to work around this problem in a sequence whos deadline was looming by manually slipping the footage in the sequence the required number of frames. This is where it also gets odd. I was able to do this by
    - double click the clip in the sequence which then loaded that into the viewer.
    - position the playhead at the beginning of the clip
    - from the canvas select the go to position in master clip option which then loaded the masterclip into the viewer. the position in the masterclip was always the correct frame (ie the frame I expected to see as per my edit). The frame showing in the canvas was also the correct frame (but this would not be the case when exported)
    - the next thing i did was to use the slip tool, as soon as i held the slip tool over the sequence clip, the frame in the canvas would be the wrong frame (the frame i would see when I exported).
    - then i would just carefully slip the sequence clip back to the matching correct frame. So watching in the viewer, I would align the frame that showed in the viewer to the frame in the canvas.
    When done the frame showing in my sequence would be a completely different frame but when exported, the frame that I expected to see would be the exported frame.
    I could find no logic to the amount I needed to slip each time (I am sure there is logic but I couldnt figure out what that was). the clip at the end of the footage needed to be slipped -10:09, and this got progressively smaller to the clip at the beginning of footage needing to be slipped -:16
    Hopefully that wasnt too confusing.

    btw, i have tried recapturing the footage and i have offlined it, copied it to another location and onlined it in the new location to no avail. still have the sync and video in sequence issues.

  • Cannot solve the ora-4030 issue in oracle11g (AIX 6.1) platform !!

    Dear Friends ,
    We are using Oracle 11g (11.2.0.1.0) in AIX 6.1 server . The oracle database has configured newly in AIX 6.1 last 7 days ago . Now we want to import our data from another 11g (R2) database . When we are going to import the data , then we face the below error after 15/20 min . the dump size near about 1 gb.
    while importing the dmp file shows the error as follows:
    $ impdp t24test/password DUMPFILE=isb_dir:R09.MB.dmp LOGFILE=isb_dir:t24test.mb.
    imp.log REMAP_SCHEMA=t24:t24test REMAP_TABLESPACE='T24DISTDATA':'T24DATAXML'
    REMAP_TABLESPACE='T24DISTINDEX':'T24INDEXXML'
    Import: Release 11.2.0.1.0 - Production on Sun Jul 18 15:34:12 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 -64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options Master >able "T24TEST"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "T24TEST"."SYS_IMPORT_FULL_01": t24test/********
    DUMPFILE=isb_dir:R09.MB.dmp LOGFILE=isb_dir:t24test.mb.imp.log REMAP_SCHEMA=t24:t24test
    REMAP_TABLESPACE=T24DISTDATA:T24DATAXML REMAP_TABLESPACE=T24DISTINDEX:T24INDEXXML
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    ORA-39014: One or more workers have prematurely exited.
    ORA-39029: worker 1 with process name "DW00" prematurely terminated
    ORA-31671: Worker process DW00 had an unhandled exception.
    ORA-04030: out of process memory when trying to allocate 65584 bytes
    (session heap,kuxLpxAlloc)
    ORA-06512: at "SYS.KUPW$WORKER", line 1714
    ORA-06512: at line 2We have to search the metalink note (ORA-4030) and according to that metalink note we have to check
    - Oracle user's ulimit (make all parameter unlimited , but problem is not solved)
    - SGA and PGA size (here sga is 32 GB , pga 7gb)
    - OS cpu and memoru usage are not so high @ that moment
    tuning the above three things , I cannot solve the issue ... would anybody plz help me .....to resolve the issue. is it a bug of thie Oracle version ?
    plz help ... ...
    Edited by: shipon_97 on Jul 20, 2010 1:04 PM

    I have exactly same issue on Linux platform. My db version is also 11.2.0.1. Can you let me know how do i check the soft and hard limits. I checked ulimit and it shows as below:
    address space limit (kbytes) (-M) unlimited
    core file size (blocks) (-c) 0
    cpu time (seconds) (-t) unlimited
    data size (kbytes) (-d) unlimited
    file size (blocks) (-f) unlimited
    locks (-L) unlimited
    locked address space (kbytes) (-l) 32
    nice (-e) 0
    nofile (-n) 65536
    nproc (-u) 16384
    pipe buffer size (bytes) (-p) 4096
    resident set size (kbytes) (-m) unlimited
    rtprio (-r) 0
    socket buffer size (bytes) (-b) 4096
    stack size (kbytes) (-s) 10240
    threads (-T) not supported
    process size (kbytes) (-v) unlimited
    Please suggest,

  • Strange Wi-Fi issue in Mountain Lion

    Hello Mountain Lion Gurus/Users/All,
    Just yesterday I upgraded my 2009-mid-MacBook Pro to Mountain Lion (from Lion)
    I have this strange issue.
    I turn on my Wi-F
    Selected my home network from the list of all the networks Mac could find. (Actually this is the network I regularly use on all my devices.)
    It gets connected to my home network over Wi-Fi for 6 to 7 seconds. (I am able to browse pages, as a test, in these 6 to 7 seconds).
    Suddenly message pops up saying "Connection Timeout. Could not connect to network."   Where as, I am able to browse over the same network from other devices like my iPod Touch, Android :@ Device etc.
    Please help me.
    Chandra

    Chandra,
    Some people have found that setting a network location prevents this kind of problem.
    In System Preferences, choose Network.  Then Edit Location, the + sign and use any name for the location.  Then select the location in the Network preferences pane.  If you haven't already, joint the wifi network.
    You should also check that you haven't inadvertently messed up your settings in the advanced portion of the preferences.  While you're in there, click the button to renew your DHCP lease (in the TCP/IP tab).
    Jim

  • Strange CPU Performance issue Mac Pro, Logic 7.2.3......

    Hi there,
    I am experiencing a strange issue with Logic 7.2.3 and my Mac Pro.
    I am running about 70 tracks in a tune I'm writing, with a lot of the EQ and dynamics processed on a Liquid Mix, but am experiencing a lot of CPU spikes, and drop outs in logic.
    The System Performance meters are showing that one of the CPU cores is at full capacity, whilst the Activity Monitor is showing a total usage of about 40%.
    http://www.ephexis.co.uk/images/cpu-grab.jpg
    I have tried every combination of settings in the audio preferences, but cannot seems to get this track to play properly.
    With 71 tracks, this machine is currently LESS powerful than the G5 that I have been working on until purchasing the Mac Pro.
    I there anything else I can try? Are there any other means of controlling buffer size?
    I have a suspicion that this may have something to do with the Plugin Delay Compensation set to 'All' - But without doing this, I cannot use the DSP effects of the liquid mix to work on a Bus! Very frustrating.
    Many thanks for the help, any ideas at would be deeply appreciated,
    Adam Ephexis
    Mac Pro 2.66, 2GB, 1.5TB -=- MacBook Pro 2.16, 1GB, 100GB   Mac OS X (10.4.8)   Liquid Mix, Fireface 800, Apogee MiniDAC, Creamware A16 Ultra

    Great!
    Thanks for the tips guys.
    I have tried to find an offending loop or part in the sequence, but cannot find anything at all thats causing the issue.
    My suspiscion is that using the focusrite Liquid mix on a part, that is in turn going into a delay compensated bus, which has another Liquid mix plugin on it, is causing the issues. I use the total mix software in the fireface to perform the summing of the busses, which I think in turn may be causing the PDC to glitch a bit more.
    Which is a bit annoying, as the mix in this tune is my best yet!
    So I will attempt to remove the liquid mixes that are running in series in a chain, and see if thats the problem, but if that fails, time to re-format again!
    I'll let you know how I get on in the next couple of days!
    Thanks again,
    Adam
    Mac Pro 2.66, 2GB, 1.5TB -=- MacBook Pro 2.16, 1GB, 100GB   Mac OS X (10.4.8)   Logic 7.2.3 - Fireface 800, Focusrite Liquid Mix, Apogee MiniDAC, Creamware A16 Ultra

  • Strange power-on (issue?) with K8N Neo4 Platinum

    Hi all, i have a new K8N Neo4 Platinum, non-sli.
    My rig:
    A643000+ winch, no overclock
    2x512MB Corsair XMS DDR400MHz
    2x200GB Seagate mirroring
    Plextor PX-708A
    BenQ DVD Burner
    AN OLD Matrox Mystique 4MB PCI  (new pci-e gfx card later...)
    A powerfull enermax coolergiant 600W ATX 2.0 power supply
    Latest official nforce4 drivers and bios
    It seems to be ok: installed winXP pro sp2 and updates, installed two Seagate in raid-mirroring with the nforce4 controller, installed some progs and utils, firewall is ok, prime95 go without problems for 1 our (more tests later), cpu temp is 34°C and sys temp is 30°C.
    CoreCenter Say:
    Vcore -> 1.41V
    3.3V -> 3.39V
    +5V -> 5.13V
    +12V -> 12.26V
    memory volt -> 2.60V
    FSB -> 200MHz
    PCI-E -> 100MHz
    cpu volt -> By-VID
    Apparently no weird things...
    When i switch-on the Pc, for some seconds(  ̃10 secs) it don't want to boot, optical drives blink repeatly and the screen is blank, like a bad overclock... But the machine isn't overclocked, and the bios is ok, i think. After 10 secs, finally it go and run flawlessly, post and other things are ok. When i reboot in win, the 10secs-issue repeat itself. So this strange thing at the post is normal? Anyone with the same "problem"? For now the rig is ok when it logon in winXP...

    Hi all my friends 
    @JER101 >>> Ehrr i mean post, sorry 
    I had unplugged the optical drives, but the problem persist. When plugged, they blink for some times and after blinking the machine go into post-phase and after it boot in the correct manner. I think the PCI card is the problem, like some of you said... I will buy one pci-e card (obviously), but i hope things are not dangerous for now 
    In the mean time, i have a new problem: emule+firewall=BSOD. I know, there are tons of post about this issue around, but the solution is unclear... Tried to disable DEP, patched WinXP SP2 with latest things from winupdate, but nothing work for me, emule and the firewall generate a crash&reboot. Tried with the Marvell LAN, too, without success.
    Any suggestions? Usefull links? If i uninstall the "NVIDIA Forceware Network Access Manager" it will work without problem with a thirdy part firewall, like sysgate?
    P.S.
    What's the problem with nvidia drivers? C'mon nvidia, solve this damned issue! 

  • Strange ORA-10614

    Hi expert,
    For me, it's really..really weird.
    I created LOB segment (securefiles), inserted some data and check its space using DBMS_SPACE. But somehow it throws ORA-10614.
    Oracle : 11.2.0.2
    OS : RHEL 5
    VARIABLE  UNFORMATTED_BLK         NUMBER;
    VARIABLE  UNFORMATTED_BYT         NUMBER;
    VARIABLE  FS1_BLK                 NUMBER;
    VARIABLE  FS1_BYT                 NUMBER;
    VARIABLE  FS2_BLK                 NUMBER;
    VARIABLE  FS2_BYT                 NUMBER;
    VARIABLE  FS3_BLK                 NUMBER;
    VARIABLE  FS3_BYT                 NUMBER;
    VARIABLE  FS4_BLK                 NUMBER;
    VARIABLE  FS4_BYT                 NUMBER;
    VARIABLE  FULL_BLK                NUMBER;
    VARIABLE  FULL_BYT                NUMBER;
    BEGIN
            DBMS_SPACE.SPACE_USAGE(
                    SEGMENT_OWNER   => 'SF_DEMO',
                    SEGMENT_NAME    => 'ASU',
                    SEGMENT_TYPE    => 'LOB',
                    UNFORMATTED_BLOCKS => :UNFORMATTED_BLK,
                    UNFORMATTED_BYTES => :UNFORMATTED_BYT,
                    FS1_BLOCKS      => :FS1_BLK,
                    FS1_BYTES       => :FS1_BYT,
                    FS2_BLOCKS      => :FS2_BLK,
                    FS2_BYTES       => :FS2_BYT,
                    FS3_BLOCKS      => :FS3_BLK,
                    FS3_BYTES       => :FS3_BYT,
                    FS4_BLOCKS      => :FS4_BLK,
                    FS4_BYTES       => :FS4_BYT,
                    FULL_BLOCKS     => :FULL_BLK,
                    FULL_BYTES      => :FULL_BYT
    END;
    BEGIN
    ERROR at line 1:
    ORA-10614: Operation not allowed on this segment
    ORA-06512: at "SYS.DBMS_SPACE", line 190
    ORA-06512: at line 2I know that DBMS_SPACE is used only on segments in tablespaces with AUTO SEGMENT SPACE. And this is a prove that all things have been stored in ASSM tablespace.
    SQL> SELECT
      2  A.SEGMENT_NAME,A.SEGMENT_TYPE,
      3  A.SEGMENT_SUBTYPE,A.TABLESPACE_NAME,B.SEGMENT_SPACE_MANAGEMENT
      4  FROM DBA_SEGMENTS A JOIN DBA_TABLESPACES B
      5  ON A.TABLESPACE_NAME=B.TABLESPACE_NAME
      6  WHERE A.OWNER='SF_DEMO';
    SEGMENT_NAME              SEGMENT_TYPE       SEGMENT_SU TABLESPACE_NAME SEGMEN
    RESUME_SF                 TABLE              ASSM       SECF_TBS1       AUTO
    SYS_IL0000018044C00002$$  LOBINDEX           ASSM       SECF_TBS1       AUTO
    ASU                       LOBSEGMENT         SECUREFILE SECF_TBS1       AUTOAny help appreciated.
    Regards,
    Yusata.

    10614, 00000, "Operation not allowed on this segment"
    // *Cause: This procedure can be used only on segments in
    //         tablespaces with AUTO SEGMENT SPACE MANAGEMENT
    // *Action:  Recheck the segment name and type and re-issue the statement

  • Strange ORA-01438: value larger than specified precision...error

    When i issue a query like
    SELECT * FROM shp_dtls WHERE shp_locn='AL';
    i get the error
    ORA-01438: value larger than specified precision allowed for this columnWhy do i get an error like this for a SELECT query. Isn't this an INSERT related error?

    Normally this error happens on INSERT or UPDATE statement. There are 2 possibilities I think for it to happen on SELECT:
    1) your FGA policy defined on select for this table that inserts data into wrong column (you should also be getting the violating procedure name in your error message);
    2) wrong data has been inserted into table using OCI (in which case Oracle does not verify data correctness) or corrupted export file was impored.

Maybe you are looking for