Error: Can anyone explain

You must install a Solaris patch to run the native threads version of the
Java runtime. The green threads version will work without this patch.
Please check the native threads release notes for more information.
If you are embedding the VM in a native application, please make sure that
the native application is linked with libthread.so (-lthread).
Hi
I got the above Error when i tried to do JNI in Solaris.
but i was not ableto find libthread.so
can anyone explain this error
thanks
kabilesh

Cross posted...
http://forum.java.sun.com/thread.jspa?threadID=577358&messageID=2896101#2896101

Similar Messages

  • My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    I have worked my way through the assistant and nothing works. I have tried connecting in disc mode but although the screen on the ipod is showing that the device is charged and that it is in disc mode as soon as I connect it to the computer it comes up with the error message 'please wait very low battery' and stays like that until I disconnect when it appears to be OK again. I have tried on both pc and mac.
    BTW the ipod is an ipod video not classic if that makes any difference.
    Thanks

  • I keep getting an error message when downloading a new app which states " Zinio and 5 other apps cannot be purchased at this time" and then it let's me purchase the app that I was looking at? Can anyone explain that?

    I keep getting an error message when downloading a new app which states " Zinio and 5 other apps cannot be purchased at this time" and then it let's me purchase the app that I was looking at? Can anyone explain that?

    apple_master New Delhi, India
    This solved my questionRe: Unable to Purchase 
    Apr 16, 2012 10:22 PM (in response to eight4seven)
    This worked for someone
    I had this problem for about six weeks. I was following this forum but was too unsure of what might happen to try the fixes that were suggested.
    About two weeks ago I decided to delete the downloads.28.sqlitedb file (usingDiskAid(a free program), on a PC running Windows 7). The original downloads.28.sqlitedb was 936 KB. The new one that the system created is 80 Kb., and has stayed at about that size. After about four days I also deleted all the other contents of the Download folder. Ten days later and still no more problems. Downloads are much quicker, nothing greys-out (as was happening frequently before).
    Everything has worked well since with no more error messages.
    I am using an iPod 4G, iOS 5.1 (originally iOS 5.0). I do not have a manifest file, and as far as I know, have not had one. DiskAid can search the whole "hard drive" on the iPod.
    Deleting downloads.28.sqlitedb and the contents of Downloads worked for me.

  • When trying to sync my iphone in itunes i keep getting the error message "itunes cannot sync apps because the apps installed on the iphone could not be determined." can anyone explain what this means?

    when trying to sync my iphone in itunes i keep getting the error message "itunes cannot sync apps because the apps installed on the iphone could not be determined." can anyone explain what this means?

    I received the same error message after I had recently updated iTunes to 10.5.1 and I had wirelessly updated 13 apps.  I had to go into iTunes and select Apps, on the bottom right it said I needed to update 13 apps.  I updated the apps via iTunes and then synced again without an issue.
    iPhone 4S / OSX 10.6.8 / iTunes 10.5.1

  • Can anyone explain this: Numeric or Value Error Line 1

    I have a stored procedure that starts out like so:
    PROCEDURE test_proc(param1 IN VARCHAR2, param2 IN VARCHAR2, param3 OUT
    SYS_REFCURSOR) IS
    v_var varchar2(5);
    BEGIN
    SELECT * FROM. . .
    The procedure tested fine in PL/SQL Developer. When calling from
    ODP.NET like so. . .
    OracleCommand cmd = new OracleCommand("test_proc", <connection>);
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.Parameters.Add("param1", "somevalue");
    cmd.Parameters.Add("param2", "XX");
    cmd.Parameters.Add("param3", OracleDbType.RefCursor,
    ParameterDirection.Output);
    DataSet ds = new DataSet();
    OracleDataAdapter da = new OracleDataAdapter(cmd);
    con.Open();
    da.fill(ds);
    con.Close();
    . . .the procedure executed as expected. If I changed the value of
    param2 to "XXX" or any value three chars long I got the "ORA-06502:
    Numeric or Value Error at Line 1" error.
    After beating my head against the wall for hours, I tried changing the
    size of v_var to 50, and the error disappeared. Mind you, the error
    was being thrown long before v_var was being set further down in the
    proc. Even more interesting is that the possible values of v_var were
    all less than 5 chars wide. Most interesting: the value of p_param2 had nothing whatever to do with v_var.
    Can anyone explain this?

    Hi,
    Is your database 9206 by chance? Re: Error ORA-06502 PL/SQL
    Cheers,
    Greg

  • Can anyone explain error: can not access a member .. with modifiers ""

    Can anyone explain why this would occur:
    javax.faces.FacesException: Can't instantiate class: 'com.package.MyBean'.. class com.package.MyBean : java.lang.IllegalAccessException: Class java.beans.Beans can not access a member of class com.package.MyBean with modifiers ""

    also if the class is not defined as public
    myClass()
    public myClass()
    i got this when building my custom class loader and it took me sometime to figure this out since my editor generates my class templates I didn't even think to check something as basic as not having a public class - hopefully this saves someone else some trouble

  • Can anyone explain this? ORA-01722

    Hi all,
    Can anyone understand this?
    I have 3 database servers both running on windows 2000 advanced server, they're used by the development team. Also we have our production database.
    The 3 databases are cloned from the production, so database configuration parameters are all equal. Today I've received a query from the development team to run on the production, the query is just simple like this:
    SELECT *
    FROM x
    WHERE x.field_v = 177762522
    I get this error
    ORA-01722: invalid number
    this is a hudge table, and the fiedl_v is a varchar2(9) type.
    The worst thing is that on the others 3 databases this query returns results, except on the production.
    So, can anyone explain me why does the implicit (char to number) conversion occours on the development databases , and fails on the production? What are the main reasons that can influence datatype conversion like this one?
    Both databases have the 9.0.6 patch.
    The 3 development BD's are totally cloned from the production.
    Thanks.

    William:
    There is no guarantee on the order of evaluation of the predicates. Even with your isnum function, the invalid number could arise. The only safe way is to compare strings to strings as in your first example.
    To make the isnum "safe", you would need something more like:
    SELECT *
    FROM (SELECT *
          FROM x
          WHERE isnum(x.field_v) = 'Y' and
                ROWNUM > 0)
    WHERE x.field_v = 177762522;The ROWNUM > 0 predicate in the in-line view will prevent predicate pushing and guarantee that the isnum condition is evaluated first.
    John

  • Ting to my itunes store can anyone explain the issue?

    I have a problem connecting to my itunes store but my internet connection works just fine. can anyone explain this issue ?

    Thank you for using the Apple Support Communities
    From what I understand is that the device will show up in iTunes but it will not allow you to synchronize media over to the device even after you reset the device. When you say you reset the device, do you mean you restored the device in iTunes? What error message you are getting when attempting to synchronize media?

  • Can anyone explain how the LO data source flows from ECC to BI up to cubes?

    Dear all,
    Can anyone explain step by step (HOW THE DATA FLOWS)....By taking 2LIS_11_VAHDR  from SD , starting from Activate Data source in ECC  to Info Cube in BI7.0. Please this will be helpful -
    Thanks for the advance answers...
    Edited by: harishk.225 on Dec 23, 2011 9:56 AM

    Hi Harish,
    First go to RSA5 in ECC  select your datasource 2LIS_11_VAHDR and activate it.
    After activatin check in RSA6 whether the datasoure activated properly or not.
    Then log on  to BI sytem Select datasource and click on replicate.
    Then Create Infocube infopackage ,Transformation, DTP ...entire flow. But dont schedule it because there is no data in SETUP Tables.For full load first we need to run statistical set up , so that data should come to SETUP Table.
    Now go to ECC  enter T.CODE OLI7BW to filled up the SETUP Table  for datasource 2LIS_11_VAHDR.
    It will ask  you for Run Name etc give the run name and time limit and execute it.
    If you get some error then first delete the SETUP Table by using Transaction Code LBWG.
    In LBWG it will ask you for applicatiion number , give 11 i.e for sales datasourc and execute it.
    Data will get deleted from SETUP Table. To check data is deleted or not  in SET UP Tabe go to database table MC11VA0HDRSETUP. Always remember the name of SETUP Table will be Extract Structure followed by SETUP.
    EX : If extract structure name is MC11VA0HDR then name of the SETUP Table will MC11VA0HDRSETUP.
    If data gets deleted then again go to 0LI7BW and run the Statistical Setup then agan check in MC1VAOHDRSETUP table contains data or not.
    Then trigger the Infopackage and DTP in BI.  Above steps was for full load.
    Now to Load deltas follow below steps.
    First Create INIT at BI side which enable delta at ECC Side.
    Then go to ECC and execute T.CODE LBWE.
    LBWE is LO Cockpit Work Bench. There we have folowng functions 1.Maintan Datasource. 2.Maintain Extract Structure. 3. Job  Control.  4.Delta Type 5.. Activate/deactivate.
    If you want to add any new field to your datasource then to to Maintain Extract Strucutere remeber before adding or modififying datasource first we should deactivate datasource by using 5th function  Activate/Deactivate.
    Then select DELTA TYPE in delta type we have four types of delta. 1. Delta Queue (RSA7) 2. Queued Delta (LBWQ)
    3. Unserialized (SM13) , 4. Seriaized (SM13)
    If you select Delta queue then deltas drectly come to RSAT.
    if you select Queued Delta  deltas goes to LBWQ then you have perform V3 job by using Job Control  function to move data from LBWQ to RSA7. Remeber to BI  data  always goes from RSA7 only.
    If you select Unserealized then delta goes to SM13 again you have to perorm V3 Job to move deltas in RSA7.
    Serialize update is not in used in Lo-cockpit.
    There is a differerence between  DELTA QUEUE , QUEUED DELTA, UNSERIALIZE UPDATE. Pls find the differences on net.
    Then select your delta type and create deltas dtp in BI and start loading .
    Hope this help you.
    In RSA7 we have two tables delta and repeat delta, to know the functionality of this please search for the documents on  net.
    Regards,
    Asim

  • Can anyone explain me the lovrelation function

    Hi to all,
    Can anyone explain me the lovrelation function. I tried this but i got an error "The LOV relation that you are trying to add is invalid."
    This is lov relation code,
    lov.addLovRelations(pagecontext, " ", // base pageitem
    " ", //lov item
    LOV_CRITERIA, //direction
    LOV_REQUIRED_NO )
    in this method what is base page item and lov item?
    I think i made mistake on this so that i got error (i guess)
    Anyone know plz explain me. Its Urgent.
    Thanks in Advance
    Senthur

    Use this method....
    addLovRelations(OAPageContext pageContext,
    String baseItemName,
    String lovItemName,
    String direction,
    String required
    May be it is useful for you....
    pageContext - application context for the current page and browser request
    baseItemName - ID of the item in the base page that takes part in the new LOV map
    lovItemName - ID of the item in the LOV Region that is mapped to the corresponding baseItemName for this LOV map
    direction - relation between the baseItemName and the lovItemName. Can take one of the three values:
    LOV_CRITERIA - from base page to LOV Region. Managed by OA Framework.
    LOV_PASSIVE_CRITERIA - from base page to LOV Region programmatically. Managed from the LOV Controller.
    LOV_RESULT - from LOV Region to base page
    required - LOV_REQUIRED_YES or LOV_REQUIRED_NO. If LOV_REQUIRED_YES, the baseItemName is a mandatory criteria and should contain a non-empty value when direction is LOV_CRITERIA or LOV_PASSIVE_CRITERIA. Does not apply when direction is LOV_RESULT.
    Thanks
    Anoop

  • I can't deauthorize all computers. It acts like it is doing it, but it never succeeds and no message returns saying why it didn't work. Can anyone explain why this is happening?

    I had to rebuild a computer. When I got iTunes installed and tried to sync my iPod it said that I had reached my limit of five computers. I logged into my iTunes account and went through the process for deauthorizing all computers. It comes up with a messaging asking if I am sure I want to deauthorize all computer and I select the "Deauthorize computers" button. It never comes back with a message one way or another whether it was successful. When I get out of that screen and come back in, it still shows that I have 5 authorized computers. I can't sync my iPod. The deauthorization is not working. Can anyone explain why this is happening?

    i guess no one helped? I'm having the same problem.
    When i press the button to deauthorize all computers, i get an error saying 'my account can't process this at this time. please try again later'

  • My wife, daughter and I have iPhones. We all have iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue except those that my wife sends to me. They are green. Can anyone explain why.

    My wife, daughter and I have iPhones with iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue however, when my wife messages me, the message appears in green on her iPhone. Can anyone explain why.

    Because some kind of error occured.  This is only from her iPhone to your iPhone?  Whenever she sends a message to any other iPhone, it is sent as blue?  And when anyone else sends you a message from an iPhone, it sends as blue?

  • Strange Parameter behavior - can anyone explain or enlighten?

    I have 27 Crystral Reports that are fed data through 27 SQL Stored Procedures.  Recently my boss had me add two more parameters to all 27 Procedures and update the Crystal Reports.  I went through all 27 Reports, ran the Set Datasource Location and Verify Database function in the Crystal Designer, and then tested all the reports.  24 of the 27 ran fine, but 4 of them came back with "Database Connector Error" problems.  I spent two days trying to debug this problem with no luck - even though the reports Verify correctly, and Preview perfectly in the Designer, when I ran them through our .NET (WinForms) app, these 4 continued to give Database Connector Errors.
    I then stumbled on a fix....  Normally every one of the 27 SQL Stored Procedures takes these parameters just as they appear here...
    @ImportCompanyNm as varchar(100),
    @ImportProjectNm as varchar(100),
    @ImportId int,
    @ImportTypeNm as varChar(100),
    @ImportType int,
    @FileType nvarchar(2000),
    @DateTo  datetime,
    @DateFrom  datetime,
    @ImpDateTo  datetime,
    @ImpDateFrom  datetime,
    @Passphrase as varchar(20)
    Once again, 24 of the 27 reports run fine with the SQL this way.  Notice the final 3 parameters, @ImpDateTo and @ImpDateFrom are the 2 new parameters added, and @Passphrase has been there for a year or more.  However, I was able to fix the bug by doing this in 4 of the 27 Procedures.
    @ImportCompanyNm as varchar(100),
    @ImportProjectNm as varchar(100),
    @ImportId int,
    @ImportTypeNm as varChar(100),
    @ImportType int,
    @FileType nvarchar(2000),
    @DateTo  datetime,
    @DateFrom  datetime,
    @Passphrase as varchar(20),
    @ImpDateTo  datetime,
    @ImpDateFrom  datetime
    Notice that I just moved @Passphrase, two lines up - thats it.  Once I did that, the 4 problem reports run fine.  NO Database Connector Error!
    Can anyone explain this to me?  Every single one of the other 24 reports runs just fine with the parameters as shown in the first block above - but the problem 4 will not run unless I move @Passphrase up two lines.
    Why is this?  I thought the order of Parameters does not matter - and why would it matter in 4 of 27 reports, but not in the 23 others???
    This makes me very nervous about Crystal and what it is doing behind the scenes.  Can anyone shed some light here?

    Hi Bruce,
    OK here goes.... And sorry if I miss anything or not clear.
    In MS SQL Server 7 Microsoft had a native Client and CR used p2ssql.dll which is our native DB driver to connect to MS's native client engine. MS SQL 2000 did not support native DB connections using their client engine so CR stopped shipping p2ssql.dll and only supported connectivity through MDAC, OLE DB and ODBC clients. As you know MDAC was installed by default. MS SQL Server ( native ) now shows up in CR Database Explorer again because of this new Native client. In the back end though it's using our native crdb_ado.dll in this case.
    As noted now that 2005 enhanced their client engine which is now known as the "Native SQL Server" it uses a new set of Native API's which can be used to connect in either OLE dB or ODBC mode. Because this is "new" the way our OLE DB Driver works is depending on the client we are connecting to and therefore which CR subroutines are being called. So although you are using OLE DB in the client, the low level API's being called in our driver are a new set of routines.
    These are the ones responsible for indexing the Tables, Fields, Store Procedures and their Parameters. Our OLE DB driver is dynamic, meaning we query the client for connection info and other info including Store Procedure Parameters. The order they are returned in is the order CR expects them to be in, CR keeps a copy of the database structure in the RPT file. For speed we use indexing and not names, this may explain why it works if you change the order. It may be that the new parameter was added in that order or the client is ordering them before sending them to CR to use and dynamically populate the list in CR Designer. In this case it appears something is not being returned to CR or CR does not have logic to handle this type of change.
    In either case I will discuss this with the Report Design team to see if anyone else has noticed this and ask them to test and if it is reproducible I'll have R&D fix this if it's our issue.
    Hope this is understood and explain why?
    Thanks agian
    Don

  • Can anyone Explain me the difference between Batch Input, Direct  input met

    Can anyone Explain me the difference between Batch Input Method and Direct Input Method.

    hi
    good
    Direct input method                     Batch Input Method
    1) We cannot send the fields   | 1) We can send fields as per 
       according to our requirement|    requirement.
    2) validations are done based
    2) validations are done based
       on pre-defined function
    on applications.
       modules
    Batch Input Session:
    - It is a sequence of transactions, which is generated when user run a particular program. 
    - It contains the accounting documents that are to be created. The SAP system stores these transactions until you decide to process them online. 
    - It does not update transaction figures until the session has been processed.  Using this technique, you can transfer large amounts of data to the SAP system in a short time.
    Three processing modes of executing Batch Input Session :-
    (1) Run Visibly : You can correct faulty transactions online & work step-by-step through  the transactions not yet executed. 
    (2) Display Errors only : You can correct faulty transactions online.   Transactions not yet executed, but without error, run in the background.
    (3) Run in Background : Recommended by SAP.                          
    thanks
    mrutyun^

  • Can anyone explain nonpredefine exception with real world example

    Can anyone explain nonpredefine exception with real world example

    Is this what you mean?
    i.e. When others catches all errors - so it is not predefined
    Predefined errors are things like no rows, too many rows etc - meant to catch specific errors
    It is the difference between tolerating one 'bad' thing specifically and tolerating all 'bad' things.
    DECLARE
       v_text  varchar2(1);
    BEGIN
       v_text:= 'THIS STRING IS TOO LONG FOR THIS VARIABLE';
    EXCEPTION
       WHEN OTHERS --this is non error specific and generally VERY BAD practise as it suppresses all errors
           dbms_output.put_line('Whatever you want to do when an unknown error manifests here');
    END;

Maybe you are looking for