ClassCastException when using DefaultTableModel.getValueAt to get data

Hi,
I'm using JTable to display,add and edit customers informantion in my project, the properties of each customer is displayed in corresponding cloumns in one row. The properies consist of id(Integer), name(String)...etc, it works fine when I set and get the properties of existing customer information into the DefaultJTableModel(dm for short) of the table I created, but when I added the new row using dm.addRow() and get the information typed in manually, an exception of ClassCastException was raised
here is the way I created JTable columns,and added a new row
DefaultJTableModel md =(DefaultJTableModel ) this.jTable.getModel();
md.addColumn("ID");
md.addColumn("Name");
md.addRow(new Object[]{
Integer.valueOf("1"),
"A"
} )then I captured mousecliked event of an Add button to add a new row in the table as bellow
md.addRow(new Object[]{null}) // as there's no need to initialize each column of each new row ,i used null instead of new Object[]{default id, default name};after editing the new row added to the table I captured the mouse cliked event of an Save button to save the added row which I wanted to write back to an bean
Customer c=new Customer()
c.setId((Integer)md.getValueAt(0,0));
c.setName((String)md.getValueAt(0,1));
c=new Customer()
c.setId((Integer)md.getValueAt(1,0)); // here is the point which caused the ClassCastExcption happened
c.setName((String)md.getValueAt(1,1));the exception message is
java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
It seems the newRow() method set all the columns of a new row to the type of String,
my question is how can I set the data type of a column in the table?

