How to load  a tables one partition of data in to OWB target table

Hey ,
I want to load only one partition data from source (size in Tera bytes) in OWB tables. I used filter condition as per the partition done on a key value. But Its take so much time to load the data into the target table.
I feel to configure the source table as well as target table and give some HINT command in operator settings . Is it right to improve the performance of loading .
Can I use PEL option in source as well as target .
suggest me please
thanks
murari

Hi Andreas,
This error has not been documented yet, but I got the information from the other forums.
Error Name                            Error Code (hex)    Description
LinBusErrorTxSyncTimeout         1040                  The LIN interface master task attempted to send a
                                                                           sync byte and did not self not receive the sync byte
                                                                           within the timeout period.
This is the description. The problem is solved, the baud rate i was giving was higher than the slave units baud rate. Now it seems to be functioning correctly.
Thank you.

Similar Messages

  • How to make more than one partition on Airport Time Capsule?

    how to make more than one partition on Airport Time Capsule?

    Only for the very brave......
    Open up the Time Capsule (voids the warranty)
    Pull the hard drive
    Place the hard drive in a separate enclosure
    Connect the enclosure directly to your Mac
    Use Disk Utility to partition the hard drive
    Reinstall the hard drive back in the Time Capsule
    For the rest of us.....
    The next best thing might be to set up one or more disk images on the Time Capsule, which will allow you reserve a given amount of space for each disk image.
    Open up Macintosh HD > Applications > Utilities > Disk Utility
    Click on the New Image tab
    Navigate to the Time Capsule
    Set up the disk image by naming it and specifying how much space you want to reserve

  • Loading accdb file using for each loop in to single target table

    I have 3 accdb file as below in single folder, in control flow I have created a for each loop to loop through all the below file.  In dataflow task I have created oledb source using connection manager to point to first file a1.accdb. I am trying
    to load all the file into single below mentioned target table, here It is only loading first file it is not looping through other two file.
    This I have tried to load .txt files and csv files it is working perfectly but similarly when I try to load access db file table it is not working, can any one of you help me?
    1. a1.accdb contains only one table  a1tab ( col1 col2 col3 )  
    2. a2.accdb  contains only one table  a2tab  ( col1 col2 col3 )
    3. a3.accdb  contains only one table  a3tab   ( col1 col2 col3 )
    I have a target table with similar structure as source
    Target table <TargetTable> Col1 Col2 Col3
    aak

    Thanks Arthur, please find below response
    How do you handle the different table names?  Cant we handle it in a similar manner, how we handle the .csv/.txt files with different name and similar structure for sources(multiple files) and target (single table)
    Is it good to drop the idea of for each loop and create a separate task for each accdb file? to be loaded to same target table( performance wise etc.. any justification would be helpful)
    You must handle the connection string dynamically?
    Can you help me with the logic for handling connection string dynamically
    aak

  • How to load data into 3 different target tables usin BODS ?

    Hello Friends,
    I have 5 different source tables with same field definitions, Now I want to load all the records into three/four different target tables (Flat file, SQL Server, XML, and Oracle ) Could anyone please tell me how to do this task ?
    Thanks in Advance,
    Bheem.

    Hello Bheem,
    You can create separated dataflow for each target as suggested by Bala, this is a good choice when evaluating you scenario.
    If you put all targets in the same dataflow you may experience problems if one of them is down (as you have different servers as targets).
    BODS will send the data simultaneously to all targets and when one fails, the load will be break and you may have the tables not sinc anyways (if you plan to use a single dataflow to avoid this situation, it won't do it).
    So the best option is to create separated dataflow and put inside another one so you can run a singe dataflow that will call each one of the target and if onw fails the other will complete accordingly.
    Then if you put them inside a error trapping, you may even make your dataflow to retry the load prior abend the job.
    Think about cascading your dataflows and let the leaf level simple as it can be so it will be easier to schedule and debug your process.
    Pay attention to datatypes and other conversions you might need when working with more than one source/target.
    Regards,

  • How to transfer files from one partition to another on the same computer

    I had a crash could not boot back into my 8.1 upgrade. Went out bought standalone 8.1. I loaded it on HD free space now I want to transfer files from one partition to another.

    hi
    say there are two infoobjects X  and Y.
    X is existing infoobject and Y in new one.
    go to infosurce-search for X-create export datasource - map the rules and load the data.
    This is one way.
    Other way is u can use X as a reference object of Y so that both of them have same structure and both objects will share common database tables in BW which are exsting for X.
    Hope this helps.
    Kindly assign the points if it helps.

  • SQL*Loader - How to load only a few columns from a .csv file to ora table

    Hi there,
    Could anyone please let me know how to load few columns from a .csv
    file into a oracle table using SQL*Loader.
    I know how to create a .dat and .ctl file and run the sql loader.
    Suppose I have a .csv file with
    col1, col2, col3, col4
    and I only need to load col1 and col3 into col_a and col_b respectively
    in table_a?
    structure of table_ a
    col_a,
    col_b
    Please advice

    Try like..it i will work..
    LOAD DATA
    INFILE 'test.txt'
    LOAD DATA
    TRUNCATE INTO TABLE T1
    FIELDS TERMINATED BY ','
    (col1,
    col2 FILLER,
    col3,
    col4 FILLER
    )

  • How to move rows from one partition to another?

    We have a data retention requirement for 6 months and after 6 months the data can be removed except for few records with certain statuses (which cannot be removed even if they are over 6 months). We have Oracle 11g.
    I wanted to see if the following strategy works:
    I will have monthly partitions and 8 sub partitions (hash) in each of the main partitions. The hash sub-partitions are to spread the load of application data and balance the data insertion to avoid any contention.
    At the end of 6 months, is it possible for me to move the row that needs to be kept to a different partition and drop the last partition. I wanted to avoid data deletion because we only have very little database downtime and data deletion require us to coelize the database to avoid fragmentation.
    If I can move the data to another partition, how will I do it?
    Thanks

    I think you didn't get intentions correctly.
    My intention is to move the required data to a partition and then drop the original partition. that because the amount of data required to keep for future use is less than 1%.
    I understood what you meant to convey. Thanks a lot.
    I laid out eh plan something like the following.
    1. Add a new date column to facilitate the partitioning (say its called PARTITION_DT. PARTITION_DT will have the same data as ROW_CREAT_DTTM without the timestamp portion of the date.)
    2. We will start with monthly partition using PARTITION_DT, Create a 'Default' partition as well.
    3. Add hash sub-partitions on MSG_ID to spread the application data load and avoid contention (so the application load is balanced just like how its balanced through the hash partitions today)
    4. At the end of the data retention period, identify the records that needs to be retained (because of some trade statuses, etc ) and update the PARTITION_DT with a distant past date so the row will automatically move to the Default partition. The identification of the records to be retained and updating the PARTITION_DT can be done through a batch job. since this step involve very few records, it can be done in minutes or seconds.
    5. Now, we can drop the oldest partition and rebuild the index if required.
    6 The process should add sufficient number of monthly and its sub-partitions ahead of time to make sure we always have partitions available for new data.
    The entire process can be automated and executed through a scheduled job.

  • How to load serial strings one at a time via loop?

    Hi,
    I am new to LV and programming in general.  I am using a VI to
    communicate with an uP app that sends commands to my DUT to make it
    enter certain test modes.  The app uses Hyperterminal and simple
    keyboard commands to access menus.
    The VI is basically working, but I want the serial string write
    procedure to have a "load" button, so I can enter the string, then
    click "load" or something like that.  After this works I can
    expand from there, eventually creating a prompt-style app for each test
    mode.
    Is there an example of this (or something applicable) I can study? I am
    trying to use a while loop, but am getting lost as to what to do next.
    Thanks, Don

    Don;
    Here's another take on your problem. It doesn't have a load button because it "transmits" the data when you press enter. In addition, I added a window that lets you maintain a record of the commands and responses that have gone back and forth. When you run the VI type something into the command area and press enter. The command and the internally-generated "response" will appear in the window to the right.
    If you look at the diagram you will see that it was built using event-driven progrmming. In the event for handling changes in the command string, you'll see the place where I have my demo serial io vi. Replace that VI with one that really sends commands to the external device and reads the response and you have a nice interactive interface for the device.
    Note I have also added some error handling (always very important). Basically the little green icon to the left of the loop creates a user event for errors. The little bitty green icon at the right side of the loop looks at the error cluster coming out of the event structure after each execution. If it detects an error it fires the error user event to display the error to you. The green icon to the right of the loop is deinitialization.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    LoadString2.llb ‏158 KB

  • How to load the .xml file list from 'C:\Drag_list\Modif into xmltype table?

    Hi all experts,
    I am in Oracle Enterprise Manager 11g 11.2.0.1.0.
    SQL*Plus: Release 11.2.0.1.0 Production on Tue Feb 22 11:40:23 2011
    is there anyone know why
    SQL> create or replace directory XMLDIR as '/xdb/faq/testdata'
    2 /
    SQL> set long 10000 pages 200 lines 150
    SQL> --
    SQL> select xmltype(bfilename('XMLDIR','2003.xml'),nls_charset_id('AL32UTF8'))
    2 from dual
    worked. but
    SQL> create or replace directory XMLDIR as 'C:\Drag_list\Modified';
    SQL> select xmltype(bfilename('XMLDIR','2011.xml'),nls_charset_id('AL32UTF8'))
    from dual
    did not work?
    IS there any way I can load the .xml file list from 'C:\Drag_list\Modified' into xmltype table?
    Thanks.
    Edited by: Cow on Apr 13, 2011 12:58 AM

    This is a question better suited for the sql and pl/sql support forum, since it is NOT an APEX based question..: PL/SQL
    Thank you,
    Tony Miller
    Webster, TX
    On the road of life...There are 'windshields', and there are 'bugs'
    (splat!)
    "Squeegees Wanted"
    If this question is answered, please mark the thread as closed and assign points where earned..

  • How to load this value into the master data display attribute

    Hi ,
    Please share me the knowldege how to load this kind of data into master data display attribtes ..
    Raj + Ravi Ltd (PCG: 13592)
    While loading this data ,i got the error message stating that '+' should not be part of the attributes and () should not be part of the attribute ..but i need all the information as it is available in the example data .
    Do i need to maintain RSKC Settings else some other things required ..
    Please guide me ..
    Regards,
    Raj

    HI,
    Maintain these symbols in RSKC and try to reload the data....

  • How to send more then one image ore data file

    Here
    http://www.kfhgd.internetcafe-kaufbeuren.de/upload.php
    I use an already
    made script. I want to allow users to send more then one
    image or data file
    to the server. All my efforts for reaching the author had
    been
    unsuccessfully.
    Could someone help me to change the script in my way?
    Ciao, servus und salut
    Janis

    .oO(Janis)
    >Here
    http://www.kfhgd.internetcafe-kaufbeuren.de/upload.php
    I use an already
    >made script. I want to allow users to send more then one
    image or data file
    >to the server. All my efforts for reaching the author had
    been
    >unsuccessfully.
    >
    >Could someone help me to change the script in my way?
    You need multiple file upload form controls in your HTML and
    the PHP
    script has to loop through the array that holds the
    informations about
    all received files.
    The script might also need some additional security checks.
    Currently it
    seems to be possible to upload any arbitrary files, even
    other scripts.
    With some more tweaking the server might be tricked into
    executing them,
    which would be a huge security hole.
    The receiving script has to check the actual file content,
    not just the
    file extension or content type, which can both be faked.
    Where did you get that script from?
    Micha

  • How to load model from one DC to other ?

    Hi ALL,
    I have created a WebDynpro DC (say A) , and created a EJB Model (in this case , but can be any Model) and exposed the same as public part.
    How do i use this from some other WebDynPro DC (say B)?
    I need to load that model created in A from the B and use it for creating the model nodes at runtime and using it for getting the data (All through Dynamic programming )?
    Regards,
    Madhusudhan

    Hi madhusudhan,
                               Hope this will help
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cef4f43e-0d01-0010-db84-ede25c874115">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cef4f43e-0d01-0010-db84-ede25c874115</a>
    <a href="/people/sap.user72/blog/2006/07/27/arfc-without-model-nodes-you-must-be-joking-right:///people/sap.user72/blog/2006/07/27/arfc-without-model-nodes-you-must-be-joking-right
    regards
    Sumit

  • How to load files up one step from local working directory

    Good afternoon,
    I have a project assigned to me that has some Ni TestStand code written to read files from a fixed directory and I would like to change this directory to be the directory where the TestStand seqeunce file is located.
    Furthermore, I would like to be able to step back one directories and forward into a different directory. Is this possible? I know in linux his is done with ..\ preceeding the directory location
    I want ot do this for variables in TestStand and also for pats in LabView.
    Cna somebody provide me with the correct syntax, for example if
    my seq file is C:\User\Test\myseq.seq
    and I want to open an ini file located in
    C:\Config\config.ini
    Should I save the path for the variable as
    ..\..\Config\config.ini ?? 
    Thanks,
    -D

    1) If you want to use a relative path that is resolved the same way as a module path (i.e. using the teststand search directories where looking in the same directory as the sequence file is one of the default possibilities) you can do something like the following:
    FindFile("..\\Config\\Config.ini", True, Locals.absolutePath)
    2) RunState.SequenceFile.Path actually includes the sequence file's name, so if you want to build a path from that you would need to do something like the following to parse out the part of the path you care about (though maybe an extra ".." instead of doing this parsing works to get past the file name too, I've never tried that. Perhaps either way is fine.):
    Locals.absolutePath = Left(RunState.SequenceFile.Path, Find(RunState.SequenceFile.Path, "\\", 0, False, True) + 1) + "..\\Config\\Config.ini"
    3) Whether or not you need to build an absolute path or can use a relative path depends on what you are doing with the path, if you provide more details on what you are doing with the path we can let you know. In general, you should not use a relative path when calling a win32 API.  See the remarks section of the following where it says, "Multithreaded applications and shared library code should not use the GetCurrentDirectory function and should avoid using relative path names.":
    http://msdn.microsoft.com/en-us/library/windows/de​sktop/aa364934%28v=vs.85%29.aspx
    Though if you are calling a TestStand API then a relative path might be ok, depending on the API call, because some teststand APIs can use the TestStand search directory algorithm to resolve the path (basically the equivalent of 1 above).
    Hope this helps,
    -Doug

  • How to move user from one partition to another partition

    i install ims 5.2 on solaris 8, the messagestore is default ..../partition/primary, now i add a new disk, and add a partition secondary through startconsole,when i want to move b user to the new parition , i get a error. anyone can help me, thank a lot
    $ ./mboxutil -r user/b/inbox user/b/inbox secondary
    System I/O error. Administrator, check server log for details.
    $

    hi,jay_plesset
    i downloaded the 5.2p1 and installed it, there are some error.
    Running Post-install procedures.
    /usr/iplanet/server5/msg-ultra1/imsimta chbuild
    -- line #3 of language code fileno country name specified --
    /usr/iplanet/server5/msg-ultra1/imsimta cnbuild
    07:27:11.93: Error in mm_init -- error initializing ch_ facility: no country nam
    -- line #3 of language code file
    /usr/iplanet/server5/msg-ultra1/imsimta cleandb
    /usr/iplanet/server5/msg-ultra1/imsimta version
    SunOS ultra1 5.8 Generic_108528-13 sun4u sparc SUNW,Ultra-1
    iPlanet Messaging Server 5.2 (built Feb 21 2002)
    libimta.so 5.2 (built 15:07:23, Feb 21 2002)
    New Installed Version is 5.2
    WARNING: Newly Installed revision string 0 does not match, it should be 1.09
    2.what's your mean,"Moving a user's partition by manually moving files, will not update the LDAP database. You MUST do this manually, "
    i mv the user,and run reconstruct -m, everything seems ok.

  • How to Implement 30 days Range Partitioning with Date column. Not Interval

    Hi,
    I am using the db:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit
    Current table structure is:
    CREATE TABLE A
    a NUMBER,
    CreationDate DATE
    PARTITION BY RANGE (CreationDate)
    INTERVAL ( NUMTODSINTERVAL (30, 'DAY') )
    (PARTITION P_FIRST
    VALUES LESS THAN (TIMESTAMP ' 2001-01-01 00:00:00'))
    How can I define virtual column based partitioning with RANGE partitioning without using INTERVAL partitioning.
    And that is with Intervals of 30 days.
    For monthly I am trying as
    CREATE TABLE A
    a NUMBER,
    CreationDate DATE,
    monthly_interval date as (to_char(CreationDate,'MM-YYYY')) VIRTUAL
    PARTITION BY RANGE (monthly_interval)
    partition p_AUG12 values less than (to_date('08-2012','mm-yyyy')),
    partition p_SEP12 values less than (to_date('09-2012','mm-yyyy')),
    partition p_OCT12 values less than (to_date('10-2012','mm-yyyy'))
    Enable ROw Movement
    BUT CAN'T INSERT the data even for that:
    Insert into a (a, CreationDate)
    Values (1, '12-10-2012')
    Insert into a (a, CreationDate)
    Values (1, '12-10-2012')
    Please suggest..

    Hi rp,
    Interval Partitioned to Range. Created Daily Partitions from Monthly Part. got complicated so I am posting here.
    Basically,
    I know Interval Partitioning is a kind of Range partitioning. But explicitly for Interval Partitioned tables XML Indexes are not allowed as discussed here:
    XMLIndexes on an Interval Partitioned Table??
    I can do monthly partitions as :
    CREATE TABLE A
    a NUMBER,
    CreationDate DATE,
    monthly_interval varchar2(8) as (to_char(CreationDate,'MM-YYYY')) VIRTUAL
    PARTITION BY RANGE (monthly_interval)
    partition p_AUG12 values less than ('09-2012'),
    partition p_SEP12 values less than ('10-2012'),
    partition p_OCT12 values less than ('11-2012')
    ) Enable ROw Movement
    Insert into a (a, CreationDate)
    Values (1, '12-SEP-2012')
    Insert into a (a, CreationDate)
    Values (1, '14-SEP-2012')
    Select * from A partition (p_SEP12)
    Select * from A partition (p_AUG12)
    Select * from A partition (p_OCT12)
    Can we do it for 30 days partitions, instead of the monthly partitions. ANY suggestions..
    Thanks..

Maybe you are looking for

  • Can no longer find Printer on Windows network

    I had a connection to the HP LaserJet 4050 at work and accidentally deleted it. We have a Windows network. I remember using the Windows Printing option before, but the printer no longer shows up when I select Network Neighborhood. The only thing that

  • Imported images and processed in wrong project can I transfer?

    imported images and processed in wrong project can I transfer to the correct project and delete from the incorrect project without loosing my work so far? ok I know similar questions have been asked but I could not find an answer using search.....so

  • How to call a function

    As part of my attempts to make FLEX 508 compliant, I've tried several things.  But this question is about basic FLEX in general.  What I'm trying to do is to call a routine (that will someday work and make FLEX compliant I hope).  Here is the basic l

  • N97 mini with new FW 12.0.110

    I was able to install the new FW yesterday, and for sure did check immediatly, if some of my issues were fixed. While the update-process went smooth, i am very disappointed that not one of the issues which bother me was fixed. The Software Updater di

  • ORA-0600 Internal Error

    Dear All, Yester day i was practicing on my test database. I had my old cold backup of my database. Now i removed the controlfiles and replaced them with my old controlfiles from my old backup. Then i was getting the error ORA-0600. Then even i repla