Split one Post OFfice in two parts

Hi there!
I have problems with my Poa, because I'm having problems with I/O. Despite of all,
my POA is about 250 GB and I think that it's pretty big. So I have a lot of "batch users"
that are receiving a lot of emails with low priority, and I am thinking in split my post office
in two parts:
1) personal/phyisical users (humans): my actual post office. With SAN storage (expensive)
and priority backups.
2) non humans: batch users, iScsi storage , cheap and only a backup in saturday.
The question is: I saw that there is a procedure to move an user from one post office
to another, but these users have a lot of proxy accesses and rules. These options
are saved in the move? I mean, there are rules for forward emails to users in post office 1).
Does the system relocalize these users from post office 2) in post office 1) ?
I know that the best test would test with one test user... but just in case.
Thank you all!

In article <[email protected]>,
Antoniogutierrez wrote:
> I have problems with my Poa, because I'm having problems with I/O.
> Despite of all,
instead of putting a lot of effort into splitting this little
PostOffice into two, how about looking at the I/O challenges as fixing
them might be much more effective. Might even help you elsewhere as
well.
What plateform are you running on? Hypervisor? What is the storage
access type?
What are the particular I/O challenges you are hitting?
Andy of
http://KonecnyConsulting.ca in Toronto
Knowledge Partner
http://forums.novell.com/member.php/75037-konecnya
If you find a post helpful and are logged in the Web interface, please
show your appreciation by clicking on the star below. Thanks!

