Database Data Out Of Date

The site was upgraded from ZFD 3 to 4. The inventory scan was run overnight
but the data shown in the database is not the most up to date. There are str
files created in zenworks\inv\scandir. I've tried stopping and restaring
Zenworks on the server. Remote control , file transfer, diagnostics etc
works. What should I try now? Thanks for replies.

On Wed, 16 Aug 2006 10:27:12 GMT, [email protected] wrote:
> There are str
> files created in zenworks\inv\scandir.
Try enable debugging....
http://www.novell.com/documentation/...rts/zdprts.pdf
Marcus Breiden
If you are asked to email me information please change -- to - in my e-mail
address.
The content of this mail is my private and personal opinion.
http://www.edu-magic.net

Similar Messages

  • I wish to generate reports from the database an out put it but i need to enter a date from and to ina  html input box

    i wish to generate reports from the database an out put it
    but i need to enter a date from and to ina html input box
    in the input box a data of range will be input from a start
    to latest
    latest being the default as today's date.
    any help tips snipplets, concepts , turot=rails.
    thanks

    easycfm.com has tutorials for people who are brand new.
    If you don't know much about sql, I have heard good things
    about the book, Teach Yourself SQL in 10 Minutes by Ben
    Forta.

  • Database data corrupted upon retrieval?

    Hi All, this question regards an issue I'm having with the Database Connectivity Toolkit, 1.0.1.
    I'm retreiving a record (a bunch of records actually) from a Jet database and creating a 2-D table that SHOULD be sorted by time, as that is how the data has been collected.  In short runs the data is time-linear.
    However, more recent runs with longer data sets is returning data that is being reported in scattered out-of-sequence blocks.  I know, that's not very clear.
    I'm collected data points (from a 3-rd party hardware) that includes index #s, timestamps, etc for each data point.  They are saved in a Jet database.
    When I open that database with Access and review the records as a 2-D array, the data is sorted with respect to time.
    However, when I use the DB Toolkit to retrieve the same data, it looks exactly the same except it looks like somebody imported it into Excel, randomly selected a continguous block of rows, then cut-and-pasted the data elsewhere.   The shifted data blocks look random in both size and movement.
    Because all the data is there and not corrupted, I can fix the problem by doing an Excel 2-D data sort based on the timestamp, but I shouldn't have to do this, should I?  I'm aware that 'sorted' data is not neccessarily a condition of the database data, but Access seems to find it that way.  Perhaps there is an SQL command that will fix the sorting problem?  I know nothing about databases or SQL language.
    thanks,
    Matt

    Access, by default, probably sorts the data by using the key or, if there is no key defined, probably by the first column.
    If the table does not have a key then it is possible that Access is automatically displaying it sorted even though it isn't really sorted.
    Anyway, to sort in an SQL query, you use Order By. For example, "Select ColA, ColB, ColC From TableA Order By ColB".
    Try to take over the world!

  • How can I populate a pdf with database data?

    How can I populate a pdf that we have on our server with database data on our server?

    Actually, if you export it in the right format then you won't need a script
    at all.
    You can import data directly into fields from a plain-text file via Tools -
    Forms - More Form Options - Import Data...
    I believe the format is tab-delimited with the field names in the first row
    and their values in the second.

  • Using a second table in a Database Data Block ??

    In a Form, I have a Data Block which is a Database Data Block. The Items are associated with columns in a table.
    I want the items in this repeating block to show in a different order. To do this, I need to use a second table and say where table1.key = table2.key ....
    I keep getting problems at runtime with
    ORA-00918: column ambiguously defined
    I tried to qualify everywhere a column name is used. When I do show error it shows
    SELECT ROWID, ....
    And then the "column ambiguously defined".
    I do not have an item in my Form for ROWID. Maybe it is automatic. (This form DOES do update).
    Is it possible to use two tables in a Data Block like this?
    Thanks

    If you only need to order the records in the block, why not defining the "ORDER BY" clause in the block's property??
    Set the "ORDER BY" clause at design time from the property palette of the block or runtime with column of your choice.
    at runtime your can use:
    SET_BLOCK_PROPERTY('your_block', ORDER_BY, 'your_column');If you need to join to tables in one block read the [Block Based on Join|http://www.oracle.com/technology/products/forms/pdf/BlockOnAJoin.pdf] Documentation.
    Tony

  • Direct database data access without data level authorization check

    Hello,
    My customer raised issue about direct database data access. Due to the customeru2019s strong security policy, it shouldnu2019t be allowed.
    To prevent this kind of illegal data access, customer ask me to list up all the possibilities to display data without data level authorization check.
    The things in my mind are
    SQL Command Editor (for Oracle based system) : ORASPACE, DB02, ST04
    Query Based : SQVI (Quick Viewer), SQ01/SQ02/SQ03 (SAP Query)
    Data Browser : SE11, SE12, SE16, SE16N, SE17
    Table Maintenance : SM30
    Function Module : RFC_READ_TABLE
    Function Module : DB_EXECUTE_SQL (DML)
    Anyone knows anything which is not listed above?
    Thanks

    HI,
        Generally in production user's should not be given all these authorizations.
    Ram.

  • How can i query oracle database data to xml file with c++?

    I want query data to xml file directly in my c++ application .
    I know the oracle XSU provide interferce for query data to xml
    file directly.
    But XSU for oracle8i does not support c++.
    I do not know if XSU for oracle9i support c++.
    can you tell me?
    If i do not use XSU to finish my applicayion.
    what interface that oracle provide can help me do my work?
    thank you !

    BTW why do you want to migrate oracle database data to db2 database? Any specific project requirement like Parallel run with Oracle database (e.g data replication)? Or any other issues - Cost? Manageability? Availability? Business requirements?
    Do you need to do a day-to-day data transfer or it is for permanent migration?

  • Database data to nested xml structure

    Hi All,
    I need to convert the data in the oracle database to nested xml tree structure as below:
    Data in the database is in the following structure:
    1     branch1     13-JAN-11     a.txt
    1     branch1     25-JAN-11     b.txt
    1     branch1     25-JAN-11     c.txt
    1     branch2     20-JAN-11     d.txt
    2
    XML for the above data should be in the format:
    <Root>
    <Account_no value="1">
    <Desc value="branch1">
    <Date value="13-JAN-11">
    <Name value="a.txt"/>
    </Date>
    <Date value="25-JAN-11">
    <Name value="b.txt"/>
    <Name value="c.txt"/>
    </Date>
    </Desc>
    <Desc value="branch2">
    <Date value="20-JAN-11">
    <Name value="d.txt"/>
    </Date>
    </Desc>
    </Account_no>
    <Account_no value="2">
    </Account_no>
    </Root>
    I am able to get this kind of xml structure using java after storing the database data in a n-ary tree. But it takes more time to execute.
    Can this kind of same xml format be achieved using pl/sql programming?
    Please help me with your valuable insights.
    Thanks,
    Alagappan

    Hi,
    Please always mention your db version (select * from v$version).
    Here's one solution using SQL/XML functions :
    Sample data used :
    create table sample_data
      account_no  number,
      description varchar2(30),
      dt          date,
      name        varchar2(30)
    insert into sample_data values(1, 'branch1', to_date('13-JAN-11','DD-MON-RR'), 'a.txt');
    insert into sample_data values(1, 'branch1', to_date('25-JAN-11','DD-MON-RR'), 'b.txt');
    insert into sample_data values(1, 'branch1', to_date('25-JAN-11','DD-MON-RR'), 'c.txt');
    insert into sample_data values(1, 'branch2', to_date('20-JAN-11','DD-MON-RR'), 'd.txt');
    insert into sample_data values(2, 'branch3', to_date('20-JAN-11','DD-MON-RR'), 'e.txt');Query :
    SELECT xmlserialize(document
             xmlelement("Root",
               xmlagg(
                 xmlelement("Account_no", xmlattributes(account_no as "value"),
                   xmlagg(
                     xmlelement("Desc", xmlattributes(description as "value"), dt)
                     order by description
                 ) order by account_no
           as clob indent ) doc
    FROM (
      SELECT account_no, description,
             xmlagg(
               xmlelement("Date", xmlattributes(to_char(dt,'DD-MON-RR') as "value"), name)
               order by dt
             ) dt
      FROM (
        SELECT account_no, description, dt,
               xmlagg(
                 xmlelement("Name", xmlattributes(name as "value"))
                 order by name
               ) name
        FROM sample_data
        GROUP BY account_no, description, dt
      GROUP BY account_no, description
    GROUP BY account_no
    DOC
    <Root>
      <Account_no value="1">
        <Desc value="branch1">
          <Date value="13-JAN-11">
            <Name value="a.txt"/>
          </Date>
          <Date value="25-JAN-11">
            <Name value="b.txt"/>
            <Name value="c.txt"/>
          </Date>
        </Desc>
        <Desc value="branch2">
          <Date value="20-JAN-11">
            <Name value="d.txt"/>
          </Date>
        </Desc>
      </Account_no>
      <Account_no value="2">
        <Desc value="branch3">
          <Date value="20-JAN-11">
            <Name value="e.txt"/>
          </Date>
        </Desc>
      </Account_no>
    </Root>
    Here, I used XMLSerialize function with indent option to format the output (available starting with 11g).

  • How can i migrate oracle database  data to DB2 database

    Hi
    how can i migrate oracle database data to db2 database.
    can anyone provide me solution.

    BTW why do you want to migrate oracle database data to db2 database? Any specific project requirement like Parallel run with Oracle database (e.g data replication)? Or any other issues - Cost? Manageability? Availability? Business requirements?
    Do you need to do a day-to-day data transfer or it is for permanent migration?

  • Database Date in Reports

    Hello,
    I'm using Reports 6i.
    I want to have database date printed on the top right corner of the reports in the 'DD/MM/YYYY' format without using 'SELECT sysdate FROM dual' expression.
    Is there any alternate?
    The date that is inserted by selecting Date and Time from Insert Menu in picks up the cleints date and one cannot control a client PC's date.
    Please reply at [email protected]
    Thanx.
    HASAN.

    The reason for avoiding "SELECT SYSDATE FROM DUAL" is avert increment in network traffic...
    May be it has a negligible impact but I was trying to know if there is any alternate.
    Any way thanx for replying..
    HASAN.

  • How we get database data tohtml;select  in struts

    Hi,
    i need to populate the data from database to struts dropdown list(html:select). here i got error. tell the way to get database data to dropdown list.

    Guruji...you need to do something like this....!!!
    //In action or your controller class
    ArrayList billingGroupBeanList = getBillingGroupBeanList();
                   if (billingGroupBeanList.size() > 0) {
                        session.setAttribute("billingItemGroup", billingGroupBeanList);
         private ArrayList<LabelValueBean> getBillingGroupBeanList() {
              log.debug("Entering getBillingGroupBeanList...");
              BillingItemGroup billingItemGroup = null;
              ArrayList<LabelValueBean> billingItemGroupsBean = null;
              ArrayList billingItemGroupList = null;
              Iterator billingItemGroupsItr = null;
             try {          
                   billingItemGroupsBean = new ArrayList<LabelValueBean>();
                   billingItemGroupList =  billingItemManagerFacade.getBillingItemGroupList(); //getting the value from database
                   billingItemGroupsItr = billingItemGroupList.iterator();
                   while(billingItemGroupsItr.hasNext()) {
                        billingItemGroup = (BillingItemGroup)billingItemGroupsItr.next();
                        billingItemGroupsBean.add(new LabelValueBean(billingItemGroup.getGroupDesc(),
                                  new Integer(billingItemGroup.getBillingItemGroupId()).toString()));
              } catch (Exception ex) {
                log.error("\nError occured in action:getBillingGroupBeanList() method: "+ commonUtils.getStackTraceAsString(ex));
              log.debug("Exiting getBillingGroupBeanList...");
              return billingItemGroupsBean;
    And in your jsp
    <td width="25%" class="oddcellleft">
                                  <html:select property="billingItemGroupId">
                                       <html:options collection="billingItemGroup" property="value" labelProperty="label" />
                                  </html:select>
                             </td>where your form should have a getter/setter for billingItemGroupId....!!!!
    Let me know if you have any more doubt...!!!

  • How to insert multiple data to non database data block?

    Hi all,
    I'm new in using form builder. I have a question about insert multiple data to non database data block.
    I want to upload a csv file that content the attendance transaction of all of employees. If the employee in that
    file doesn't exist in that company,so I must record the employee number into non database data block.
    If I just upload one employee data, I can record it to that data block. But, if more than one, it didn't works.
    May you help me?
    Thanks..
    Tika

    you might need a NEXT_RECORD or CREATE_RECORD to go to the next reord in that block. It would be easier to help if we knew your code.

  • How can I change database date/time(Sysdate) without changing OS date

    Hello all,
    I have a need to change the sysdate on a database for testing purposes and need to set the database date to a future date(ex. 6/30/2009). I have 2 other instances on the same server so changing the OS date is not an option. I'm familiar with setting the sysdate to a fixed value, but doing so changes the date to a constant because I still need the time to elapse. I've searched the forum and cannot find a way to do this. Any help would be greatly appreciated.
    Thanks,

    Write your own sysdate function in pl/sql and create public synonym.
    Sorry, It doesn't work.
    create public synonym sysdate from my_sysdate
    ERROR at line 1:
    ORA-00995: missing or invalid synonym identifierBartek
    Edited by: brtk on 2009-05-14 15:54

  • SLD does not send database data to SMSY

    Hello,
    I have SLD with the system defined in it, but SMSY does not get the
    database data from SLD. I have checked note number 1013705 and the SP
    is applied. We are in SAPKITL430.
    The data syncronization (SAP_SLD_DATA_COLLECT job) is scheduled every
    12 hours.
    What else can I do?
    Regards,
    Ana.

    Hi Ana
    If the database information is available and correctly displayed in the SLD (please check this as requested by other contributors)- its possible the issue lies with LANDSCAPE FETCH job
    Are you geting any errors or terminations from the running of LANDSCAPE FETCH on the Solution Manager system
    Also what Database version is listed for this system - is it a recently certified DB version?
    Is it possible to maintain this database version manually in Solution Manager ? - this will determine whether you
    have the latest PPMS definitions in your Solution Manager system
    Is there any specific configuration with this database - is it part of a cluster installation or MCOD
    Best wishes
    Stuart

  • New "Loading Database Data into Endeca Information Discovery Applications" product enablement video available on YouTube!

    Hi All,
    The Endeca Information Discovery Information Curriculum Development team just added a new video, "Loading Database Data into Endeca Information Discovery Applications", to the Video  Feature Overviews section of the Oracle Endeca Information Discovery YouTube channel.
    The URL for the video is https://www.youtube.com/watch?v=ix6bGULuY1I&list=PLQl6jp6EE5H2K4JDic6bIPA7yZgbi1KAQ .
    Here’s a description of the video tutorial:
    The goal of this video tutorial is to enable you to configure Studio to use data from a JDBC data source and to create your own application in Studio.
    The target audience is Studio administrators who have to configure a JDBC data source in Studio’s Data Source Library.  As a secondary audience, business users will learn how to load data from a JDBC data source and create a discovery application in Studio.
    As always, if you have any ideas for additional videos, please let us know.
    Thanks!

    Hi All,
    The Endeca Information Discovery Information Curriculum Development team just added a new video, "Loading Database Data into Endeca Information Discovery Applications", to the Video  Feature Overviews section of the Oracle Endeca Information Discovery YouTube channel.
    The URL for the video is https://www.youtube.com/watch?v=ix6bGULuY1I&list=PLQl6jp6EE5H2K4JDic6bIPA7yZgbi1KAQ .
    Here’s a description of the video tutorial:
    The goal of this video tutorial is to enable you to configure Studio to use data from a JDBC data source and to create your own application in Studio.
    The target audience is Studio administrators who have to configure a JDBC data source in Studio’s Data Source Library.  As a secondary audience, business users will learn how to load data from a JDBC data source and create a discovery application in Studio.
    As always, if you have any ideas for additional videos, please let us know.
    Thanks!

  • Protect Oracle Database Data from Network Administrators

    first: is there any kind of solution to protect the access to the database from Domain Network admins?
    we know ( ora_dba ) users can login to the database with a blank password,
    second: is there any way to encrypt all the database data on all tables using any kind of products ?
    thanks in advance

    Protect Oracle Database Data from Network AdministratorsNetwork Data Encryption
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/11g/r2/prod/security/network_encrypt/ntwrkencrypt.htm
    second: is there any way to encrypt all the database data on all tables using any kind of products ?Transparent Data Encryption (TDE)

Maybe you are looking for

  • Companion Link

    I upgraded to DM 6 and Companion Link 4.0 to sycn my 9000 with Goldmine 7. I sync from GM to BB only. Here's what happened during sync: Cleared Appointments reappeared on my GM calendar. (this should be impossible); sync ran for over 3 hours (normall

  • How to Fetch Data into internal table column wise?

    The internal table contains huge set of data. Normally we fetch the data row wise using insert and select statements in work area. But, the requirement is on fetching the data column wise for each field from the database. So,can anyone help me on thi

  • How can I fix the "download error"? I couldn't download any app yet.

    I am trying to download the apps through Adobe Creative Cloud, but I did not succeeded, despite of following the instructions on tha tutorials at client support pages.

  • How can I check whether DIAdem a 32 or 64 bit version?

    Hi all, How can I check in a script whether DIAdem a 32 or 64 bit version? Is there any variable or function? I need this tcheck to avoid loading 32-Bit COM objects. Thanks gemu

  • InDesign upgrade from CS3

    I bought an InDesign upgrade from a major UK supplier with part number 65161132. Of the two InDesign upgrades available this is the expensive option. It is sold as the "InDesign CS3/CS4/CS5 upgrade." I bought it on Jan 1st and finally got it today as