Log watcher, problems when read new bytes.

Hello,
My first post here.
I want to monitorize Logs in real time.
Actually I made a simple class with this steps:
1º Get the file "target"
2º OpenAsync in READ mode, and make a event listener, in this listener I get the totalbytes of the file, close the stream, and start a timer.
3º The timer check every 10ms if the file "target" have changes in .modificationDate.getTime(). If the timer see a change, first compare totalbytes with the new bytes, if they are diferent, open a stream, put the stream.position in the diference of totalbytes and newbytes and read the changes, this "new bytes" go to a Text Area.
Well, here is the problem.
If the owner of the file "target" want to write new bytes at the same time I read the new bytes (fast process of writting in the log by the owner of file "target") I have a error in the app owner of the file "target", and my app crash.
How can I read this new bytes without this problem? I think the problem are where I READ the newbytes, because my app lock this file in the same time or a bit until of app owner of file "target" want write new bytes.
How can I solve this problem?
Sorry for my poor English. if want I´m in googlechat [email protected]
Regards.

[SFWordprocesing?|http://discussions.apple.com/search.jspa?threadID=&q=sfwordpro cessing&objID=c188&dateRange=last90days&userID=&numResults=15&rankBy=10001]
Notice the word [Million|http://discussions.apple.com/search.jspa?threadID=&q=million&objID=c18 8&dateRange=last90days&userID=&numResults=15&rankBy=10001]
[The million dollar trick or how to fix iWeb in 10.6.2|http://iwebfaq.org/e-books/the-million-dollar-trick-or-how-to-fix-iweb-i n-10-6-2>

Similar Messages

  • Display problem when reading Traditional Chinese in Crystal Report 2008

    Hi All,
    I have tried to connect MS SQL 6.5 to build up a report. However, I encounter a problem when read Traditional Chinese. all chinese characters turn into adnormal characters. I wonder it is problem of SQL Server or some setting that I may not know. In addition, I can able to read chinese in the application program , ISQL / Query Analyzer. Please help to give idea and suggestion to fix this. Thanks
    SQL Server: MS SQL Server  6.5
    Client OS: Window XP ( Traditional Chinese Version)
    Server OS: Window NT and Window Server 2000
    Stsyou

    Hi
    If you are using a Chinese language build database, Crystal Reports English build might not display the characters properly as non english databases include one byte characters as ASCII code character and double-byte characters as their own language code character.
    Traditional Chinese, Simplified Chinese, Japanese (Kanji, Hiranga, and Katakana), Korean and Vietnamese use double-byte characters.
    However, a possible workaround to this issue is to verify that the encoding on the database client is configured according to the examples below. Also, you will need to install the language pack in the English environment.
    CONFIGURATION EXAMPLES:
    Shift-JIS for a Japanese database
    Big5 for a Traditional Chinese database
    GB2312 for a Simplified Chinese database
    iso-2022-kr for a Korean database
    Windows 1258 for a Vietnamese database
    EXAMPLE SCENARIO:
    An Oracle database saves non-English language data such as Japanese.
    The Windows operating system is English.
    STEP TO CONFIGURE THE CHARACTER CODE IN THE ENVIRONMENT SETTING
    (This step is based on the details of the EXAMPLE SCENARIO.)
    1. Configure the system environment on the database client side to 'Shift-JIS' as the character code set in the Environment Setting.
    This results in the NLS_LANG variable set to Japanese_Japan.JA16SJIS under the registry HKEY_Local_Machine\Software\Oracle\Homeo.
    STEPS TO INSTALL LANGUAGE PACK IN AN ENGLISH ENVIRONMENT
    (These steps are based on the details of the EXAMPLE SCENARIO.)
    1. Add languages to the computer system by clicking:
    Control Panel > Regional Options > General
    2. Select the check box for 'Traditional Chinese', 'Simplified Chinese', 'Japanese', 'Korean' or 'Vietnamese'.
    3. Click 'Apply'.
    4. When you are prompted, insert the Windows CD-ROM to install the language pack.
    5. Restart the computer.
    Upon completing these steps, you are able to display the languages characters in the Crystal Reports Designer in a Windows English environment.
    ==========
    NOTE:
    If the database table and field names use non-English language characters, Data Explorer in CR will not correctly display these names. However, when you preview the report, the non-English data displays correctly.
    ==========
    Configuring the database client according to the examples and installing the language pack will display the characters successfully. However, there are cases when this workaround does not resolve the issue.
    For further information about CR and double-byte languages, refer to knowledge base articles, c2008083 and c2008349.
    Hope this helps!!!
    Regards
    Sourashree

  • Problems when reading pdf files

    I use windows 7, and also have available Adobe Reader 5 and Adobe Reader X, but i receive some problems when reading pdf files. What can I do???

    Reader 5 is not Windows Compatible. Two different versions of the same computer can cause all sorts of problems. Remove all Acrobat and/or Reader software then re-install Reader X.

  • Strange problem when opening new message.

    I have a rather annoying problem when I open a newly received SMS from a particular contact (lets call him Bill).
    When I open the new message from Bill, either by swiping to unlock or touching a banner message at the top of the screen. Instead to being shown the message itself, I will automatically be taken to the 'start new message' screen with none of our message history (i.e. as if I am starting to type an entirely new message to Bill)
    I can then cancel this and return to myself and Bill's normal message stream.
    Any ideas how to get around this annoyance? Thank you.

    I think you have 2 ways to go here. Figure out what html is from wherever weblogic gets it, meaning you have to delve into the docs, snoop
    around in directories and find what it must be sending (This is going to be unavoidable if you are going to change what weblogic is doing.
    Sooner or later you have to try to figure out where it gets this stuff from)
    or
    you can experimentally snoop on your url with a tool like wget or curl. These are fundamental web tools.
    The latter is always a useful thing to be able to do. (you need to formulate a query to get the content-type).
    Whoever managed to get weblogic to serve any files in the first place probably can figure this out.

  • Problem with reading in bytes.

    See Below
    Edited by: ElCid on Mar 28, 2008 2:01 PM

    This year old off and on project is almost done, but I am just having problems reading back information from a serial port. The problem isnt with the port, but how I am getting the information and how it is coming across. I writing to the device, and then I ask it for it's configuration and I want to compare what I sent it to what it got, making an error checker.
    Here is the code that is reading from the buffer:
    case SerialPortEvent.DATA_AVAILABLE:
                byte[] readBuffer = new byte[30];
                try {
                    while (inputStream.available() > 0)
                           int numBytes = inputStream.read(readBuffer);
                    System.out.print(new String(readBuffer));
                } catch (IOException e) {}
                break;
            }Now, if I use System.out.print(new String(readBuffer)); (notice it
    is just print) I get something like this:
    oardna
    autos
    baudra
    bootcmd
    bootdelay=2
    bootfilmips.ari
    Nice and pretty. But if I use *System.out.println(new
    String(readBuffer));* , which as I understand it is what the device is
    sending me, I will get the following output:
    boardna
    me=Muscat
    autos
    tart=yes
    baudra
    de=9600
    bootcmd=boot ap
    boot
    lay=2
    bootfile=
    mips.ari
    Any ideas on how I can get the actual output to look like the first
    example? That way I can verify the correct information is input for
    error checking.
    Edited by: ElCid on Mar 28, 2008 2:48 PM

  • Problem in reading/writing byte array in Access database! PLEASE HELP!!

    Hi,
    I want to store a signature, which is in form of a byte array, in OLE Object field in MS Access database. I want then to retrieve this signature and verify it. The problem is that the retrieved byte array is not identical to the stored (original) one, and therefore, verifying the signature fails! Any help would be much appreciated as I can't proceed in my project without solving this problem. Here is the code to do the above mentioned functionality:
    //This part stores the signature (VT) in the table TTPTrans
    try
    { con = connect();
    ps = con.prepareStatement("UPDATE TTPTrans SET VT = ?, SigVT = ? WHERE TransID = ?");
    ps.setBinaryStream(1, new ByteArrayInputStream(vt), vt.length);
    ps.setBinaryStream(2, new ByteArrayInputStream(sigvt), sigvt.length);
    ps.setString(3, tID);
    ps.executeUpdate();
    ps.close();
    con.close();
    catch (Exception e)
    {  System.err.println(e.getMessage());
    e.printStackTrace();
    //This part retrive the signature from the table in the byte array o1:
    ResultSet result;
    byte[] o1 = null;
    byte[] o2 = null;
    try
    { con = connect();
    Statement statement = con.createStatement();
    result = statement.executeQuery("SELECT VT, SigVT" +
    " FROM TTPTrans" +
    " WHERE TransID = " + "'" +
    transID + "'");
    while (result.next()) {
    o1 = result.getBytes("VT");
    o2 = result.getBytes("SigVT");
    statement.close();
    con.close();
    catch(Exception e)
    { System.err.println(e.getMessage());
    e.printStackTrace();
    }

    In the following code, I use a ASN1SDSSSignature class, which is a subclass that I created from the Siganture class, to create and verify an SDSS signature. The ASN1SDSSSignature has two ASN1Integer class variables:
    signcryption = token.getSigncryption();
    sig.initVerify(ttpCert);
    sig.update(receivedVT);
    boolean verified = sig.verify(receivedSigVT);
    if(!verified)
    System.err.println("TTP signatire on received token invalid. ");
    notify()
    return;
    Where receivedVT and receivedSigVT are the byte arrays retrieved from th database. The following exception is thrown when I run the application:
    ASN1 type mismatch!
    Expected: codec.asn1.ASN1Integer
    In: ASN1SDSSSignature
    At index 0
    Got tag: 4 and Class: 0
    I hope this would clarify the situation and thanks in advance for any comments you may post.

  • Problem when open new window...

    Hi,
    I have a flash website and one problem with it.
    When I push on a button, it has to open new window.
    thumb1.onPress = function(){
    getURL("
    http://...............as.html",
    "_blank");
    But I want that the opened window will be no resizable, no
    location, no menubar, no scrollbar, no status, no toolbar, no
    fullscreen. Can actionscript do this?

    Hi, Motiejuss!
    You can use the getURL to call a JS function.
    Just like
    getURL("javascript:window.open('
    http://...as.htm', 'foo', 'width=400
    height=400');");
    But the best is to use ExternalInterface, in Flash 8.
    Bye,
    CaioToOn!

  • Problem when Reading Multiple values from Arduino to Vb

    Hi Mates,
    I am getting 4 values from Arduino using Serial.Println statement 4 times. How do I need to receive these values to 4 different variables in VB without using any buttons. We have to serial data received as per my knowledge.
    I've written the following code in VB.
    Imports System
    Imports System.ComponentModel
    Imports System.Threading
    Imports System.IO.Ports
    Public Class Form1
        Dim myPort As Array  'COM Ports detected on the system will be stored here
        Delegate Sub SetTextCallback(ByVal [text] As String) 'Added to prevent threading errors during receiveing of data
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            SerialPort1.PortName = "COM5"         'Set SerialPort1 to the selected COM port at startup
            SerialPort1.BaudRate = 9600         'Set Baud rate to the selected value on
            SerialPort1.Open()
            'Timer1.Start()
        End Sub
        Private Sub SerialPort1_DataReceived(ByVal sender As Object, ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) Handles SerialPort1.DataReceived
            ReceivedText(SerialPort1.ReadLine())    'Automatically called every time a data is received at the serialPort
        End Sub
        Private Sub ReceivedText(ByVal [text] As String)
            'compares the ID of the creating Thread to the ID of the calling Thread
            If Me.rtbReceived.InvokeRequired Then
                Dim x As New SetTextCallback(AddressOf ReceivedText)
                Me.Invoke(x, New Object() {(text)})
            Else
                Me.rtbReceived.Text &= [text]
            End If
        End Sub
    End Class
    How do I need to differentiate the values in ReceivedText function and How can I display those values in 4 text boxes. I am able to display all the values in rtbReceived text box as 100200300400100200300400... So on
    Assume values from Arduino are 100, 200, 300 & 400
    Your suggestions would be more helpful to complete my project, Thanks in Advance
    Thanks,
    Santhosh

    How do I need to differentiate the values in ReceivedText function and How can I display those values in 4 text boxes. I am able to display all the values in rtbReceived text box as 100200300400100200300400... So on
    Assume values from Arduino are 100, 200, 300 & 400
    Based on the example you have provided you would simply use the String.Substring function to break the string apart ot every 4 characters.
    https://msdn.microsoft.com/en-us/library/aka44szs%28v=vs.110%29.aspx
    You could do that in a loop that changes the starting character position from 0 in an increment of 4.
    However I suspect that won't work properly, either because there are characters that you are not revealing as a result of the way that you are display your results, or because your data gets out of sync. 
    If your device sends synchronizing characters (such as an end-of-record byte, or perhaps just a CrLf) then the correct process is to append (not overwite) the text you receive.  Use a string, not a text box text property, for this buffer. Then you need
    to break apart this buffer by scanning forward until you find a complete message - a record identifier and enough (12?) following characters to create a full sentence.  Then break it apart using substrings.
    If your device data stream does not include something that marks the beginning or end of a complete transmission then you can still try breaking it apart every four characters, and see how reliable it is.

  • Help!!! Problem when uploading new ipod touch software

    Hi, really hoping someone can help!
    I connected my ipod to itunes and it asked me if i wanted to download new software for ipod touch so i did, then when it finished downloading it automatically started updating my ipod but before it finished i got an error message saying something like could not upload new software on ipod. i clicked ok and my ipod disappeared from the display list on itunes
    now my ipod isn't showing in itunes despite being connected via USB and it won't do anything, i just have a screen with a picture of a usb and an arrow pointing to the itunes icon.
    i have absolutely no idea what to do now, please help!

    Try another pc,The latest updades 3.3 did a lot of damage to my ipod simmilar to yours.I connected it to another pc then did a restore then went back to the original pc where my music is,be weary of that update.good luck.

  • How do I resolve this SHARING PROBLEM when adding new members.

    Whenever I try to change a sharers status or try to add new sharing members it prevents my existing co-authors from editing.  They can log in and they are still shown as Co-Authors, but they can't edit.  The only way to resolve this is to delete all members and start from scratch by adding them again, sending notification, and having them respond again.  Am I going to have to do this every time?

    Your hard drive has failed. All your data is almost certainly lost. You must replace your hard drive and re-install Windows.

  • Having problems when adding new Curency value field + currency field.

    I need to add a new Currency field (CURR, length 15, 2 decimal places) plus the Currency field itself to a view. 
    I'm really struggerling. I have looked at the existing SAP fields in the Component workbench and I have to admit I can not see how a field is linked/related to the currency itself. Is this link established purlely at the disctionary level?.
    Has anyone added their own Z field value  and Z currency field before. I can create both fields and display them, but what I can not work out is how I related them within the component workbench, or is this done from the dictionary?.
    Any help would be greatly appreciated.
    I should have been able to look at an existing SAP example and work out how it's done, but so far I can not see/determine how this is achieved, even though someone has mentioned that it's controlled via the GET_I_field method. Looking at this method I was expecting to see some mention of both the Currency value field and the Currency field. But as I don't see these confusion reigns.
    Jason

    That's correct, but am I right in thinking that you can't actually create the currency key field itself?.
    I am aware that currency value fields can be created which reference a currency key field, but can see nothing that allows me to create a currency key field to be referenced.
    I hope that makes sense.
    Also, I have amended the structure, changing my value fields from Decimal 15,2 to Currency 15,2  and have created a new currency key field in the structure and referenced this from the Currency value field.
    Witin the Component/view/context node I can see this new currency key field, but it appears as STRUCT.fieldlabel whereas my currency value field appears in the context node as EXT.fieldlabel, because it was created in the AET.
    My problem is that when attempting to add the currency key field onto the screen I don't have it to select from within the list of structures/attributes. All the others attributes in the context node seem to be there, except the new currency key field/attribute.
    The attribute has a SET_fieldlabel, GET_fieldlabel, GET_M_Fieldlabel and a GET_I_Fieldlabel, which I believe is all that should be required.
    Does anyone know what my problem could be?.
    Jason

  • Starting problem when using new domain

    Hi all,
    I just start trying wl6.0. My problem described as belows:
    I start the default domain 'myDomain'and that created a new domain,
    say 'testDomain' using the admin console. Then, I stop 'myDomain'
    and start the 'testDomain'. The following error occured, it saying
    that the file 'fileRelam.properties' is not present. Then i try
    copy the file 'fileRelam.properties' from myDomain to testDomain
    but still not work, it said autheication error. Do any one know
    how to solve my problem?
    Thanks.
    <2001/3/8 &#19978;&#21320;10&#26178;13&#20998;53&#31186;> <Emergency>
    <Server> <Unable to initialize the server: 'Fatal initialization
    excep
    tion Throwable: java.lang.IllegalAccessError: weblogic.security.acl.internal.FileRealmException:
    Source file not found: .\config\testDomain\fileRealm.properties
    - with nested exception:
    [java.io.FileNotFoundException: .\config\testDomain\fileRealm.properties
    (The system cannot find the file specified)]
    java.lang.IllegalAccessError: weblogic.security.acl.internal.FileRealmException:
    Source file not found: .\config\testDomain\fileRealm.properties
    - with nested exception:
    [java.io.FileNotFoundException: .\config\testDomain\fileRealm.properties
    (The system cannot find the file specified)]
    at weblogic.security.acl.Realm.getRealm(Realm.java:91)
    at weblogic.security.acl.Realm.getRealm(Realm.java:62)
    at weblogic.security.SecurityService.initializeRealm(SecurityService.java:258)
    at weblogic.security.SecurityService.initialize(SecurityService.java:123)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:343)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:169)
    at weblogic.Server.main(Server.java:35)'>

    Problem solved! Thanks all.

  • Problem when creating new resource in CMSXDB

    We installed the CMSXDB sample succesfully.
    We can create new users, create new folders; but when adding a documnt (resource) to a folder we get following error.
    For an external document:
    oracle.otnsamples.cmsxdb.exception.CMSAccessException: IOException in FileUploadUitlsjava.io.IOException: java.sql.SQLException: Invalid argument(s) in call
         at oracle.otnsamples.cmsxdb.useraction.FileUploadUtils.(FileUploadUtils.java:89)
         at oracle.otnsamples.cmsxdb.useraction.DataUtils.resource(DataUtils.java:885)
         at NewResource.jspService(_NewResource.java:73)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    If we try the other option (creation on the fly); we get following error:
    oracle.otnsamples.cmsxdb.exception.CMSAccessException: SQLException in createresource in resource method of DataUtils : java.sql.SQLException: SQLException in getCLOB : java.sql.SQLException: Invalid argument(s) in call
         at oracle.otnsamples.cmsxdb.useraction.DataUtils.resource(DataUtils.java:1109)
         at NewResource.jspService(_NewResource.java:73)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) ...
    Do you have any idea what can be the cause for this error?

    Hi Mark,
    The details of the properties that you have to set in Connection.properties file
    List of properties to be altered (Mandatory)
    DBWebURL=http://incq234a.idc.oracle.com:8080
    The HTTP url where the xdb servlet engine is running
    Format : http://<hostname_where_db_is_installed>:8080
    siteRootPath=/tmp/testsite
    The absolute path under which the files will be generated, once a file is sent for externalization and approved by cmsadmin.
    The file will be generated under ConnParams.siteRoot/<resource_path>.<content_type>
    example: /tmp/testsite/cmshome/news/headlines.html
    List of properties to be altered( Optional )
    [ we recommend that the default values be used and these properties not be altered ]
    DataSourceName=jdbc/CmsdbDS
    Name of the datasource, that was entered in J2EE_HOME/config/data-sources.xml
    DBUsername=cmsadmin
    DBPassword=cmsadmin
    [ if any of the below properties are modified, then the corresponding changes have to done in xdbconfig.xml ]
    CMSServletContextRoot=/OTNCMSServlet
    The context root where the OTNCMSServlet can be accessed. It will be appended with the DBWebURL.i.e
    http://localhost:8080/OTNCMSServlet
    Once the servlet is deployed to XDB and the xdbconfig.xml file updated with the servlet entry. The Servlet can be accessed from the above URL
    TransServletContextRoot =/transformservlet
    The context root where the TransformServlet can be accessed. It will be appended with the DBWebURL.i.e
    http://localhost:8080/transformservlet
    SearchServletContextRoot =/searchservlet
    The context root where the SearchServlet can be accessed. It will be appended with the DBWebURL.i.e
    http://localhost:8080/searchservlet
    We are looking into the resource creation issue, pls update us on wheather you are using the right values for these properties. If you were using any incorrect property values, update it and try deploying and running the app again.
    Regards
    Elango.

  • Problems when reading Payroll with class CL_HRPAY99_PRR_4_PNP_REPS.

    I'm triyng to use the above class to read Payroll results.
    I'm using the code as advised, on note 699276.
    However, i'm getting an "Read Error", when executing method GET_PERNR_PAYR_RESULTS_ALLIN1.
    After some debugging, i discovered that in method Read_from_buffer (class Cl_hr_pay_buffer), the system does a direct reading to table PCL2, in search for the cluster entry key. The thing is, that instead of looking for CLUSTERID 'RP' (as it's stated on table T500L, for our MOLGA), the system look for CLUSTERID 'RX', because that value is hard-code on the CONSTRUCTOR method of class CL_HR_PAY_RESULT_99.
    As anyone been thru this kind of problem? Is this some kind of class or method bug?
    Thanks in advance for your cooperation.
    Sincerely,
    Hugo Ferreira
    PS - Here's the code of the program, so far:
    data: go_prr type ref to cl_hrpay99_prr_4_pnp_reps,
          gt_pernr_pr type H99_HR_PAY_RESULT_TAB,
          go_pernr_pr type ref to CL_HR_PAY_RESULT_PT.
    field-symbols <pernr_pr> type ref to CL_HR_PAY_RESULT.
    start-of-selection.
      call method CL_HRPAY99_PRR_4_PNP_REPS=>GET_INSTANCE
        EXPORTING
          IM_PN_BEGDA             = pn-begda
          IM_PN_ENDDA             = pn-endda
          IM_MOLGA                = '19'
          IM_ADD_RETROES_TO_RGDIR = 'X'
        IMPORTING
          ex_prr                  = go_prr
        EXCEPTIONS
          INVALID_ENTRIES         = 1.
    get pernr.
      call method go_prr->GET_PERNR_PAYR_RESULTS_ALLIN1
        EXPORTING
          im_pernr                      = pernr-pernr
        IMPORTING
          EX_PERNR_PAYROLL_RESULTS      = gt_pernr_pr
        EXCEPTIONS
          COUNTRY_VERSION_NOT_AVAILABLE = 1
          NO_AUTHORIZATION              = 2
          NO_ENTRIES_FOUND              = 3
          READ_ERROr                    = 4.
      loop at gt_pernr_pr assigning <pernr_pr>.
        go_pernr_pr ?= <pernr_pr>.
      endloop.

    Hi,
    I have to do the same thing. May I know your approach?
    This is what I thought..
    I can create a custom method in the copied class and change the clusted id and molga and replace the CONSTUCTOR method call in our custom payroll driver program.
    But I cannot see this method anywhere in our payroll driver program when I hit the Where Used List.
    I am not sure how to proceed.
    Please suggest.

  • Problem when making new connection with user "sys"

    Hi, I'm having trouble on making new connection with user sys against local 10g installation, the password is correct and I've tried making new connection with other
    users which is fine.
    when I click "test" or "connect", the error msg is strange like this:
    "ORA-01017: invalid username/password; logon denied"
    can anybody help.
    Thx.

    Have you used the "Role" drop-down to "SYSDBA"? - if not, you get the ORA-01017 error.

Maybe you are looking for

  • MacBook and Mac mini togheter?

    Hi everyone... I'm the proud owner of a MacBook but I'm studying Computer Engeneering and my MacBook is becoming slower and slower.. So my question is if I'm able to use Mac mini conected to my MacBook using it as a screen. Thanks for your answer!!

  • Automatic reset of Quick Poll

    Hi you all! We are going to implement the Quick Poll iView in our local Portal as a tool to decide where to go for lunch. I know, not the most exciting use for it, but it will come in handy for us since we are located in different part of our town. A

  • Performance Tuning for ECC 6.0

    Hi All,   I have an ECC 6.0EP 7.0(ABAPJAVA). My system is very slow. I have Oracle 10.2.0.1.   Can you please guide me how to do these steps in the sytem 1) Reorganization should be done at least for the top 10 huge tables and their indexes 2) Unacce

  • NT_STATUS_ACCESS_DENIED and NT_STATUS_NO_MEMORY print problem fix

    Just like many on these forums, I tried the SAMBA "smb://" hints given on other thread, but had no real success. Just as many newbbies, I was very frustrated that I could not print from my Mini Mac to my windows XP computer that was serving as my pri

  • Dbrefresh procedure

    hi experts, i have to perform DB REFRESH in my project.i will b gr8ful if any one can tell me the procedure any issues during db refresh. database is oracle.in which cases we have to perform db refresh. suitable answers will be rewarded. thanks n reg