When you edit a table cell, JTable writes your edit back into the model. Most of the time, editing means entering text, so obviously, JTable will write a String into your model. JTable might be able to handle simple conversions such as String to Integer, but at the very least you would have to tell the table that you want only Integers in your column by implementing [TableModel.getColumnClass|http://java.sun.com/javase/6/docs/api/javax/swing/table/TableModel.html#getColumnClass(int)] appropriately. I honestly don't remember if the table can do this, though. If it can't, you probably need to either use a custom editor that converts the user entered text into an appropriate object or you need to use a custom model that handles the conversion in its setValue method.

Similar Messages

  • When using reader, the font gets very large on last page and I cant change it

    when using reader, the font gets very large on last page and I cant change it

    You cannot edit PDF files with Reader. You can change the View options to make what you see smaller. View -> Zoom

  • When using Foxfire I keep getting "not responding", how can I fix this?

    When using foxfire I keep getting "not responding" How can I correct this?

    If this is happening with one or two specific sites, those site may have been hacked, or they may simply be bad sites.
    If it's happening with a larger number of sites, and with sites that are legit (like Google, Yahoo, Facebook, etc), then it's likely that your wireless router has been hacked. See:
    How to manage a hacked wireless router
    (Fair disclosure: The Safe Mac is my site, and contains a Donate button, so I may receive compensation for providing links to The Safe Mac. Donations are not required.)

  • When using home sharing sometimes getting a message computer not authorized.

    When using home sharing, sometimes getting a message that it's not an authorized computer.

    You need to authorise the computer you sync with your wife's Apple ID. Then you can copy the app from her itunes to your own by using home sharing
    Understanding home sharing
    Setting up Home Sharing
    You can then sync it to your iPod

  • ClassCastException when using javax.xml.soap.DetailEntry

    I am using the Java Web Services development pack and I'm getting a ClassCastException when trying to use a DetailEntry object.
    My code is basically as follows:
    SOAPFault fault = responseSoapBody.getFault();
    Detail detail = fault.getDetail();
    Iterator iterator = detail.getDetailEntries();
    DetailEntry entry = (DetailEntry)iterator.next(); //exception!!
    Exception:
    java.lang.ClassCastException: com.sun.xml.messaging.saaj.soap.dom4j.TextImpl
    The object being returned from the Iterator seems to be a TextImpl. In my CLASSPATH are the jars in the lib directory under <JWSDP>\jwsdp-1_0_01\common\lib.
    Any idea why I'm getting this Exception? Is this a bug in the JWSDP, or in my code?
    Thanks...

    You post has been forwarded to the SAAJ person as it seems
    like a SAAJ exception ... u should be hearing from the
    individual soon
    asengup

  • ClassCastException when using OlapiPoolConnDriver

    Hi,
    I was following the instructions of the connection pool sample given in file
    sh_olap/bibeans/connectionpool/connectionPool.html
    in the samples.
    Everything is fine, the connection is fetched from the OlapiPoolConnDriver class.
    But then, when my presentation on the JSP tries to issue the OLAP query, I get the following exception below. It seems that MDMConnectionDriverImpl_92 tries to cast
    the connection to something (maybe OracleConnection), but when using the
    connection pool the connection is actually of type com.evermind.sql.DriverManagerConnectionPoolConnection.
    Any help would be appreciated.
    Thanks a lot
    Kai-Uwe
    07/08/01 20:34:57 java.lang.ClassCastException: com.evermind.sql.DriverManagerConnectionPoolConnection
    07/08/01 20:34:57      at oracle.dss.connection.server.drivers.mdm._92.MDMConnectionDriverImpl_92.connect(MDMConnectionDriverImpl_92.java:139)
    07/08/01 20:34:57      at oracle.dss.connection.server.drivers.mdm._92.MDMConnectionDriverImpl_92.connect(MDMConnectionDriverImpl_92.java:105)
    07/08/01 20:34:57      at oracle.dss.connection.server.drivers.mdm.MDMConnectionDriverImpl.connect(MDMConnectionDriverImpl.java:68)
    07/08/01 20:34:57      at oracle.dss.connection.server.ConnectionImpl.connect(ConnectionImpl.java:285)
    07/08/01 20:34:57      at oracle.dss.connection.client.Connection.connect(Connection.java:499)
    07/08/01 20:34:57      at oracle.dss.connection.client.Connection.connect(Connection.java:416)
    07/08/01 20:34:57      at oracle.dss.metadataManager.client.MetadataManager.setConnectionObjects(MetadataManager.java:4235)
    07/08/01 20:34:57      at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:924)
    07/08/01 20:34:57      at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:840)
    07/08/01 20:34:57      at oracle.dss.datautil.client.XMLManagerFactory.createQueryManager(XMLManagerFactory.java:196)
    07/08/01 20:34:57      at oracle.dss.datautil.client.ManagerFactoryImpl.lookupQueryManager(ManagerFactoryImpl.java:178)
    07/08/01 20:34:57      at oracle.dss.datautil.client.ManagerFactoryImpl.lookupMetadataManager(ManagerFactoryImpl.java:221)
    07/08/01 20:34:57      at oracle.dss.datautil.client.ManagerFactoryImpl.lookupManager(ManagerFactoryImpl.java:128)
    07/08/01 20:34:57      at oracle.dss.addins.thin.common.BaseThinSession.getMetadataManager(BaseThinSession.java:217)
    07/08/01 20:34:57      at oracle.dss.addins.thin.common.BaseThinSession.getQueryManager(BaseThinSession.java:253)
    07/08/01 20:34:57      at oracle.dss.addins.jspTags.TagRequestHandler.getStateManager(TagRequestHandler.java:781)
    07/08/01 20:34:57      at oracle.dss.addins.jspTags.BIThinSession.getStateManager(BIThinSession.java:61)
    07/08/01 20:34:57      at oracle.dss.addins.thin.common.BasePresentationHandler.createBIThinObject(BasePresentationHandler.java:296)
    07/08/01 20:34:57      at oracle.dss.addins.jspTags.PresentationTag.createThinObject(PresentationTag.java:234)
    07/08/01 20:34:57      at oracle.dss.addins.jspTags.BIBaseTag.getThinObject(BIBaseTag.java:79)
    07/08/01 20:34:57      at oracle.dss.addins.jspTags.PresentationTag.doStartTag(PresentationTag.java:258)
    07/08/01 20:34:57      at secondpage.jspService(secondpage.jsp:10)
    07/08/01 20:34:57      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    07/08/01 20:34:57      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:356)
    07/08/01 20:34:58      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:498)
    07/08/01 20:34:58      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:402)
    07/08/01 20:34:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    07/08/01 20:34:58      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    07/08/01 20:34:58      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:673)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:229)
    07/08/01 20:34:58      at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
    07/08/01 20:34:58      at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
    07/08/01 20:34:58      at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
    07/08/01 20:34:58      at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    07/08/01 20:34:58      at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    07/08/01 20:34:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    07/08/01 20:34:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    07/08/01 20:34:58      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    07/08/01 20:34:58      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:673)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:229)
    07/08/01 20:34:58      at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
    07/08/01 20:34:58      at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
    07/08/01 20:34:58      at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
    07/08/01 20:34:58      at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    07/08/01 20:34:58      at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
    07/08/01 20:34:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    07/08/01 20:34:58      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    07/08/01 20:34:58      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    07/08/01 20:34:58      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:673)
    07/08/01 20:34:58      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
    07/08/01 20:34:58      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    07/08/01 20:34:58      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
    07/08/01 20:34:58      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
    07/08/01 20:34:58      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    07/08/01 20:34:58      at java.lang.Thread.run(Thread.java:534)
    07/08/01 21:11:22 java.lang.ClassCastException: com.evermind.sql.DriverManagerConnectionPoolConnection
    07/08/01 21:11:22      at oracle.dss.connection.server.drivers.mdm._92.MDMConnectionDriverImpl_92.connect(MDMConnectionDriverImpl_92.java:139)
    07/08/01 21:11:22      at oracle.dss.connection.server.drivers.mdm._92.MDMConnectionDriverImpl_92.connect(MDMConnectionDriverImpl_92.java:105)
    07/08/01 21:11:22      at oracle.dss.connection.server.drivers.mdm.MDMConnectionDriverImpl.connect(MDMConnectionDriverImpl.java:68)
    07/08/01 21:11:22      at oracle.dss.connection.server.ConnectionImpl.connect(ConnectionImpl.java:285)
    07/08/01 21:11:22      at oracle.dss.connection.client.Connection.connect(Connection.java:499)
    07/08/01 21:11:22      at oracle.dss.connection.client.Connection.connect(Connection.java:416)
    07/08/01 21:11:22      at oracle.dss.metadataManager.client.MetadataManager.setConnectionObjects(MetadataManager.java:4235)
    07/08/01 21:11:22      at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:924)
    07/08/01 21:11:22      at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:840)
    07/08/01 21:11:22      at oracle.dss.datautil.client.XMLManagerFactory.createQueryManager(XMLManagerFactory.java:196)
    07/08/01 21:11:22      at oracle.dss.datautil.client.ManagerFactoryImpl.lookupQueryManager(ManagerFactoryImpl.java:178)
    07/08/01 21:11:22      at oracle.dss.datautil.client.ManagerFactoryImpl.lookupMetadataManager(ManagerFactoryImpl.java:221)
    07/08/01 21:11:22      at oracle.dss.datautil.client.ManagerFactoryImpl.lookupManager(ManagerFactoryImpl.java:128)
    07/08/01 21:11:22      at oracle.dss.addins.thin.common.BaseThinSession.getMetadataManager(BaseThinSession.java:217)
    07/08/01 21:11:22      at oracle.dss.addins.thin.common.BaseThinSession.cleanup(BaseThinSession.java:350)
    07/08/01 21:11:22      at oracle.dss.addins.thin.common.BaseThinSession.valueUnbound(BaseThinSession.java:201)
    07/08/01 21:11:22      at com.evermind.server.http.EvermindHttpSession.destroy(EvermindHttpSession.java:312)
    07/08/01 21:11:22      at com.evermind.server.http.EvermindHttpSession.invalidate(EvermindHttpSession.java:263)
    07/08/01 21:11:22      at com.evermind.server.http.SessionAsyncInvalidateHandler.invalidateSession(SessionAsyncInvalidateHandler.java:173)
    07/08/01 21:11:22      at com.evermind.server.http.SessionAsyncInvalidateHandler.run(SessionAsyncInvalidateHandler.java:133)
    07/08/01 21:11:22      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    07/08/01 21:11:22      at java.lang.Thread.run(Thread.java:534)

    Hi, this one's solved.
    It was my mistake, I accidentally referred to the jdbc/OLAPConnection1PooledDS
    insted of the jdbc/OLAPConnection1CoreDS. This is why I got the evermind..blbla.
    connection.
    Mea culpa ... mea culpa ... mea maxima culpa
    Hang on and thanks to all who had a look at it.
    Kai-Uwe

  • Use a String to get data from a variable?

    Hi, I've got a major problem, I need to get data (int []) from a variable, using a String with the name of the variable..
    Does anyone know if this is possible?
    public class Commands {
        private static final int[] deploy_1 = {64,37,73,1};
        private static final int[] deploy_2 = {4,167,6,51};
        /** Creates a new instance of Commands */
        public Commands() {
        public int[] get(String name)
    // what code here?
    }I should be getting the data with
    int[] command = Commands.get("deploy_1");
    or something like that...
    Please help me!
    FYI, a hashtable is not a option!
    Many thanks, Vikko

    java.lang.NoSuchFieldException: deploy_1
    at java.lang.Class.getField(Class.java:1507)
    at dumb_commandstest.Commands.get(Commands.java:30)
    at dumb_commandstest.Main.getData(Main.java:36)
    at dumb_commandstest.Main.<init>(Main.java:21)
    at dumb_commandstest.Main.main(Main.java:28)
    Any ideas why I get a NoSuchFieldException?
    deploy_1 does exist.

  • When using mail icon i get a blank screen with No message selected on the RH side. Top left is the word thread in  black . all other buttons are greyed out except the send new mail one. Cna anyone help?

    Email does not appear when using the mail icon on the home screen. I get No message selected showing on the rh side of my screen with the left hand third of the screen blank. Buttons on the top line are greyed out except the new mail one. The word thread appears in black on the top left hand side of the screen The only way out is to close the screen. all other apps work okay.

    Hello calverone,
    Thanks for using Apple Support Communities.
    To start troubleshooting this issue where the Mail application is not appearing correctly on your iPad, I'd like you to please force the Mail app to quit, and then restart your iPad.
    iOS: Force an app to close
    Turn your iOS device off and on (restart) and reset
    Have a great weekend,
    Alex H.

  • Handling parameters when using BI Server as a Data Source

    Hi,
    Following an upgrade of our BI Publisher 10g content to 11g I've come across a syntax issue with 11g when it comes to the handling of parameters in BI Server Data Sets.
    Under 10g, the documentation stated the following:
    +"If your data source is the Oracle BI Server, use the following macro to handle the null:+
    +{$ if ${sYear}='*'$}+
    +{$elsif ${sYear}='2000' $}+
    +where Year = :sYear+
    +{$else $}+
    +where Year = :sYear+
    +{$endif$} "+
    http://docs.oracle.com/cd/E10415_01/doc/bi.1013/e12187/T518230T518233.htm
    Under 11g it does not seem to allow the use of macros defined in Data Sets and raises the following error when saving the query:
    +"java.io.IOException: prepare query failed[nQSError: 43113] Message returned from OBIS. [nQSError: 27002] Near <$>: Syntax error [nQSError: 26012] ."+
    If macros are no longer supported, what is the best approach to handle null value parameters (caused by all choices / nothing being selected)
    as they need to be defined in the Data Set WHERE CLAUSE?
    I've tried a rather clunky CASE WHEN statement which handles string parameters fine, but dates are another thing as null values are returned as 'null' text which causes TYPE mismatch errors.
    Hopefully there is an elegant way to handle this in 11g (the 10g macros were very straight forward when dealing with BI Server)
    Many Thanks

    If what you are saying is true then I would highly recommend open a ticket with Oracle Support.
    They should provide and alternative for handling NULLS in 11g.
    regards
    Jorge

  • Oracle giving Block corruption errors when using CDC for sending the data to SQL Server 2012

    Hello Friends,
    We are facing an error while using CDC with Oracle. It is a "Block corruption" error, which indicates at some level of data corruption. We ran RMAN validate command to scan the database for corruption but it returned with no errors, however he
    Alert Log in Oracle is still coming up with the following error. Has anyone experienced this error when using Oracle Standard Edition and SQL 2012 ?
    Trace file e:\app\pulse-ad\diag\rdbms\orcl\orcl\trace\orcl_ora_5992.trc
    Oracle Database 11g Release 11.1.0.7.0 - 64bit Production
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU                 : 4 - type 8664, 4 Physical Cores
    Process Affinity    : 0x0000000000000000
    Memory (Avail/Total): Ph:6782M/24575M, Ph+PgF:12203M/30844M
    Instance name: orcl
    Redo thread mounted by this instance: 1
    Oracle process number: 151
    Windows thread id: 5992, image: ORACLE.EXE (SHAD)
    *** 2013-12-12 03:04:33.655
    *** SESSION ID:(1281.3832) 2013-12-12 03:04:33.655
    *** CLIENT ID:() 2013-12-12 03:04:33.655
    *** SERVICE NAME:(orcl) 2013-12-12 03:04:33.655
    *** MODULE NAME:(xdbcdcsvc.exe) 2013-12-12 03:04:33.655
    *** ACTION NAME:() 2013-12-12 03:04:33.655
    Lost-write detected for sequence 70856. The lost-write starts occurring in block 11193. The current block being validating is 12930.
    Block dump of the first lost-write block:
    Flag: 0x1 Format: 0x22 Block: 0x00002bb9 Seq: 0x000114bf Beg: 0x94 Cks:0x68ee
    Dump of memory from 0x0000000598D06C00 to 0x0000000598D06E00
    598D06C00 00002201 00002BB9 000114BF 68EE8094  [."...+.........h]
    598D06C10 00085BF1 0023BDA1 000DE19C 000DE19C  [.[....#.........]
    598D06C20 0000000C 00000000 2209160A 5BF10000  [..........."...[]
    598D06C30 3EB10502 00C0F5CA 0031BDA1 00010205  [...>......1.....]
    598D06C40 02B22C6A 038A6D69 00000001 00000000  [j,..im..........]
    598D06C50 4D554407 30373230 35BB0206 001100AE  [.DUM0270...5....]
    598D06C60 0001040A 000D000E 038A6D69 56B25735  [........im..5W.V]
    598D06C70 729C0003 E19C0001 000C0006 000D0006  [...r............]
    598D06C80 02BB0502 00C0F5CD 0023BDA1 000A0002  [..........#.....]
    598D06C90 00C00013 000000D0 00030201 56B25736  [............6W.V]
    598D06CA0 03890001 00000000 00000000 002E0105  [................]
    598D06CB0 FFFF0003 00C0F5CD 56B25736 3EB10003  [........6W.V...>]
    598D06CC0 FFFF0024 0014000C 000C0018 00120014  [$...............]
    598D06CD0 09CC0058 E75B0022 0009000F 00085BF1  [X...".[......[..]
    598D06CE0 0024BDA1 000DE19D 000DE19D 0000000C  [..$.............]
    598D06CF0 00000000 2309160A 5BF10000 3EB10502  [.......#...[...>]
    598D06D00 00C0F5CD 0020BDA1 00010205 02B22C72  [...... .....r,..]
    598D06D10 03900974 00000019 00000000 3030300A  [t............000]
    598D06D20 33303030 06323132 AE35BB02 0B441100  [0003212...5...D.]
    598D06D30 0001040A 000D000E 03900974 56B25736  [........t...6W.V]
    598D06D40 729C0003 E19D0011 000C0006 000D0006  [...r............]
    598D06D50 02BB0502 00C0F5CD 0024BDA1 00EA0002  [..........$.....]
    598D06D60 00270016 000001FC 00032C01 56B25736  [..'......,..6W.V]
    598D06D70 00000001 00000000 30393007 002E0105  [.........090....]
    598D06D80 FFFF0003 00C0F5CD 56B25736 00000003  [........6W.V....]
    598D06D90 FFFF0025 00140052 000C0018 00070035  [%...R.......5...]
    598D06DA0 0003000A 00070003 0001001D 00030001  [................]
    598D06DB0 00010001 00010001 00010001 00010001  [................]
    598D06DC0 00010001 00010001 00010001 00010001  [................]
    598D06DD0 00010001 00000001 00010001 00010001  [................]
    598D06DE0 00010001 00000014 09720174 00000022  [........t.r."...]
    598D06DF0 0009000F 00085BF1 0025BDA1 000DE19A  [.....[....%.....]
    Block dump of the current block being validating:
    Flag: 0x1 Format: 0x22 Block: 0x00003282 Seq: 0x000114c8 Beg: 0x0 Cks:0x312a
    Dump of memory from 0x0000000598DDFE00 to 0x0000000598DE0000
    598DDFE00 00002201 00003282 000114C8 312A8000  [."...2........*1]
    598DDFE10 50424703 31303607 34353335 69745319  [.GBP.6015354.Sti]
    598DDFE20 6E696C72 72502067 6375646F 4C207374  [rling Products L]
    598DDFE30 4E206474 C3025650 0380013D 0457454E  [td NPV..=...NEW.]
    598DDFE40 4E1E09C2 1E09C204 10C2024E 1E09C204  [...N....N.......]
    598DDFE50 09C2044E C2024E1E 03C30510 021B0929  [N....N......)...]
    598DDFE60 C3053DC3 0F192602 2602C305 C3050F19  [.=...&.....&....]
    598DDFE70 0C1A6203 5102C105 C2041F4E 044E1E09  [.b.....QN.....N.]
    598DDFE80 4E1E09C2 0410C202 4E1E09C2 1E09C204  [...N.......N....]
    598DDFE90 10C2024E 2903C305 78071B09 011D0B71  [N......)...xq...]
    598DDFEA0 BF020101 1FBF0215 4E018001 53014E01  [...........N.N.S]
    598DDFEB0 0723002C 0B0C7178 0A3C3C18 30303030  [,.#.xq...<<.0000]
    598DDFEC0 33373030 4D033337 47034255 36075042  [007373.MUB.GBP.6]
    598DDFED0 38333936 4E113331 2065776B 74616C50  [693813.Nkwe Plat]
    598DDFEE0 6D756E69 56504E20 0B0AC303 4E038001  [inum NPV.......N]
    598DDFEF0 C2045745 0459512E 59512EC2 5253C203  [EW...QY...QY..SR]
    598DDFF00 512EC204 2EC20459 C2035951 C3055253  [...QY...QY..SR..]
    598DDFF10 1B092903 0B0AC303 3C04C305 C3053239  [.).........<92..]
    598DDFF20 32393C04 4F08C305 C105114F 1F4E5102  [.<92...OO....QN.]
    598DDFF30 512EC204 2EC20459 C2035951 C2045253  [...QY...QY..SR..]
    598DDFF40 0459512E 59512EC2 5253C203 2903C305  [.QY...QY..SR...)]
    598DDFF50 78071B09 01190A71 C0030101 C0034709  [...xq........G..]
    598DDFF60 8001330A 4E014E01 002C5301 71780723  [.3...N.N.S,.#.xq]
    598DDFF70 3C180B0C 30300A3C 30303030 33373337  [...<<.0000007373]
    598DDFF80 42554D03 50424703 31304207 344C5131  [.MUB.GBP.B011QL4]
    598DDFF90 6F725020 63657073 614A2074 206E6170  [ Prospect Japan ]
    598DDFFA0 646E7546 64724F20 44535520 30302E30  [Fund Ord USD0.00]
    598DDFFB0 04C30331 03800133 0557454E 5B1603C3  [1...3...NEW....[]
    598DDFFC0 03C30521 04215B16 1F4004C3 1603C305  [!....[!...@.....]
    598DDFFD0 C305215B 215B1603 4004C304 03C3051F  [[!....[!...@....]
    598DDFFE0 031B0929 043304C3 4D245AC2 245AC204  [).....3..Z$M..Z$]
    598DDFFF0 02C3054D 040A1A18 494002C1 1603C305  [M.........@I....]
    *** 2013-12-12 03:05:07.984
    ** LOGMINER WARNING - Invalidated 6 LCRs **
    Complete dump of first invalid START LCR follows:
    ++  LCR Dump Begin: 0x0000000532C004E0 - CANNOT_SUPPORT
         op: 255, Original op: 3, baseobjn: 0, objn: 233316, objv: 1
         DF: 0x00000002, DF2: 0x00000000, MF: 0x00000000, MF2: 0x00000000
         PF: 0x40000001, PF2: 0x00002000
         MergeFlag: 0x00, FilterFlag: 0x00
         Id: 0, iotPrimaryKeyCount: 3, numChgRec: 4
         NumCrSpilled: 0
         RedoThread#: 1, rba: 0x0114c8.0001c6ce.00d4
         scn: 0x0003.56b593be, xid: 0x0008.00c.00100d85, pxid: 0x0008.00c.00100d85
         ncol: 0newcount: 0, oldcount: 0
         LUBA: 0x3.c109c0.c.15.38f64
    Thanks
    Dee

    Hi Dee,
    Thank you for your question.
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
    Thank you for your understanding and support.
    Regards,
    Mike Yin
    TechNet Community Support

  • I can't see any pictures or graphics when using firefox, I just get a broken file image. How do I fix it?

    I can't see any icons or images when using Firefox. I can on other browsers on my apple laptop. How can I fix it?

    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Firefox > Preferences > Content: [X] Load images automatically
    *Check the exceptions in "Firefox > Preferences > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    There are also extensions (Tools > Add-ons > Extensions) that can block images.
    See also:
    *http://kb.mozillazine.org/Images_or_animations_do_not_load

  • When using Power Management i get 'no data'

    I'm using all sorts of reports in SCCM and all are working except the power management reports. I get the following message: 'no data'
    The following options are turned on:

    The CM client is installed on every workstation and the resource explorer is populated. Is it possible to force the report instead of waiting +/- 30 days?
    It is still unclear to me if you environment is healthy.
    You say the query above only shows you 1 computer but every computer has the client installed. How many computers do you see listed in “Count operating system versions”?
    For the computer show in the resource explorer screenshot, do you get any results for “Power Management - Computer activity by computer”
     Feb 7 2015?
    Until the data is collected from all of your computers and until you have several days’ worth of data, some reports will not full work. There is no way to hurry it up.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ
    1. Count Operating System Versions:
    Microsoft
    Windows 7 Enterprise
    932
    Microsoft
    Windows 8.1 Enterprise
    1
    Microsoft
    Windows Server 2008 R2 Enterprise
    1
    Microsoft
    Windows XP Professional
    13
    2. For the computer in the screenshot (and other workstations) i get "no Data". When i click onclick for detailed information i get some data like
    the Power Settings Plan.

  • When using restart firefox you get a folder on the desktop called old firefox data i need to know how to use this folder to get my old firefox preferences back

    i've recently reformatted my computer and i've taken the old firefox folder from before the reformat and put it on the new one but i dont know how to use it to restore my old settings
    by the way im not using a different operating system im running windows 7 like i was previously

    Here's my suggested profile resurrection procedure using the old profile folder that's inside the Old Firefox Data folder.
    '''Overview'''
    These are the steps:
    # Create a new Firefox profile
    # Remove everything from that new profile folder
    # Copy in everything from the old profile folder
    '''Create a new Firefox profile (Windows)'''
    Exit Firefox and start up in the Profile Manager using Start > search box (or Run):
    firefox.exe -P
    ''Note: Any time you want to switch profiles, exit Firefox and return to this dialog.''
    Click the Create Profile button and skip the option to change the folder location. Then select that new profile in the dialog and start Firefox.
    '''Open the New Profile folder in Windows Explorer'''
    Firefox in the new profile should look like a factory fresh installation. Open the Troubleshooting Information page using either:
    * "3-bar" menu button > "?" button > Troubleshooting Information
    * Help menu > Troubleshooting Information
    In the first table, click the "Show Folder" button. Firefox will launch your brand new profile folder in Windows Explorer.
    Leaving this folder open, switch back to Firefox, and Exit. This will leave that profile folder open in Windows Explorer.
    '''Copy Old Data in Place of New'''
    In that new profile folder, select all the contents and delete.
    Leaving that window open, open or switch over to your Old Firefox Data folder. Drill down into your old profile folder. At this level you should see a folder named bookmarkbackups among other things.
    Select everything (Ctrl+a) and Copy (either right-click > Copy or Ctrl+c).
    Switch to the empty new profile folder in other window and Paste (either right-click > Paste or Ctrl+v). This may take a minute since some of the files are large.
    '''Start Firefox'''
    Firefox should start up in that new profile with the resurrected old profile data. Success?

  • Using Oracle SP to get data

    Hello,
    We have a simple need to load all data from a master table into an object in Java. We have written a simple query in Oracle and created a SP with a Ref_Cursor to return the data like below. The underlying table has 500,000+ records. If I run the select query by itself, the data is returned in a few seconds. However, if I call the SP below, it takes more than an hour to execute. Can you please advise if my approach is wrong in using a RefCursor and how to get this data back in an efficient way.
    CREATE OR REPLACE Procedure GetListOfAccounts (p_cursor OUT SYS_REFCURSOR)
    IS
    v_code NUMBER := 0;
    BEGIN
    open p_cursor for
    SELECT DISTINCT
    AM.ACNUMBER
    , AM.ACNAME
    , AM.ACCITY
    , AM.ACSTATE
    , AM.ACPHONE
    , AM.ACTYPE
    from
    ACCOUNTMASTER AM;
    EXCEPTION
    WHEN OTHERS THEN
    v_code := SQLCODE;
    END;
    Thank you.

    I ran the statistics using only 10000 rows. I got the select result back within 3-4 seconds to the screen and I scrolled through the records to see the entire recordset. However the StoredProc for the same took about 1.5 minutes. Thus I do believe the cursor does make it slow.
    I notice that the cursor returns the data about 100 rows every second.
    This process is supposed to run only once a day - but still - its not acceptable that it takes 2 hours to load that data into the object... Please advise as to how to do this.

  • Use a SQL SERVER get date in query

    I want to constrain my returned data by a change date to just return the last rolling 30 days of data. When I use sysdate, I find the plan is to retreive ALL data across the dblink, and then filter it on the Oracle side.
    Is there any way I can use the Sql Server getdate() function, something like
    select * from remote@ss_link
    where upd_date >= getdate() - 30
    Problem - how do I get Oracle to pass the Sql Server specific function call to Sql Server? [BTW I'm on an old version of Oracle...]

    It depends on the product you are using.
    If you are using a gateway you can call remote functions using the getdate@<db link> syntax as described in the Heterogeneous Admin Guide.
    For gateways and generic connectivity you can also use PASSTHROUGH which allows you to pass a statement as it is to the remote database.
    Or at least you can create a view at the SQL Server side which returns the last 30 days and then just select from this view.

Maybe you are looking for