Similar Messages

  • Split one salesorder item into two items in delivery

    We want to split one salesorder item into two different items in the same delivery.
    This is because we will pick the material from two different storage locations.
    Any user-exit to use for solving this?
    Best regards,
    Terje

    Hi,
    We are not using batch management.
    I have looked into the foreign trade/customs standard functionality in SAP, but I can not see that them difference in stock in SAP what is duty paid or not.
    We need to have documentation in the system for the custom goverement for what stock is duty paid and not.
    For the same material we can have stock which are duty paid and not duty paid. This is decided when we do the goods receipt.
    For stock coming from Asia, it is profitable to have this on not duty paid stock since we are exporting it back to Europe and Asia later.
    We will send import and export EDI messages to a third party custom application handling all the papers with the custom goverement.
    The only we need to make track on in SAP is the stock for what is duty paid and not.
    In some situations we need to take stock from both duty paid stock and not duty paid stock when we deliver the same material to a customer. Therefor I asked the question of splitting one delivery item into two items.
    Best regards,
    Terje

  • SLT - Splitting one source table into two tables in the destination

    Hi,
    I am wondering if we can split content of one source table into two different tables in the destination (HANA DB in my case) with SLT based on the codified mapping rules?
    We have the VBAK table in ERP which has the header information about various business objects (quote, sales order, invoice, outbound delivery to name a few). I want this to be replicated into tables specific to business object (like VBAK_QUOT, VBAK_SO, VBAK_INV, etc) based on document type column.
    There is one way to do it as far as i know - have multiple configurations and replicate to different schema. But we might have to be content with 4 different config at the max.
    Any help here will be highly appreciated
    Regards,
    Sesh

    Please take a look at these links related to your query.
    http://stackoverflow.com/questions/5145637/querying-data-by-joining-two-tables-in-two-database-on-different-servers
    http://stackoverflow.com/questions/7037228/joining-two-tables-together-in-one-database

  • Split one song file into 3 parts?

    I have a Damien Rice song (Eskimo) that is 3 songs with lots of silence between them all in one track. Is there any way to split the song/file into 3 parts/tracks so that I can have the 3 pieces as separate tracks?
    thanks for any suggestions.

    Yes. In the full-length file set the stop and start times, by right-clicking on the track and then "Get Info" > "Options." Then "OK." Then right click on the track and select "Convert Selection to XX" and it will create a new shorter file in your preferred import format.
    Do this three times to get the 3 short versions that you want.
      Windows XP  

  • How do I split one Apple account into two accounts?

    I have 2 iphones using one Apple ID.  The apps are completely different on the 2 phones (wife's stuff, my stuff).  I would like to split them into two Apple ID's so I can keep them completely separate.  Any ideas?

    Sorry, but there is no way to "move" an app from one iTunes Store account to another.
    Regards.

  • Splitting one photo book into two?

    Hi, I have prepared one photo book (project) with iPhoto using the maximum of 100 pages (3 weeks US!!). Now, a friend shared his pics with me that I'd like to add. Can I split the one book in two with say 50 pages and continue addingnew pages with the spliited ones?
    Plus: Can I move complete pages from one iPhoto book to another project (book)?
    Thx for your help!
    Frank

    Select the book in the left hand pane and type Command+D (duplicate).  You can then modify each of the copies as needed.
    OT

  • Stored Procedure - Split one Input Paramater into two Paramater

    What is expected from me
    1) I am getting a input parameter as a string (url+id)with two delimiters(, and |) i.e 'html\abc.com,http\efc.com|112'
    Logic: If ID is not in the table or if ID is not there in input parameter then return null
    else
    send ID and URL from the table
    The way I am tackling aforesaid as I am new in Oracle PL/SQL
    1) I have two separate split function one to tackle , (comma) other to tackle |(pipe) which i got from NET
    2) I am creating 2 table with 2 columns (ID(identity),val)
    3) I am splitting input parameter and pushing result in first table where ID will always be second record
    so if count(*) = 1
    then return nothing (as there is no ID to map in the table)
    else
    4) splitting first row and pushing result in second table and then mapping with the table if its there then returning the val back...
    Here is the code Please let me know where i am going wrong?? where i have to correct??
    CREATE OR REPLACE
    PROCEDURE ap_dbi_ps_PM_Search
    v_PAGE_CTX IN VARCHAR2,
    v_CTX_ID IN NUMBER DEFAULT NULL ,
    v_Count IN NUMBER DEFAULT NULL ,
    cv_1 IN OUT SYS_REFCURSOR )
    AS
    ---tblPM table 2 columns id (idendity) and val
    CREATE SEQUENCE tb1PM_id START WITH 1 INCREMENT BY 1;
    CREATE TABLE tb1PM
    ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400)
    CREATE OR REPLACE TRIGGER tb1PM_id_TRG BEFORE
    INSERT ON tb1PM FOR EACH ROW BEGIN
    SELECT tb1PM_id.NEXTVAL INTO :NEW.id FROM DUAL;
    END;
    -- tblPM1 table 2 columns id (idendity) and val
    CREATE SEQUENCE tb1PM1_id START WITH 1 INCREMENT BY 1;
    CREATE TABLE tb1PM1
    ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400)
    CREATE OR REPLACE TRIGGER tb1PM1_id_TRG BEFORE
    INSERT ON tb1PM1 FOR EACH ROW BEGIN
    SELECT tb1PM1_id.NEXTVAL INTO :NEW.id FROM DUAL;
    END;
    --Split the input paramater and push result in tblPM*
    INSERT
    INTO tb1PM
    val
    (SELECT * FROM TABLE ( CAST(split('v_PAGE_CTX') AS split_tbl))
    DECLARE
    v_Count NUMBER
    10,0
    DECLARE
    V_CTX_ID NUMBER
    10,0
    SET V_CTX_ID =
    (SELECT DISTINCT TO_NUMBER(val) FROM tb1PM WHERE id = 2
    SET v_Count =
    (SELECT COUNT(*) FROM tb1PM
    BEGIN
    IF v_Count = 2 THEN
    INSERT
    --Split URL's from tblPM*
    INTO tb1PM1
    val
    (SELECT *
    FROM TABLE(splitcomma(
    JOIN(CURSOR
    (SELECT val FROM tb1PM WHERE id =1
    OPEN cv_1 FOR SELECT PAGE_DISPLAY_URL,
    CTX_ID FROM portal_mapping WHERE CTX_ID = V_CTX_ID group by V_CTX_ID HAVING v_PAGE_DISPLAY_URL IN
    ( SELECT DISTINCT val FROM tb1PM1
    RETURN;
    DROP TABLE tb1PM;
    DROP TRIGGER tb1PM_id_TRG;
    DROP SEQUENCE tb1PM_id;
    DROP TABLE tb1PM1;
    DROP TRIGGER tb1PM1_id_TRG;
    DROP SEQUENCE tb1PM1_id;
    ELSE
    EXCEPTION
    WHEN OTHERS THEN
    -- NULL;
    END IF;
    END;
    show errors;
    ERROR which I am getting is
    Warning: execution completed with warning
    PROCEDURE ap_dbi_ps_PM_Search Compiled.
    24/1 PLS-00103: Encountered the symbol "CREATE" when expecting one of the following:
    begin function pragma procedure subtype type <an identifier>
    <a double-quoted delimited-identifier> current cursor delete
    exists prior external language

    You have to learn how to write the procedure before you could write one. I just corrected the syntax errors. I did not paid attention to your logical errors. This one compiled without errors other than the table does not exists. My doubt is If you are creating the tables in the procedure, how will the tables already have data?
    CREATE OR REPLACE PROCEDURE ap_dbi_ps_PM_Search ( v_PAGE_CTX IN VARCHAR2, v_CTX_ID IN NUMBER DEFAULT NULL , v_Count IN NUMBER DEFAULT NULL , cv_1 IN OUT SYS_REFCURSOR )
    AS
    BEGIN
    ---tblPM table 2 columns id (idendity) and val
    execute immediate 'CREATE SEQUENCE tb1PM_id START WITH 1 INCREMENT BY 1';
    execute immediate 'CREATE TABLE tb1PM ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400) )';
    execute immediate ' CREATE OR REPLACE TRIGGER tb1PM_id_TRG BEFORE INSERT ON tb1PM FOR EACH ROW BEGIN  SELECT tb1PM_id.NEXTVAL INTO :NEW.id FROM DUAL; END';
    -- tblPM1 table 2 columns id (idendity) and val
    execute immediate 'CREATE SEQUENCE tb1PM1_id START WITH 1 INCREMENT BY 1';
    execute immediate 'CREATE TABLE tb1PM1 ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400) )';
    execute immediate 'CREATE OR REPLACE TRIGGER tb1PM1_id_TRG BEFORE INSERT ON tb1PM1 FOR EACH ROW BEGIN SELECT tb1PM1_id.NEXTVAL INTO :NEW.id FROM DUAL; END';
    --Split the input paramater and push result in tblPM
    execute immediate 'INSERT INTO tb1PM ( val ) (SELECT * FROM TABLE ( CAST(split( ''v_PAGE_CTX '') AS split_tbl)) )';
    -- SET V_CTX_ID = (SELECT DISTINCT TO_NUMBER(val) FROM tb1PM WHERE id = 2 ) ;
    select distinct to_number(val)  into v_ctx_id from tb1PM where id = 2;
    -- SET v_Count = (SELECT COUNT(*) FROM tb1PM ) ;
    select count(*) into v_count from tb1PM;
    IF v_Count = 2 THEN
    INSERT INTO tb1PM1 ( val )
        (SELECT * FROM TABLE(splitcomma( JOIN(CURSOR (SELECT val FROM tb1PM WHERE id =1 ) ) ) ) );
    OPEN cv_1 FOR SELECT PAGE_DISPLAY_URL, CTX_ID FROM portal_mapping WHERE CTX_ID = V_CTX_ID group by V_CTX_ID HAVING v_PAGE_DISPLAY_URL IN
        ( SELECT DISTINCT val FROM tb1PM1 );
    RETURN;
    END IF;
    END;
    EXCEPTION
    WHEN OTHERS THEN
      DROP TABLE tb1PM;
      DROP TRIGGER tb1PM_id_TRG;
      DROP SEQUENCE tb1PM_id;
      DROP TABLE tb1PM1;
      DROP TRIGGER tb1PM1_id_TRG;
      DROP SEQUENCE tb1PM1_id;
    END;

  • Split one PI System into two new PI systems

    Hello,
    I support one PI System from our company.
    My company would be splitted into 2 new companies.
    My Question about the PI system:
    Alternative 1:
    I will be crate 2 new PI Systems (one for company 1 and one for company 2)
    - I will be move the content from IR and ID to the new Systems (File Level Transport or CMS).
    - Is it possible, to move the messages and the payload of the processed messages (from the past) with the archive function ??
    Alternative 2:
    I use the existing PI system and dont create 2 new PI systems.
    - could I measure the PI traffic for the new company one and the new company two  separately ?? (I will be use differnt message interface names for any company)
    Whats the better way (alternative 1 or alternative 2) ?
    Thank you in advance
    Uwe

    Hi,
    We can create two PI systems for new companies but configure SLD centrally so that we can work/configure SLD objects easily for three systems. meanwhile configure IR/ID objects separately for each system for data flow variation. Meanwhile IR/ID objects we can import/export easily with IR/ID windows import/export option.

  • Split one column value into two columns using t-sql

    Hi All,
    I have one varchar column in a table.
    Col1
    ABC-12C4
    BC-A345
    CD
    XYZ
    How to split this into two columns like this using t-sql
    Col1   Col2
    ABC    12C4
    BC      A345
    CD     
    XYZ
    Thanks,
    RH
    sql

    assuming a static delimiter, and the split will end up with a max of 2 columns, something like this would work.  basically you just need to determine where the delimiter is, and then use the left and right functions to find the 2 pieces.
    declare @t table(value varchar(10))
    insert into @t(value)
    values
    ('ABC-12C4'), ('BC-A345'), ('CD'), ('XYZ')
    select
    case
    when charindex('-', value) != 0 then left(value, charindex('-', value) - 1)
    else value
    end as col1,
    case
    when charindex('-', value) != 0 then right(value, len(value) - charindex('-', value))
    else ''
    end as col2
    from @t

  • How to split currency into two parts at dot

    Hi,
    I am working in ECC6.0.
    how can I split a currency field into two parts split at dot ( . )
    I cannot use SPLIT AT  for currency field. All FMs I found does not works for currency.
    Reagrds,
    Divya

    DId u check G_DECIMAL_PLACES_GET ?
    You can use this FM to find the decimal places in the currency .

  • Duplicate File IDs showing up in multiple post offices

    We have come across a strange issue. Several users are missing their file IDs. We looked at the user databases and found duplicate file IDs spread across multiple post offices. Joe Smith might have file ID aba in Post Office One while Bob Jones would have the same file ID in Post Office Two. Is this normal? What would happen if we had to move a user from one post office to the other with a duplicate ID.? How can we fix this?
    Any thoughts would be appreciated.
    Thanks
    Chris Toledo

    My boss sez "Whew"
    My backup email admin sez "Whew"
    I sez "Whew and Thank You very much"
    Originally Posted by Dave Parkes
    Yep, it is possible for that to happen, FIDs should only be unique within
    a single post office.
    As for moving a user, if their current fid already exists within the
    target po, then they will get a new unused one as part of the move process.
    So, there is nothing really to fix
    Cheers Dave
    Dave Parkes [NSCS]
    Occasionally resident at http://support-forums.novell.com/

  • The Post Office Agent might not be configured for SOAP.

    I have a virtual server with VMware ESXi 5 running SLES11 sp1, OES11 and GroupWise 12.
    The GroupWise system have one domain and one post office with several users.
    The users can access the mailbox with the GroupWise Windows Client, but when they try to login in the GroupWise Webaccess, they get the following error: "[9505] Your post office is unavailable. The Post Office Agent might not be configured for SOAP. Please contact your system administrator".
    1.- The post office agent have the SOAP option turned on.
    2.- I check the java environment variables and they are pointing to the right directory.
    3.- The Linux Firewall is turned off.
    4.- rcapache2 start and rctomcat6 start dont show errors.
    5.- I check the webacc.cfg file and all IPs address and ports (POA & DVA) are fine.
    Any help, comment or suggestion will be welcome.
    Thanks in advance.

    Check to see if the port is being used by SLES...
    --El
    Originally Posted by crivera
    I have a virtual server with VMware ESXi 5 running SLES11 sp1, OES11 and GroupWise 12.
    The GroupWise system have one domain and one post office with several users.
    The users can access the mailbox with the GroupWise Windows Client, but when they try to login in the GroupWise Webaccess, they get the following error: "[9505] Your post office is unavailable. The Post Office Agent might not be configured for SOAP. Please contact your system administrator".
    1.- The post office agent have the SOAP option turned on.
    2.- I check the java environment variables and they are pointing to the right directory.
    3.- The Linux Firewall is turned off.
    4.- rcapache2 start and rctomcat6 start dont show errors.
    5.- I check the webacc.cfg file and all IPs address and ports (POA & DVA) are fine.
    Any help, comment or suggestion will be welcome.
    Thanks in advance.

  • How to split a text in two parts?

    Hello everyone,
       I'm trying to make a text appearance, with a smilar effect as the one in this video (1 mn 43) :
    After Effects Template : 65 Title Animations - YouTube
       My problem is, I'd like to split my text in two parts, at the middle of a letter, so I can separate the text in two parts then gather it up at the end of the animation.
      I've tried to take a look at the text's animation tool, where you can make it spin, or rotate and this kind of stuff, but I can't find out how to make a letter really split at its middle.
    Thank you in advance and sorry for my english.

    Duplicate your text layer and mask.

  • How to split one scene in two in iMovie HD 06

    Hi there, is iMovie HD 06 able to split one scene in two? I am trying to insert slow motion for part of the scene but not the whole. Can I do that? Are there alternatives?

    Easy. Select the clip you want to split, therefore highlighting it, move the playhead to the point that you want to start your slo mo, go up to EDIT and select Split Video at Playhead. Repeat for the end point of that slo mo bit and you are left with three separate clips.

  • How to split  the records into two parts

    Hi experts,
    I have a field with 75 char length, this field have records also, Now i want to split the field into two differnt fields. That means upto first 40 char goes to one field, from 41st char to 70 char goes to another field, for that how to split record into two parts.
    Plz advice this,
    Mohana

    Hi,
    Do the following:
    f1 = fsource(40).
    f2 = fsource+40(30).
    where fsource is the 70 character original string and target strings are f1 (length 40) and f2 (length 30).
    Cheers,
    Aditya
    Edited by: Aditya Laud on Feb 22, 2008 2:10 AM

Maybe you are looking for

  • Thank you for scamming my Grandma and lying to me Verizon.

    I recived the cool little upgrade your phone and recive a $100 GIFT CARD!!! It was sent to my number and mine alone, despite I had upgraded to a BB 8 months before. So my grandma decided to get into the world of smartphones. From my expirence BestBuy

  • AppleScript to Select Groups of 3 Files?

    Hi all, Thanks in advance for any help you can provide. I am trying to create an AppleScript to take groups of 3 files and put them each in their own folder, inside of a master container folder. The files will typically be in DNG format as they will

  • ArrayIndexOutOfBoundsException in JDeveloper

    Hi, I am working with JDeveloper for 11.5.10 CU2. I extended a View object for an LOV and created the relevant substitution for it. It was working fine and when I had to create another substitution it did not allow me to go ahead. On the click of the

  • Can I set up folders to organise apps?

    Can apps be organised in relevant folders?

  • Snmp_trapsend ( Is it capable of sending more than 1 varbind? )

    I am trying to send a trap using the snmp_trapsend utility which contains multiple varbinds. Each attempt results in only 1 varbind regardless of all the syntaxes I have tried. Does the utility have this capability or do I have a syntax problem. I've