All CX* Tables in Local Database are empty

Hello!
We have a one mobile client and at this time i see a problem that all custom tables in local database empty
In client folder outbox only one file "Marker". All server component work fine. SRF one for server and client.
I don't know for what reason it happened. Need help.
Thank you.

Hi,
you need configure the custom tables in dock object or you need include the base table in base table property in table object.
If your custom table related a base table, for example, a 1:M table, where a S_ table is a parent table and CX_ is a child table, and base table property in table object (tools) populated with S_ table, in this process, you don't need config the dock object.
After this steps, you need config Siebel anywhere to synchronize local database with new change (CX_ table is updated / created in local database).
If you don't want this method, you can generate and extract a new database. The CX_ tables are generated in local database, but when apply a new CX_ tables, colunm, or any config in tables, you need generate and extract a new local database again.
Regards.

Similar Messages

  • Replicate some tables from local database server to Remote database sever

    how can i replicate some tables from local database server(Oracle 8.1.7 on windows 2000 server) to a remote database server(Oracle 8.1.7 on Sun Solaris)
    whenever there is some insertion or updation on the table of base(main) database it should get updated to the remote database server
    or
    on time base for example: every 2 hours
    please help me!!!!

    It all depends on waht you are going to do with the data on the remote.
    if tehre are no updates there, creating a simple materialized view on the remote to pull it's data from the local should suffice.
    If there are updates on the remote, you will more than likely want to look into either Multi-master replication, or updatable materialized views.

  • How to truncate all the tables of my database

    hi guys
    I am using SQL Server 2012 , i need to delete all  the data present in my database .I mean i want to truncate all the tables in my database , so please suggest me the easiest way .

    If the tables are referenced by FK it will be failed.... 
    Basically you can use the below statetemnt
    DECLARE @TruncateStatement nvarchar(4000)
    DECLARE TruncateStatements CURSOR LOCAL FAST_FORWARD
    FOR
    SELECT
        N'TRUNCATE TABLE ' +
        QUOTENAME(TABLE_SCHEMA) +
        N'.' +
        QUOTENAME(TABLE_NAME)
    FROM
        INFORMATION_SCHEMA.TABLES
    WHERE
        TABLE_TYPE = 'BASE TABLE' AND
        OBJECTPROPERTY(OBJECT_ID(QUOTENAME(TABLE_SCHEMA) +
            N'.' +
            QUOTENAME(TABLE_NAME)), 'IsMSShipped') = 0
    OPEN TruncateStatements
    WHILE 1 = 1
    BEGIN
        FETCH NEXT FROM TruncateStatements INTO @TruncateStatement
        IF @@FETCH_STATUS <> 0 BREAK
        RAISERROR (@TruncateStatement, 0, 1) WITH NOWAIT
        EXEC(@TruncateStatement)
    END
    CLOSE TruncateStatements
    DEALLOCATE TruncateStatements
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Table changes in database are not captured in ODI model level

    Hi All,
    Can any one help me how to fix the bug in ODI.
    Table changes in database are not captured in ODI model level.
    Thanks in advance

    I created the interface which is running successfully.
    Now i did some changes in target table(data base level).
    I reversed the updated table in model section. Till here its ok
    The table which is updated in the model section is not automatically updated in the interface.
    I have to drop the existed datastore in the interface and and re do the entire process of bringing the updated datastore, mapping,etc..
    Please tell the any alternate way.
    Regards
    suresh

  • To drop all the tables in a database

    hi,
    I have 25000 tables in a database.I want ot delete all the tables and then i have to import the dump.For deleting all the tables what query has to be given.
    Thanks in advance,
    R.Ratheesh

    The code would be
    BEGIN
       FOR c IN (SELECT owner,
                        table_name
                   FROM all_tables
                  WHERE owner IN ('YOUR_OWNER1', 'YOUR_OWNER2_ETC'))
       LOOP
          EXECUTE IMMEDIATE    'drop table '
                            || c.owner
                            || '.'
                            || c.table_name
                            || ' cascade constraints';
       END LOOP;
    END;
    the user ,tablespaces ,datafiles has to be recreatedbut still dropping the user would be the simplest option
    you don't have to recreate tablespaces and datafiles for that.

  • HP 7280 all-in-one says ink cartridges are empty and will not print from PC, but it copies fine.

    Replaced 2 ink cartridges in hp 7280 but still says both cartridges are empty and will not print from PC, but it will copy fine.  When I try to print I get a error box that says "Ink cartridges empty - replace black and yellow ink cartridges to continue."  They are brand new - just bought them - expiration date Sep 2015.  Have tried rebooting and disconnecting and reconnecting everything.  Same error, but it still will do color copies fine - all cartridges are working.  Help?! 

    Hi tfmartin,
    I understand you have a Photosmart C7280 that you are unable to print to from your computer. I'm sorry to hear about this, but I will certainly do my best to assist you in resolving this issue.
    Before I can offer any suggestions I do need to know which version of Windows or Mac that you're using and how the printer is connected (wireless or USB). Once I have that information I should be able to help you better. In the meantime, if you're using Windows, please download and run the HP Print and Scan Doctor to see if it can assist with the issue at hand
    Hope to hear back from you soon! Have a great day
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • The data from a table of a database are not retrieved in ADF BC Application

    I have two separate ADF BC applications. Each application retrieve
    the data from the same scheme of a database. Both applications work
    well when I launch them under embedded OC4J. I have deployed
    these applications to a standalone OC4J. When I launch one application,
    the data from a database's table are retrieved. When I launch the other
    application, the data from a database's table are not retrieved. Why? Please,
    help me.

    Any error message ?
    Frank

  • Danger!Danger! Downloaded Firefox4 today and I lost all of my bookmarks. Bookmarks are EMPTY not just hidden!

    What a disaster! Downloaded new Firefox 4 and all my bookmarks are gone! Bookmark file is EMPTY!

    See also:
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Creating sequences for all tables in the database at a time

    Hi ,
    I need to create sequences for all the tables in my database.
    i can create individually ,using toad and sqlplus.
    Can any one give me a code for creating the sequences dynamically at a time for all the tables.
    it is urgent ..
    Regards.

    I need to create sequences for majority of the tables that are having ID column
    which is sequences."The majority" is not the same as all. So you probably want to drive your generation script off the ALL_TAB_COLUMNS view...
    where column_name = 'ID'You need to think about this carefully. You might want different CACHE sizes or different INCREMENT BY clauses for certain tables. You might even (whisper it) want a sequence to be shared by more than one table.
    Code generation is a useful technique, but it is a rare application where one case fits all.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • Newbie ques : How to get the list of all tables in the database

    Hi,
    I'm very new to Oracle (using Oracle8i currently). I wanted to know if there is a way to get the list of all tables in the database. Like in mySQL you can use the command " show tables" to get the list of all the tables.
    Any help will e greatly appreciated. Please "cc" any reply to [email protected] also.
    thanks
    Deven

    Hi
    Select table_name, owner from all_tables;
    will give u all the tables in the database.
    all_tables, dba_tables, user_tables
    all_objects, dba_objects, dba_objects
    there are many, more tables. login as system and query the tab and try to describe the tables.
    Thanks
    Malar

  • How to delete duplicate records in all tables of the database

    I would like to be able to delete all duplicate records in all the tables of the database. Many of the tables have LONG columns.
    Thanks.

    Hello
    To delete duplicates from an individual table you can use a construct like:
    DELETE FROM
        table_a del_tab
    WHERE
        del_tab.ROWID <> (SELECT
                                MAX(dups_tab.ROWID)
                          FROM
                                table_a dups_tab
                          WHERE
                                dups_tab.col1 = del_tab.col1
                          AND
                                dups_tab.col2 = del_tab.col2
                          )You can then apply this to any table you want. The only differences will be the columns that you join on in the sub query. If you want to look for duplicated data in the long columns themselves, I'm pretty sure you're going to need to do some PL/SQL coding or maybe convert them to blobs or something.
    HTH
    David

  • How to see all tables in a database

    I need to view all the tables in a database.
    What is the statement query to do that?
    Please help..

    http://www.praetoriate.com/t_garmany_easysql_the_data_dictionary.htm
    select * from all_tables;
    select * from user_tables;
    select * from dba_tables;

  • List all columns having only nulls from all tables in a database.

    I want to select columns from all tables having only null values. Each table has 60+ columns and i have 100+ tables in database. Requesting a script to list all tables at a time and their columns having all nulls? Below is my expected output. Thank
    you in advance !
    Table name
    Null valued Column
    Address
    Address Line 2
    Address
    Address Line 3
    Address
    Zip Code
    Product
    Product Desc
    Product
    Product SKU

    Hello,
    In addition to Naomi's reply, you can refer to the following links about loop through all the tables in the database:
    http://www.codeproject.com/Tips/161663/Loop-through-all-tables-in-SQL-Server
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/07b9799e-aeab-442e-99a0-ba76ab051f59/looping-through-databases-and-count-the-number-of-items-in-a-specific-table?forum=transactsql
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • To find particular value in all the tables in the db

    Hi All
    I need to find out all the tables, corresponding column name by querying a particular string that appears in any of the columns in the any of the tables in the db.
    Please help me of this.
    Thanks

    Oh dear you want to look for a particular data in all the tables in the database and say this data is available in these tables in these columns. Oh boy thats going to cost you a lot. why do you want to do that. can you share with us why you want to do that.
    Thanks,
    Karthick.

  • How to connect SQL Dev to local database?

    Hi all,
    I have a local database on my laptop. I connect to the database using direct connect without passing the listener and tnsnames.ora, because I shut it down.
    How can I connect my SQL Developer to the database using direct connect?
    Thanks

    I don't think this is possible because even the basic connection type requires to give a hostname, port number and Oracle SID:
    http://download.oracle.com/docs/cd/E18464_01/doc.30/e17472/dialogs.htm#BACEDDJF

Maybe you are looking for

  • Unable to create a snapshot in OAMCM

    Hi all, I have done the installation and configuration of OAMCM. I have created 4 environments and now when i am trying to create a snapshot for the environments i am getting the below error message. "- Snapshot of Config Data Failed[LDAP: error code

  • How can i detect a winner

    import java.awt.*; import java.awt.event.*; import java.awt.geom.*; import javax.swing.*; import java.util.Random; public class TicTacToe extends JFrame {   private Board board;   static final char BLANK=' ', O='O', X='X';   private char position[]={

  • Unable to sync music to iphone

    after updating to the latest itunes software, my entire music library doesn't sync to the iphone. I have an iphone 4s which i have updated to ios7.

  • HT204088 How can i cancel a subscription for an app and get a refund

    Hello I have a subscription for Rhapsody and I want to cancel it, I just got charge $9.99 for the new month, yesterday I want to cancel and get a full refund. I cant afford to have the subscription any longer.. I would appreciate any help you can pro

  • How do i keep the results from a formula but delete the original data

    I want to delete the column of original data and only keep the results.