Add anotehr subscriber ? Or dod I need to rebuild original queue table

11.2 rdbms
QUEUE to DBLINK PROPAGATION.
I want to add another queue in remote side to read same messages from source.
--------------------------------------> TARGETDB (QUEUE1)
Source DB Message -------------------------------
--------------------------------------> TARGETDB (QUEUE2)
So any message thats enqueued in source is dequeued by both queues in destination ..... no impact on each other.
any links ?
Edited by: 957751 on Sep 7, 2012 12:52 PM

Thanks
So the source and destination queues are already multi consumer.
So if I add another subscriber to the source queue - I dont need any code changed whilst enqueueing ?
Just need to have the subscriber at the remote side dequeue. ?
Also when I set it up from scratch - basically
Add multiconsumer queue at source
add two subscribers
enqueue a message ......
I didnt see any messages loaded in the AQ$ table under READY ....... although pl/sql call was successful
thx

Similar Messages

  • CCM 5.1.1 Clustering: Add a subscriber

    Hi,
    I'm trying to add a Subscriber in a 5.1 (b) fresh installation.
    I've not add any upgrade. I've added the new server on Publisher "Add new server" and followed all installation tasks (Not first node, DNS, ecc).
    Installation goes without errors but when i check on "Cisco Unified OS Administration- Cluster" i find the second server acting as Publisher.
    What's wrong? Next steps? Any idea??
    Please Help, thank you,
    Federico

    If the 2nd server is acting as a Publisher, that means both the servers are now a part of their own cluster and the only way around it is to rebuild the 2nd server and make it join the cluster. Also, if you want to know what went wrong, please attach the install log, using that we should be able to find out what happened during the install. To download this file, you can do a "file get install install.log" and download it to the SFTP Server. Else, use RTMT, remote broswer and download the file to your machine.

  • Will you replace the add-on "CaptureFox". I really need it for my work. Thanks

    Will you replace the add-on "CaptureFox".
    I really need it for my work.
    Thanks

    If it is on silent mode, then it will still vibrate when it rings.  Ring the phone.
    Other than this, what on earth do you expect anyone here to do really!!!

  • Do I need to rebuild my podcast?

    Hi, I am trying to post some weekly talks through a podcast using Blogger. I have been doing this for a little over a year now, and it has been working beautifully...up until a few weeks ago. Whether or not this has anything to do with transferring the feed to Google, I am not sure... I deleted a couple of the most recent episodes, thinking that would help, but it didn't.
    Here are the basics for what you need to know:
    a) The URL of the blog is http://www.umdnewman.blogspot.com
    b) There are two URLs of that site's feed: http://www.umdnewman.blogspot.com/feeds/posts/default
    and http://www.umdnewman.blogspot.com/feeds/posts/default?alt=rss
    c) The URL of the FeedBurner feed is http://feeds2.feedburner.com/homilies3
    d) I am using Blogger as my publishing software.
    For whatever reason, if I try to subscribe to my podcast through
    iTunes, it will let me subscribe, but my episodes will not come up. The new episodes appear and I can download the podcast episodes individually through the iTunes store, but if I try to refresh the podcast in the podcast library, it won't work. The little orange circle with two arrows appears next to the title of the podcast appears, but the arrows inside of it are not working, which tells me something isn't getting through. Eventually a little gray exclamation point shows up, and if I double click on it, it says "the network connection timed out."
    In Feedburner, I click on the "Homilies" feed, and I click on the "Troubleshootize" tab. I click on the FeedMedic, and it gives me a list of the errors that have occurred in the past few weeks. Right now it says everything
    is "ALL CLEAR", and yet I still can't get iTunes to work with it. Under "Actions you can take" it says to check the validity of the feed. I click on "Tips and Tools." If I click on the link for Originial Feed Validity, it says it's a valid Atom 1.0 feed, and then it says, "This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following
    recommendations." It lists off 5 different things that look like theymight need fixing, but I really don't want to touch the XML, and even if I could touch it I don't know how to, as I really don't want to screw things up entirely and make a mistake that cannot be reversed.
    So in that link it tells me the feed is valid, but if I click on
    FeedBurner Feed Validity, it tells me that:
    This feed does not validate. line 2, column 3169: Undefined item
    element: app:edited (65 occurrences) [help]
    .. spot.com'/></description><app:edited
    xmlns:app="http://ww ...
    ^
    And then it gives me three other things that could improve
    interoperability. Am I just supposed to go through and delete all of
    the times it says "app:edited"? If so, how do I do this?
    Or do I just need to rebuild the podcast altogether? I have looked through some of the posts and I have seen mentionings of "Podcast Maker". Is this something I should switch to?
    If someone could please assist me with this problem soon, I would
    really appreciate it! Thanks!
    Sincerely, Mary Hazuka

    A podcast feed is a plain text file containing various tags: you can see an example on my page at
    http://www.wilmut.org.uk/pc
    You will notice that each tag begins a new line. Your feed does not have any line returns between the tags. This doesn't matter to iTunes or other feed readers, but if you put the URL into FireFox and choose View>Page Source you get a single very long line, which you have to scroll through: it makes it almost impossible to read. Other readers may wrap the feed to the page, but it's still difficult to find anything. However if you are using Blogger to make your feed you probably don't have any method of controlling this.
    As to iTunes, I can't suggest anything. except that a reinstall won't affect your music library, which is stored separately from the application. You could try in the iTunes Forum.

  • Please I need some help with a table

    Hi All
    I need some help with a table.
    My table needs to hold prices that the user can update.
    Also has a total of the column.
    my question is if the user adds in a new price how can i pick up the value they have just entered and then add it to the total which will be the last row in the table?
    I have a loop that gets all the values of the column, so I can get the total but it is when the user adds in a new value that I need some help with.
    I have tried using but as I need to set the toal with something like total
        totalTable.setValueAt(total, totalTable.getRowCount()-1,1); I end up with an infinite loop.
    Can any one please advise on some way I can get this to work ?
    Thanks for reading
    Craig

    Hi there camickr
    thanks for the help the other day
    this is my full code....
    package printing;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.text.DecimalFormat;
    public class tablePanel
        extends JDialog  implements Printable {
      BorderLayout borderLayout1 = new BorderLayout();
      private boolean printing = false;
      private Dialog1 dialog;
      JPanel jPanel = new JPanel();
      JTable table;
      JScrollPane scrollPane1 = new JScrollPane();
      DefaultTableModel model;
      private String[] columnNames = {
      private Object[][] data;
      private String selectTotal;
      private double total;
      public tablePanel(Dialog1 dp) {
        dp = dialog;
        try {
          jbInit();
        catch (Exception exception) {
          exception.printStackTrace();
      public tablePanel() {
        try {
          jbInit();
        catch (Exception exception) {
          exception.printStackTrace();
      private void jbInit() throws Exception {
        jPanel.setLayout(borderLayout1);
        scrollPane1.setBounds(new Rectangle(260, 168, 0, 0));
        this.add(jPanel);
        jPanel.add(scrollPane1, java.awt.BorderLayout.CENTER);
        scrollPane1.getViewport().add(table);
        jPanel.setOpaque(true);
        newTable();
        addToModel();
        addRows();
        setTotal();
    public static void main(String[] args) {
      tablePanel tablePanel = new  tablePanel();
      tablePanel.pack();
      tablePanel.setVisible(true);
    public void setTotal() {
      total = 0;
      int i = table.getRowCount();
      for (i = 0; i < table.getRowCount(); i++) {
        String name = (String) table.getValueAt(i, 1);
        if (!"".equals(name)) {
          if (i != table.getRowCount() - 1) {
            double dt = Double.parseDouble(name);
            total = total + dt;
      String str = Double.toString(total);
      table.setValueAt(str, table.getRowCount() - 1, 1);
      super.repaint();
      public void newTable() {
        model = new DefaultTableModel(data, columnNames) {
        table = new JTable() {
          public Component prepareRenderer(TableCellRenderer renderer,
                                           int row, int col) {
            Component c = super.prepareRenderer(renderer, row, col);
            if (printing) {
              c.setBackground(getBackground());
            else {
              if (row % 2 == 1 && !isCellSelected(row, col)) {
                c.setBackground(getBackground());
              else {
                c.setBackground(new Color(227, 239, 250));
              if (isCellSelected(row, col)) {
                c.setBackground(new Color(190, 220, 250));
            return c;
        table.addMouseListener(new MouseAdapter() {
          public void mouseClicked(MouseEvent e) {
            if (e.getClickCount() == 2) {
            if (e.getClickCount() == 1) {
              if (table.getSelectedColumn() == 1) {
       table.setTableHeader(null);
        table.setModel(model);
        scrollPane1.getViewport().add(table);
        table.getColumnModel().getColumn(1).setCellRenderer(new TableRenderDollar());
      public void addToModel() {
        Object[] data = {
            "Price", "5800"};
        model.addRow(data);
      public void addRows() {
        int rows = 20;
        for (int i = 0; i < rows; i++) {
          Object[] data = {
          model.addRow(data);
      public void printOut() {
        PrinterJob pj = PrinterJob.getPrinterJob();
        pj.setPrintable(tablePanel.this);
        pj.printDialog();
        try {
          pj.print();
        catch (Exception PrintException) {}
      public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
        Graphics2D g2 = (Graphics2D) g;
        g2.setColor(Color.black);
        int fontHeight = g2.getFontMetrics().getHeight();
        int fontDesent = g2.getFontMetrics().getDescent();
        //leave room for page number
        double pageHeight = pageFormat.getImageableHeight() - fontHeight;
        double pageWidth =  pageFormat.getImageableWidth();
        double tableWidth = (double) table.getColumnModel().getTotalColumnWidth();
        double scale = 1;
        if (tableWidth >= pageWidth) {
          scale = pageWidth / tableWidth;
        double headerHeightOnPage = 16.0;
        //double headerHeightOnPage = table.getTableHeader().getHeight() * scale;
        //System.out.println("this is the hedder heigth   " + headerHeightOnPage);
        double tableWidthOnPage = tableWidth * scale;
        double oneRowHeight = (table.getRowHeight() +  table.getRowMargin()) * scale;
        int numRowsOnAPage = (int) ( (pageHeight - headerHeightOnPage) / oneRowHeight);
        double pageHeightForTable = oneRowHeight *numRowsOnAPage;
        int totalNumPages = (int) Math.ceil( ( (double) table.getRowCount()) / numRowsOnAPage);
        if (pageIndex >= totalNumPages) {
          return NO_SUCH_PAGE;
        g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
    //bottom center
        g2.drawString("Page: " + (pageIndex + 1 + " of " + totalNumPages),  (int) pageWidth / 2 - 35, (int) (pageHeight + fontHeight - fontDesent));
        g2.translate(0f, headerHeightOnPage);
        g2.translate(0f, -pageIndex * pageHeightForTable);
        //If this piece of the table is smaller
        //than the size available,
        //clip to the appropriate bounds.
        if (pageIndex + 1 == totalNumPages) {
          int lastRowPrinted =
              numRowsOnAPage * pageIndex;
          int numRowsLeft =
              table.getRowCount()
              - lastRowPrinted;
          g2.setClip(0,
                     (int) (pageHeightForTable * pageIndex),
                     (int) Math.ceil(tableWidthOnPage),
                     (int) Math.ceil(oneRowHeight *
                                     numRowsLeft));
        //else clip to the entire area available.
        else {
          g2.setClip(0,
                     (int) (pageHeightForTable * pageIndex),
                     (int) Math.ceil(tableWidthOnPage),
                     (int) Math.ceil(pageHeightForTable));
        g2.scale(scale, scale);
        printing = true;
        try {
        table.paint(g2);
        finally {
          printing = false;
        //tableView.paint(g2);
        g2.scale(1 / scale, 1 / scale);
        g2.translate(0f, pageIndex * pageHeightForTable);
        g2.translate(0f, -headerHeightOnPage);
        g2.setClip(0, 0,
                   (int) Math.ceil(tableWidthOnPage),
                   (int) Math.ceil(headerHeightOnPage));
        g2.scale(scale, scale);
        //table.getTableHeader().paint(g2);
        //paint header at top
        return Printable.PAGE_EXISTS;
    class TableRenderDollar extends DefaultTableCellRenderer{
        public Component getTableCellRendererComponent(
          JTable table,
          Object value,
          boolean isSelected,
          boolean isFocused,
          int row, int column) {
            setHorizontalAlignment(SwingConstants.RIGHT);
          Component component = super.getTableCellRendererComponent(
            table,
            value,
            isSelected,
            isFocused,
            row,
            column);
            if( value == null || value .equals("")){
              ( (JLabel) component).setText("");
            }else{
              double number = 0.0;
              number = new Double(value.toString()).doubleValue();
              DecimalFormat df = new DecimalFormat(",##0.00");
              ( (JLabel) component).setText(df.format(number));
          return component;
    }

  • Library needs daily rebuilding?

    My Library started acting funny a few weeks ago, and rebuilding and trashing the preferences seemed to fix the weirdness.
    Now, adding images to projects, making smart albums and changing ratings (pretty much all I use Aperture for) doesn't work consistently. Quitting or Force Quitting will bring the particular image or album back, but eventually I need to rebuild the library to make Aperture work properly.
    If I use Aperture more than a few hours, I need to rebuild. Other Apple programs run fine (Mail, iTunes, Safari) and I've no problem with the other applications I use (PS and Illustrator CS3.)
    Any thoughts?
    55,000 images, 25 GB Library size, 10.4.11, Aperture 2.1, 16 GB RAM, Mac Pro 2.66, Library is kept on a 6TB external RAID.

    One more thing to add - I ran the "Consistency Check" on the library a few weeks ago too. It seemed to crash Aperture the first few times I tried it; I would Force Quit after a couple of hours. I wasn't sure, so I let it run over the weekend, from Friday night to Monday morning, and it never made any progress.

  • VBA needs to pull from multiple tables, how to code for best efficiency?

    I have one main table, and three other tables that exist in a one to many relationship off of the main table.
    I need data from all 3 tables for my calculation. I'll iteratively run through the recordsets of each of these tables for the record on the main table, to perform my calculation.
    Now I need to run this calculation for each record on the main table. I see two options:
    1. Query the three tables for relevant records, for each individual record on the master table. I suspect this approach would be computationally inefficient.
    2. Create additional logic within my calculation to limit the recordset movement to just the record at hand. I can no longer use end of field, or move first type properties/methods, so this will add a good bit of complexity to already complex code.
    I'll need to run this monthly for approx 3000-5000 records.

    Since you can't include multiple independent 1-many relationships in a single query, I only see two choices.
    You can open a recordset for each of the four tables sorted by the main table's primary key. Use an outer loop to move through the main table row by row. Within that loop you loop on each of the child tables using the condition While child.Fields("FK")
    = parent.Fields("PK").
    Another approach is to define a querydef for each of the child tables including a parameter for the foreign key value. Then within the outer loop you assign the parameter and open a recordset from each of the child querydefs. You're still querying the
    database 3 times for each iteration of the parent table, but I think it saves some time to be able to reuse the querydef instead of creating a new one each time.
    I think either approach should be fast enough for 3-5,000 records done monthly.
    Paul

  • How can I add dots after text to fill the remaining space in a table cell?

    What is the most efficient way to add dots after text to fill the remaining space in a table cell? I know it is possible using tabs but is this possible using a table?

    You can put a tab inside a table cell using Option+Tab
    Then just set the right-aligned tab stop and the right edge of the table cell and add the leader.

  • Need some help with the Table Function Operator

    I'm on OWB 10gR2 for Sun/Solaris 10 going against some 10gR2 DB's...
    I've been searching up and down trying to figure out how to make OWB use a Table Function (TF) which will JOIN with another table; allowing a column of the joined table to be a parameter in to the TF. I can't seem to get it to work. I'm able to get this to work in regular SQL, though. Here's the setup:
    -- Source Table:
    DROP TABLE "ZZZ_ROOM_MASTER_EX";
    CREATE TABLE "ZZZ_ROOM_MASTER_EX"
    ( "ID" NUMBER(8,0),
    "ROOM_NUMBER" VARCHAR2(200),
    "FEATURES" VARCHAR2(4000)
    -- Example Data:
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (1,'Room 1',null);
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (2,'Room 2',null);
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (3,'Room 3','1,1;2,3;');
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (4,'Room 4','5,2;5,4;');
    Insert into ZZZ_ROOM_MASTER_EX (ID,ROOM_NUMBER,FEATURES) values (5,'Room 5',' ');
    -- Destination Table:
    DROP TABLE "ZZZ_ROOM_FEATURES_EX";
    CREATE TABLE "ZZZ_ROOM_FEATURES_EX"
    ( "ROOM_NUMBER" VARCHAR2(200),
    "FEATUREID" NUMBER(8,0),
    "QUANTITY" NUMBER(8,0)
    -- Types for output table:
    CREATE OR REPLACE TYPE FK_Row_EX AS OBJECT
    ID NUMBER(8,0),
    QUANTITY NUMBER(8,0)
    CREATE OR REPLACE TYPE FK_Table_EX AS TABLE OF FK_Row_EX;
    -- Package Dec:
    CREATE OR REPLACE
    PACKAGE ZZZ_SANDBOX_EX IS
    FUNCTION UNFK(inputString VARCHAR2) RETURN FK_Table_EX;
    END ZZZ_SANDBOX_EX;
    -- Package Body:
    CREATE OR REPLACE
    PACKAGE BODY ZZZ_SANDBOX_EX IS
    FUNCTION UNFK(inputString VARCHAR2) RETURN FK_Table_EX
    AS
    RETURN_VALUE FK_Table_EX := FK_Table_EX();
    i NUMBER(8,0) := 0;
    BEGIN
    -- TODO: Put some real code in here that will actually read the
    -- input string, parse it out, and put data in to RETURN_VALUE
    WHILE(i < 3) LOOP
    RETURN_VALUE.EXTEND;
    RETURN_VALUE(RETURN_VALUE.LAST) := FK_Row_EX(4, 5);
    i := i + 1;
    END LOOP;
    RETURN RETURN_VALUE;
    END UNFK;
    END ZZZ_SANDBOX_EX;
    I've got a source system built by lazy DBA's and app developers who decided to store foreign keys for many-to-many relationships as delimited structures in driving tables. I need to build a generic table function to parse this data and return it as an actual table. In my example code, I don't actually have the parsing part written yet (I need to see how many different formats the source system uses first) so I just threw in some stub code to generate a few rows of 4's and 5's to return.
    I can get the data from my source table to my destination table using the following SQL statement:
    -- from source table joined with table function
    INSERT INTO ZZZ_ROOM_FEATURES_EX(
    ROOM_NUMBER,
    FEATUREID,
    QUANTITY)
    SELECT
    ZZZ_ROOM_MASTER_EX.ROOM_NUMBER,
    UNFK.ID,
    UNFK.QUANTITY
    FROM
    ZZZ_ROOM_MASTER_EX,
    TABLE(ZZZ_SANDBOX_EX.UNFK(ZZZ_ROOM_MASTER_EX.FEATURES)) UNFK
    Now, the big question is--how do I do this from OWB? I've tried several different variations of my function and settings in OWB to see if I can build a single SELECT statement which joins a regular table with a table function--but none of them seem to work, I end up getting SQL generated that won't compile because it doesn't see the source table right:
    INSERT
    /*+ APPEND PARALLEL("ZZZ_ROOM_FEATURES_EX") */
    INTO
    "ZZZ_ROOM_FEATURES_EX"
    ("ROOM_NUMBER",
    "FEATUREID",
    "QUANTITY")
    (SELECT
    "ZZZ_ROOM_MASTER_EX"."ROOM_NUMBER" "ROOM_NUMBER",
    "INGRP2"."ID" "ID_1",
    "INGRP2"."QUANTITY" "QUANTITY"
    FROM
    (SELECT
    "UNFK"."ID" "ID",
    "UNFK"."QUANTITY" "QUANTITY"
    FROM
    TABLE ( "ZZZ_SANDBOX_EX"."UNFK2" ("ZZZ_ROOM_MASTER_EX"."FEATURES")) "UNFK") "INGRP2",
    "ZZZ_ROOM_MASTER_EX" "ZZZ_ROOM_MASTER_EX"
    As you can see, it's trying to create a sub-query in the FROM clause--causing it to just ask for "ZZZ_ROOM_MASTER_EX"."FEATURES" as an input--which isn't available because it's outside of the sub-query!
    Is this some kind of bug with the code generator or am I doing something seriously wrong here? Any help will be greatly appreciated!

    Hello Everybody!
    Thank you for all your response!
    I had changes this work area into Internal table and changed the select query. PLease let me know if this causes any performance issues?
    I had created a Z table with the following fields :
    ZADS :
    MANDT
    VKORG
    ABGRU.
    I had written a select query as below :
    I had removed the select single and insted of using the Structure it_rej, I had changed it into Internal table 
    select vkorg abgru from ZADS into it_rej.
    Earlier :
    IT_REJ is a Work area:
    DATA : BEGIN OF IT_REJ,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    Now :
    DATA : BEGIN OF IT_REJ occurs 0,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    I guess this will fix the issue correct?
    PLease suggest!
    Regards,
    Developer.

  • I NEED TO KNOW ABOUT DRIVING TABLE...PLEASE

    Well, My name is Adan. I am from Panama.. my english is not
    good. But I'll try. I need to know about driving tables and how
    have to choose a driving table and how optimizer proccess an sql
    statment.
    Example:
    Employees have (1,000,000 rows),
    dept have (100 rows)
    Category have (100 rows)...
    I need retrieved all employees with category and dept name for
    those employee with salary > 100000
    Well, What is the driving table and where i have to put this one
    in the from clause ? What about order in the where predicate...
    First ?
    Select E.name, C.category, D.Departement
    from Employees e, dept d, category c
    where
    and d.cat = c.cat
    and e.deptno = d.deptno
    and e.salary > 100000
    Last ?
    Select E.name,C.category, D.Departement
    from dept d, category c ,Employees e
    where
    and d.cat = c.cat
    and e.deptno = d.deptno
    and e.salary > 100000
    I apreciate your help....Thanks and sorry for my english....
    Bye..

    Adam,
    If you set your optimizer = choose and analyze the tables and
    indexes to generate statistics, then your system can use the
    Cost Based Optimizer (CBO) and, like David said, it will
    automatically choose the best access path, and the order of
    things will not matter.
    If your optimizer is not set to choose or if there are no
    statistics, then it will use the Rule Based Optimizer (RBO), in
    which case, the only thing that matters is the order of the
    tables in the from clause. When using RBO, the driving table
    should be at the end of the from clause, in the right-most
    position. The driving table is the one such that, after the
    restrictions have been applied, returns the smallest number of
    rows. You would have to compare the number of rows in the
    employees table where salary > 100000 to the number of rows in
    the dept table (100) and the number of rows in the category
    table (100).
    In RBO, if there are more than 100 rows in the employees table
    where salary > 100000, then your from clause would be:
    FROM employees e, dept d, category c
    In RBO, if there are less than 100 rows in the employees table
    where salary > 100000, then your from clause would be:
    FROM category c, dept d, employees e
    This is all that applies to the example you have given, however
    there are other things that can apply in other situations. For
    example, if there is an outer join to a table, the table that
    has the (+) cannot be used as the driving table.
    Barbara

  • Need to rebuild Outlook 2011 for mac identity for exporting data file.

    I was exporting outlook for mac data file (to import it into apple mail), and suddenly Outlook email client crashed and when I tried again it said that I need to rebuild the Outlook for mac database using rebuild utility. I took help from some professional technicians but it was a dead end. They said that my outlook for mac database was corrupt and they could not help me any further. I had years of emails in outlook for mac that I needed to move to apple mail as I was fed up of these frequently occuring outlook 2011 errors. Please if anyone could help me in this case then it will be very helpful.
    Thanks

    Outlook for mac stores archives its data in .olm format and it originally stores its mails in .OLK format. If everything has failed then you can seek help of a tool that can recover these .olk14 messages. One tool I know that is capable of doing so is http://www.outlookmacdatabaserecovery.com/.
    Look for the trial version first and see of it works and recovers you emails.

  • My computer crashed and I need to rebuild my site on a different computer

    My computer crashed and I need to rebuild my iweb site on another computer. What do I need to do?

    I take it that you didn't backup your domain.sites file?  If not, then on the Mac that you are re-building your site on, just open iWeb and start re-building.
    If you did, then attach the hard drive that you want to restore from to the Mac that you are using and restore the relevant domain.sites file to that computer and then double click it to open it and iWeb should open it.

  • HT1222 What if i should update to ios 7 coz i read on paper yesterday that you should wait coz you need to be in queue for download and there could be bug so that they can be resolved

    What if i should update to ios 7 coz i read on paper yesterday that you should wait coz you need to be in queue for download and there could be bug so that they can be resolved?

    do whatever you'd like to do.  No one's forcing you to update.

  • Need the file extensions database table name

    Hi,
    I need to know the Database table name for file extensions in WCC.
    Please check the image for reference .

    Hi 2790552
    Please look at file doc_config.htm in the location <middleware_home>/Oracle_ECM1/ucm/idc/resources/core/tables/doc_config.htm
    This is the file which helps in building the applet view.
    I do belive that revisions and documents table might be used for validation and other specific things, but thats more in the context of document processing and from component IBR at runtime. But administration sake, i thing it works from the these config files since database doesn't have any table to hold this info.

  • Keep getting error message that iphoto has detected inconsistencies and needs to rebuild

    while adding photos to library keep getting error message that iphoto has detected inconsistencies and needs to rebuild the library..how do I fix?

    By rebuilding your library.
    Back up your iPhoto library before you do that.
    If iPhoto is open, quit it.
    Hold down the Option and Command keys while you open iPhoto (click the iPhoto icon in the Dock).
    The Photo Library First Aid window opens.
    Click "Rebuild database" and click the "rebuild" button.
    If this does not solve the problem, see "option 2" in Terence Devlin's post here:
    Re: i keep getting the message iPhoto has detected inconsistencies in your library but after repairing it it just quits
    Regards
    Léonie

Maybe you are looking for

  • Custom Infotype - Using Table control in the screen.  IN OM

    Hi, I am having a requriement where in I need to create a custom infotype using table control in the screen. I have to create this in OM and I am using PPCI transaction to create the info type. I am able to create the infotype with fields but not tab

  • Moving a sequence of clips in timeline and they part ways ... why? Can I avoid it?

    Hello hello, Here is a timeline annoyance that is driving me nuts – are you guys experiencing this as well, and how do I avoid it? It seems like it might be something to do with how my secondary clips are connected to the main storyline, but it happe

  • Process Flows Transforms

    Hi, I'm trying to include a PL/SQL function into a process flow from the public transformations. Whenever I validate the process flow it reports the error "VLD-10019 ... Function needs a valid deployment location". But I can't find anywhere to define

  • Airport Extreme (5 Gen) suddenly very weak Wifi signal

    Hello, everyone.  I have a 5th generation Airport Extreme that was working fine until a few days ago.  My power had gone out, and since then I am getting a very weak Wifi signal.  The network still appears and connects on all of my devices.  However,

  • I have cs6 on my macbook but i want a new one.

    i have cs6 on my macbook but i want a new one, my cs6 is one use ony, but can i uninstall it off this macbook to put it on a new macbook pro??