Anybody has example of setting up bi-direction streams DB replication?

I am looking for a solid example of setting up bi-direction replication at database level (global), using RMAN duplicate for instantiation and possible using MAINTAIN_GLOBAL package. This will be single source in 2 databases environment. The 2 databases should be in sync. I would like to know if we need to setup tag for it as it is bi-directional. Anybody has any link to it, please let me know.
Thanks!

I have bidirectional going.. here's my scripts... I replicate between two machines, AMS1 and AMS2
On both machines, create the strmadmin user:
connect / as sysdba;
-- drop user strmadmin
drop user strmadmin cascade;
-- drop tablespace for streams
DROP TABLESPACE streams_tbs including contents and datafiles;
-- create tablespace for streams
CREATE TABLESPACE streams_tbs DATAFILE '/oradata2/AMS/streams_tbs_01.dbf' SIZE 100M REUSE AUTOEXTEND ON MAXSIZE UNLIMITE
D;
-- create strmadmin user
CREATE USER strmadmin IDENTIFIED BY strmadmin
DEFAULT TABLESPACE streams_tbs
QUOTA UNLIMITED ON streams_tbs;
-- grants
GRANT DBA TO strmadmin;
BEGIN
DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE(
grantee => 'strmadmin',
grant_privileges => true);
END;
SELECT * FROM dba_streams_administrator;
Next, I do all the setup (capture, propagation, apply).
The following is done on AMS1
-- supplemental logging
connect / as sysdba
alter database force logging;
alter database add supplemental log data;
-- create database link
conn / as sysdba
create public database link AMS2.ttv.com using 'AMS2.ttv.com';
connect strmadmin/strmadmin;
create database link AMS2.ttv.com connect to strmadmin identified by strmadmin;
-- setup capture queues
conn strmadmin/strmadmin
-- setup capture process to propagate to
-- ams schema downstream
begin
dbms_streams_adm.set_up_queue(
queue_table => 'cature_src_ams_tab',
queue_name => 'capture_src_to_ams_q',
queue_user => 'strmadmin');
end;
-- configure capture process
conn strmadmin/strmadmin
begin
dbms_streams_adm.add_schema_rules (
schema_name => 'ams',
streams_type => 'capture',
streams_name => 'capture_src_to_ams',
queue_name => 'capture_src_to_ams_q',
include_dml => true,
include_ddl => true,
inclusion_rule => true,
source_database => 'AMS.ttv.com');
end;
BEGIN
dbms_streams_adm.add_schema_propagation_rules (
schema_name => 'ams',
streams_name => 'prop_src_to_ams',
source_queue_name => 'capture_src_to_ams_q',
destination_queue_name => '[email protected]',
include_dml => true,
include_ddl => true,
source_database => 'AMS.ttv.com');
END;
-- set instantiation scn
conn strmadmin/strmadmin
declare
v_scn number;
begin
v_scn := dbms_flashback.get_system_change_number();
[email protected](
source_schema_name => 'ams',
source_database_name => 'AMS.ttv.com',
instantiation_scn => v_scn,
recursive => true);
end;
-- setup apply queues
conn strmadmin/strmadmin
begin
dbms_streams_adm.set_up_queue(
queue_table => 'apply_src_ams_tab',
queue_name => 'apply_src_ams_q',
queue_user => 'strmadmin');
end;
begin
dbms_streams_adm.add_schema_rules (
schema_name => 'ams',
streams_type => 'apply',
streams_name => 'apply_src_ams',
queue_name => 'apply_src_ams_q',
include_dml => true,
include_ddl => true,
source_database => 'AMS2.ttv.com');
end;
-- SET parameter disable_on_error to 'N' to continue processing row LCR even it
-- encounters errors
begin
dbms_apply_adm.set_parameter (
apply_name => 'apply_src_ams',
parameter => 'disable_on_error',
value => 'N');
end;
-- increase memopry to 50M then start capture
exec dbms_capture_adm.set_parameter('capture_src_to_ams','_SGA_SIZE','50');
exec dbms_capture_adm.start_capture (capture_name=>'capture_src_to_ams');
-- start apply processes
exec dbms_apply_adm.start_apply (apply_name=> 'apply_src_ams');
Then on AMS2:
-- supplemental logging
connect / as sysdba;
alter database force logging;
ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;
-- create database link
conn / as sysdba
create public database link AMS.ttv.com using 'AMS.ttv.com';
connect strmadmin/strmadmin;
create database link AMS.ttv.com connect to strmadmin identified by strmadmin;
-- setup capture queues
connect strmadmin/strmadmin
begin
dbms_streams_adm.set_up_queue(
queue_table => 'capture_dest_ams_tab',
queue_name => 'capture_dest_to_ams_q',
queue_user => 'strmadmin');
end;
-- configure capture processes
conn strmadmin/strmadmin
begin
dbms_streams_adm.add_schema_rules (
schema_name => 'ams',
streams_type => 'capture',
streams_name => 'capture_dest_to_ams',
queue_name => 'capture_dest_to_ams_q',
include_dml => true,
include_ddl => true,
inclusion_rule => true);
end;
-- configure propagation process
begin
dbms_streams_adm.add_schema_propagation_rules (
schema_name => 'ams',
streams_name => 'prop_dest_to_ams',
source_queue_name => 'capture_dest_to_ams_q',
destination_queue_name => '[email protected]',
include_dml => true,
include_ddl => true,
source_database => 'AMS2.ttv.com');
end;
-- setup apply queues
begin
dbms_streams_adm.set_up_queue(
queue_table => 'apply_dest_ams_tab',
queue_name => 'apply_dest_ams_q',
queue_user => 'strmadmin');
end;
-- configure the apply process
begin
dbms_streams_adm.add_schema_rules (
schema_name => 'ams',
streams_type => 'apply',
streams_name => 'apply_dest_ams',
queue_name => 'apply_dest_ams_q',
include_dml => true,
include_ddl => true,
source_database => 'AMS.ttv.com');
end;
-- SET parameter disable_on_error to 'N' to continue processing row LCR even it
-- encounters errors
begin
dbms_apply_adm.set_parameter (
apply_name => 'apply_dest_ams',
parameter => 'disable_on_error',
value => 'N');
end;
-- set instantiation scn
conn strmadmin/strmadmin
declare
v_scn number;
begin
v_scn := dbms_flashback.get_system_change_number();
[email protected](
source_schema_name => 'ams',
source_database_name => 'AMS2.ttv.com',
instantiation_scn => v_scn,
recursive => true);
end;
-- increase memopry to 50M then start capture
exec dbms_capture_adm.set_parameter('capture_dest_to_ams','_SGA_SIZE','50');
exec dbms_capture_adm.start_capture (capture_name=>'capture_dest_to_ams');
-- start apply processes
exec dbms_apply_adm.start_apply (apply_name=> 'apply_dest_ams');
You can use whatever names you want, those are just what I chose for my system. The thing where I set the size to 50M is due to a bug where the LOGMINER runs out of memory.
Hope this helps!

Similar Messages

  • HT5621 Hi, we have three iPhones and iPods which are currently linked to one apple ID.  I have now set up an apple id for each phone/iPod.  How do I go about re-directing the two accounts to the relevant one that has now been set up please?

    Hi, we have three iPhones and iPods which are currently linked to one apple ID.  I have now set up an apple id for each phone/iPod.  How do I go about re-directing the two accounts to the relevant one that has now been set up please?  I could do with a step by step guide to follow as am worried about loosing aps, music, photo's etc which are on the individual phones.
    Thanks
    Mandi

    On each of the phones you're gonna use a new Apple ID for iCloud: turn off Contacts, Calendars, etc. for iCloud. You'll be prompted to keep the data or delete it from the phone, then turn off iMessage, FaceTime & delete the iCloud account...Settings>iCloud...scroll down...delete account. Then, setup iCloud using the new Apple ID, turn on iMessage & Facetime.
    This will have no affect on the ID you share for iTunes content, & you can continue to do so.

  • [Athlon64] Anybody has any experience with ATI Radeon XPRESS 200P chip sets?

    Anybody has any experience with ATI Radeon XPRESS 200P chip sets?
    I am looking to purchase a computer for my wife who does not require major computing power. And looks like ATI is a cheaper option.  Any recommendations?
    Any info is greatly appreciated.

    Quote from: dannol48 on 23-June-05, 02:25:47
    The RS480M2-IL haa a CnQ option in Bios. 
    Installing the AMD driver and setting the Power Scheme to "Minimal Power Management" in Power Options is required to enable CnQ in XP.
    Danno
    Hello Danno ^^¿''
    Well, I just bought the RS480M2-IL with a Venice 3000+ and 1 GB DDR, I've tested the Video onboard(all the newest drivers installed)  with the 3DMARK  2001, and I just can get 3052 ptos...so .. please tell if you has made some time ...and how's your score?
    Oh man please tell me...maybe I made a bad choise but I was specting something better from this Mobo!!!...
    thanks and enjoy the time 
    PD: Another thing: my modo comes with the bios ver. 3.4 ...and have "The Normals falis" son I don't really know wich ver, could be better....cya..

  • Just bought the new i phone 4s, set up my apple id, verified with email. I can sign into it on the computer no problem but cannot get to it through iphone. Unable to download apps or music. let me know if anybody has any solutions, thanks

    Just bought the new i phone 4s, set up my apple id, verified with email. I can sign into it on the computer no problem but cannot get to it through iphone. Unable to download apps or music. let me know if anybody has any solutions, thanks

    If you have an old ID in Settings>iCloud as a result of updating to iOS 7, to change it you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change (you should need to verify the old account).  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Anybody has experience calling ID API web service in Java

    Hello,
    as you know we can programmatically update ID objects by call ID APIs (web service). To do that you need to import the wsdl into a java project, generate web service client and call the client to update ID objects.
    I've tried this in NWDS CE version. However I got error when generating web service client from the wsdl of the ID web service. Only the BusinessComponentService passed the ws client genertion, the rest web services do not work.
    The error I got:
    IWAB0399E Error in generating Java from WSDL:  java.lang.NullPointerException
        java.lang.NullPointerException
        at org.apache.axis.wsdl.toJava.JavaInterfaceWriter.writeOperation(JavaInterfaceWriter.java:126)
    Anybody has experience with ID API?
    Thanks
    Jayson

    HI Jayson,
    you can also request the web service directly.
    For example, you could create a local xml file with the values you want to pass to the web service and configure a file 2 soap scenario within XI itself.
    You can create interfaces for each available web service.
    You could call this scenario "ID objects generator" or something and save the .tpz for the repository objects of this scenario, since you could reuse it in other projects.
    Other than that, in Teched '08, Bill Li showed a lot of proxies developed over Java to consume the ID API web services, and they all seemed to work ok. However I do think he used NW Developers Studio 7.0 (2004s), not CE.
    I'd raise an OSS msg with SAP in order to check the problem you're getting.
    Regards,
    Henrique.

  • Anybody has the BEA JMS integration experience?

    Dear all,
    i am configuring a scenario Idoc >XI>JMS .the external JMS software  is BEA JMS server.does anybody has the integration experience?in the JMS communiction channel ,i don't know what should enter for the parameters.thanks a lot
    xiao feng

    HI Jayson,
    you can also request the web service directly.
    For example, you could create a local xml file with the values you want to pass to the web service and configure a file 2 soap scenario within XI itself.
    You can create interfaces for each available web service.
    You could call this scenario "ID objects generator" or something and save the .tpz for the repository objects of this scenario, since you could reuse it in other projects.
    Other than that, in Teched '08, Bill Li showed a lot of proxies developed over Java to consume the ID API web services, and they all seemed to work ok. However I do think he used NW Developers Studio 7.0 (2004s), not CE.
    I'd raise an OSS msg with SAP in order to check the problem you're getting.
    Regards,
    Henrique.

  • Problems Setting up a Direct Debit

    has anyone experienced any problems setting up a direct debit ??
    I've been a BT customer for approximately 20 years and have had the same account number. I've moved house a few times and retained the same account. My last house move wasn't so successful as after moving in and having broadband re set up again... I received a letter in the post saying I had requested a "termination" and a parcel was included to send my router back etc... plus... I'd be charged £100+ for the disconnection...
    Anyway I got on the phone to BT and the advisor appologised for the mix up... and suggested I cancel my direct debit with the bank to make sure the disconnection fee wasn't taken from my account..... 
    Ever since then... I have not being able to set up a direct debit online or by speaking with several BT helpdesk staff.  I email BT asking for an explaination - NOTHING.  BT helpdesk staff assure me that the direct debit will work this time and will contact me if there is a problem... again NOTHING.  I even tried writing a letter to the head of customer services... I think the name Warren Buckley rings a bell..   Someone did email me back suggesting I use the online facility.... REALLY!!  Do BT not have a fault tracking database of customer issues... so they can see I've already tried to set up the direct debit online... 
    Anyway ..... I've just noticed this forum now... so this is my latest attempt to see if anyone senior enough at BT will be embarrassed and try and sort out my account so I can start paying my bill using Direct Debit again... I'm pretty sure all that needs to happen is to be given a new account number or an account alias that can be sent to my bank. Otherwise... I'll just carry on waiting to receive the automated message from BT saying I haven't paid and then go and pay online... But I am worried one of these automated messages will arrive the day I go on a 2 week holiday and I find myself cut off when I get home... giving me more pain....
    PLEASE HELP BT ;o) 
    regards
    DaveB

    I have asked a moderator to provide assistance, they will post an invite on this thread.
    They are the only BT employees on this forum, and are a UK based team of people, who take personal ownership of your problem.
    Once you get a reply, if you click on their name, you will see a screen like this. Click on the link as shown below.
    Please do not send them a personal message, as they may not be on duty for a long time, and your message will not be tracked properly.
    For your own security, do not post any personal details, on this forum. That includes any tracking number you are give.
    They will respond either by phone or e-mail within 5-6 working days.
    Please use the tracked e-mail, to reply, not via the forum. Thanks
    This is the form you should see when you click on the link. If you do not see this form, then you have selected the wrong link.
    When you submit the form, you will receive an enquiry number, so please keep a note of it
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Java.sql.SQLException: Statement cache size has not been set

    All,
    I am trying to create a light weight SQL Layer.It uses JDBC to connect to the database via weblogic. When my application tries to connect to the database using JDBC alone (outside of weblogic) everything works fine. But when the application tries to go via weblogic I am able to run the Statement objects successfully but when I try to run PreparedStatements I get the following error:
    java.sql.SQLException: Statement cache size has not been set
    at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:138)
    at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_PoolConnection_oracle_jdbc_driver_OracleConnection_812_WLStub.prepareStatement(Unknown Source)
    i have checked the StatementCacheSize and it is 10. Is there any other setting that needs to be implemented for this to work? Has anybody seen this error before? Any help will be greatly appreciated.
    Thanks.

    Pooja Bamba wrote:
    I just noticed that I did not copy the jdbc log fully earlier. Here is the log:
    JDBC log stream started at Thu Jun 02 14:57:56 EDT 2005
    DriverManager.initialize: jdbc.drivers = null
    JDBC DriverManager initialized
    registerDriver: driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    DriverManager.getDriver("jdbc:oracle:oci:@devatl")
    trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    getDriver returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    Oracle Jdbc tracing is not avaliable in a non-debug zip/jar file
    DriverManager.getDriver("jdbc:oracle:oci:@devatl")
    trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    getDriver returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    DriverManager.getDriver("jdbc:oracle:oci:@devatl")
    trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    getDriver returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    DriverManager.getDriver("jdbc:oracle:oci:@devatl")
    trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    getDriver returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    DriverManager.getDriver("jdbc:oracle:oci:@devatl")
    trying driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    getDriver returning driver[className=oracle.jdbc.driver.OracleDriver,oracle.jdbc.driver.OracleDriver@12e0e2f]
    registerDriver: driver[className=weblogic.jdbc.jts.Driver,weblogic.jdbc.jts.Driver@c0a150]
    registerDriver: driver[className=weblogic.jdbc.pool.Driver,weblogic.jdbc.pool.Driver@17dff15]
    SQLException: SQLState(null) vendor code(17095)
    java.sql.SQLException: Statement cache size has not been set
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)Hi. Ok. This is an Oracle driver bug/problem. Please show me the pool's definition
    in the config.xml file. I'll bet you're defining the pool in an unusual way. Typically
    we don't want any driver-level pooling to be involved. It is superfluous to the functionality
    we provide, and can also conflict.
    Joe
         at oracle.jdbc.driver.OracleConnection.prepareCallWithKey(OracleConnection.java:1037)
         at weblogic.jdbc.wrapper.PoolConnection_oracle_jdbc_driver_OracleConnection.prepareCallWithKey(Unknown Source)
         at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_PoolConnection_oracle_jdbc_driver_OracleConnection.prepareCallWithKey(Unknown Source)
         at weblogic.jdbc.rmi.internal.ConnectionImpl_weblogic_jdbc_wrapper_PoolConnection_oracle_jdbc_driver_OracleConnection_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    SQLException: SQLState(null) vendor code(17095)

  • ERROR: spry:region or spry:detailregion attribute has no data set!

    here's the basics...
    i'm running fusebox for php (if that makes any difference)
    i'm also reusing the same gallery for multiple fuseactions,
    and using my circuit.xml file to set the var $gallery
    depending on which fuseaction has been called.
    the photos already exist in a database and full size and
    thumbs have already been created by imagemagick
    i plan on writing a script that uses imagemagick to get the
    dimensions of the imagefiles and saves them to four respective new
    columns in my db table (so i hope the problem isn't related to the
    height attributes not being set in my xml.... let's hope it's
    somthing else, ok?)
    i'm creating my datasets like this
    quote:
    var dsGallery = new Spry.Data.XMLDataSet("/index.php",
    "gallery", { method: "POST", postData: "do=m.get<?php echo
    $gallery ?>Gallery", headers: { "Content-Type": "text/xml" });
    var dsPhotos = new Spry.Data.XMLDataSet("/index.php",
    "gallery/photos/photo", { method: "POST", postData:
    "do=m.get<?php echo $gallery ?>Gallery", headers: {
    "Content-Type": "text/xml"});
    the output xml is perfect... here's an example
    http://www.inkincnewyork.com/index.php?do=m.getFlashGallery
    since i'm reusing the gallery, and have no need for the
    dsGalleries related functionality i did this.
    using the long way of referencing each piece of data, just to
    make sure it's all kosher
    quote:
    <div id="thumbnails" spry:region="dsPhotos dsGallery">
    <div spry:repeat="dsPhotos"
    onclick="HandleThumbnailClick('{ds_RowID}');"
    onmouseover="GrowThumbnail(this.firstChild,
    '{dsPhoto::photo/@thumbwidth}', '{dsPhoto::photo/@thumbheight}');"
    onmouseout="ShrinkThumbnail(this.firstChild);"><img
    id="tn{ds_RowID}" alt="thumbnail for {dsPhoto::photo/@thumbpath}"
    src="{dsGallery::thumbnail/@base}{dsPhoto::photo/@thumbpath}"
    width="24" height="24" style="left: 0px; right: 0px;"
    /></div>
    <p class="ClearAll"></p>
    </div>
    but i am now getting this error
    spry:region or spry:detailregion attribute has no data set!
    for each XMLDataSet
    anyone have any ideas?

    A few things I noticed when looking at your sample source
    above:
    The "Content-Type" should be the type for the post data, not
    what you expect to get back. So in your case, you should be using:
    "Content-Type": "application/x-www-form-urlencoded";
    which is the default type so you don't really have to pass it
    to the constructor unless you are posting something other than that
    type.
    Next, your {ds_RowID} data references are missing the data
    set prefix. If you use more than one data set for a given region,
    you need to use the prefix to make sure you are getting the
    ds_RowID from the correct data set.
    The error: "spry:region or spry:detailregion attribute has no
    data set!" tells me that the data sets are not defined at the time
    Spry first processes the region. Are your data sets being created
    in a script tag in the head? Or are you creating them in some
    function that gets fired off at a specific time?
    --== Kin ==--

  • Has anyone successfully set up scan to smb to mac os 10.7.x from a Konica Minolta bizhub

    Has anyone successfully set up scan to smb to mac os 10.7.x from a Konica Minolta bizhub. I'm using 10.7.3 on MacBook Pro. Don't care what model bizhub is being used as I have access to many. I've seen the posts for FTP workarounds but want to use SMB if that is an option. Any suggestions? Thank you!

    petermtnbk wrote:
    I've read other discussions that have suggested changing the format of the username and password when having login problems. I'm not familiar with NT-Status Codes. Could changing the format of the username make any difference? Something like... "workgroup/username" or "username@domain" or "domain/username" or some other combination of workgroup, domain, username, computername.
    The issue has nothing to do with the format of the user authentication. What you are reading is about the Lion Mac connecting to a Windows computer that is part of domain or workgroup. The method changed slightly compared to Snow Leopard.
    KM does support FTP so that is still an option, but I would ideally would like to set up SMB scanning. I'm not sure if KM is going to support AFP anytime soon.
    With the lack of SMB support and KM offering no alternative at this stage then I suggest you look at using FTP. While Lion removed the option to enable FTP via the Sharing pane in System Preferences, it can still be enabled via Terminal using the following command
    sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist
    You will be prompted to authenticate using your Mac's admin account & password. Once this is done, you can then configure the address on the copier to push scan using FTP. The keys are;
    The host name requires just the IP address. No leading slashes like SMB
    The path will be the folder that you want to scan to, also entered without a leading slash. For example, Desktop
    The user name will be the short name of the account who's folder you want to scan to.
    The only other option may be WebDAV if the KM supports it. We have this with our imageRUNNER ADVANCE and with a document scanned to a shared folder in the copier hard drive, we can then connect to that folder by using Finder's > Go > Connect to Server facility. You then just enter
    http://ipaddress/share
    which connects you to the shared folder and lets you see the document you scanned. You also have the facility to set subfolders for security of users documents.

  • Does anybody has a sample bootpd.plist for me?

    Hello all!
    I would like to establish my own DHCP-Server with MAC SL (Client, not the Server Edition). I recently learned that the "bootpd" shipped with MAC OSX is suitable to provide DHCP service.
    Unfortunatly, I could not find any sample config file "/etc/bootpd.plist" which would work as a starting point for me. Some sample which contains at least the basics for a simple DHCP service.
    Does anybody has a working sample for me? A "bootpd.plist" which I can place in "/etc" in order to have at least some working starting point?
    Thx for your help!

    I skipped my plan to set up a DHCP server based on bootpd. It seemed impossible to get a working sample of a bootpd.plist for MAC OSX Snow Leopard (client)
    At the same time it was rather easy to set up a DHCP Server using ISC DHCP Server:
    --> http://www.isc.org/software/dhcp
    It worked almost out of the box.

  • Order line invoiced even it has a fulfillment set value

    Hello all,
    I am facing this issue with some SO....my order lines are getting invoiced even it has the fulfillment set value...let me explain with an example:
    I have SO with 3 lines, which have the same fulfillment_set value, lets say letter "A" is the value for the 3 lines....
    When lines get closed and invoiced...i get a different invoice for each line....for example:
    Line 1 has invoice B
    Line 2 has invoice C
    Line 3 has invoice D
    Somebody know why?
    As far as i know, the 3 lines should get the same invoice number because they have the same fulfillment_set value.....
    I would appreciate to get an answer from you guys....
    Thanks in advance

    If the lines are part of the fullfilment set then they will fulfill together.
    Say you have 3 lines
    L1
    L2
    L3 and all are part of same fulfillment set , and suppose L1 and L2 are already shipped , but L3 is not yet shipped .In that case workflow for L1 and L2 will remain at FULFILL_LINE - Notified status and status for these lines will be AWAITING_FULFILLMENT, and once L3 will be shipped and workflow background process will be complete, L3 will Push itself , L1 and L2 to invoicing and finally close.
    But in your case some lines though part of Fulfillment set are already reached to either Invoiocing or closed but some other lines of same set are not yet shipped, In such a case best solution is remove the open lines from the set and progress them as Individual lines.
    check my blog eoracleapps.blogspot.com for more details.
    Regards
    eoracleapps.blogspot.com
    Edited by: 874289 on Jul 21, 2011 11:20 PM

  • Error filesystem Inode has EXTENTS_FL flag set... [SOLVED]

    archlinux i686
    ext3 partition  /dev/sda2/   system loaded at  '/'
    the system has worked with the machine for ~ 1 year.  at 'Checking Filesystems', there is a spontaneous error that is first time at this machine/system and it is new to me.
    Inode 77077 has EXTENTS_FL flag set on filesystem without extents support. [FAIL]
    system will not load after this filesystem check failed.
    I lack skill to repair this problem.  Will someone direct me to any resource?
    thank you
    Last edited by andrewjames (2010-03-31 01:54:22)

    an attempt to resolve the file system errors, loaded a system archlinux from disc to fsck.ext3 the filesystem partition /dev/sda2 that was error. 
    the fsck.ext3 first found the error at inode 77077 that number was printed at the initial error.  then fsck found more errors, at every error there was a prompt to 'CLEAR' or 'Fix' the error.  When those plurous errors happened, I exited 'control+c' the fsck to automate the repair.
    there is a switch (flag)  to fsck '-y' to answer 'yes' to all questions in attempt to repair a filesystem easier.  note, the switch '-v' prints extra description as fsck works.
    once those switches were on, the filesystem found ~1000 various errors that were automatically 'CHECK'ed or 'Fix'ed. 
    I have no list of all the various errors.  For the EXTENTS_FL error, when I queried help, there is few or no definate solutions.   Although I have interested to know causes to the errors, I think the errors are generic enough that the fsck automated is a routine solution.
    the machine has another problem to load the basic system 'BIOS', perhaps the older age.  it often beeps at load, pre operative system loader 'grub'. 
    unfortunately, after the fsck with the restore disc archlinux system that loader is now a problem.  after some forcsive machine off then on, the system may load, then I will report if the fsck worked to resolve an archlinux system that works from the filesystem at internal disc part /dev/sda2

  • Setting ip Preposition Directives - Browse button missing

    I'm familiar with setting up preposition directives but am seeing some pages not displaying the browse button used to browse to directories and/or individual files:
    This particular directive displays the browse button on the right as you can see, but like i've stated other directives don't.
    any reason why the button would be missing under some directives?
    thanks
    Ajaz

    I tried setting up new directive and it what happens is that the 'browse button' dissappears when the file server location is selected from the drop down.
    imo this has got the hallmarks of a bug because it was working....
    reloading the wcm doesn't help at all !
    raising a case now. watch this space.
    Ajaz

  • IPhone 5S: does anybody has this problem. During a successful voice call all of a sudden people can't hear me while I can hear them

    iPhone 5S: does anybody has this problem. During a successful voice call all of a sudden people can't hear me while I can hear them. Signal is strong and call quality (me hearing the other) is still very good but it looks as if I’m going on mute while I’m not muting my iPhone. When dropping the call and re-dialing it works fine again. It’s a brand new iPhone 5S but it now happened already 4 or 5 times in 2 days.
    It feels like a hardware/iOS problem and not a network issue. It happend with iOS7.03 but I just see 7.0.4 is available so will install that one now.
    Thanks in advance for feedback
    Best regards,
    Marco

    Hello Jeff,
    Thank you for providing so much detail about the issue you are experiencing with the audio on your iPhone.  I would be concerned too if the audio on my iPhone was not working unless using speaker phone.  I found an article with some steps to take when you are experiencing issues like this:
    iPhone: Can't hear through the receiver or speaker
    http://support.apple.com/kb/TS1630
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for

  • HT4623 What is the latest os for my iPad 1

    How do I upgrade my os on iPad 1 think it's on 5.1.1 can it go to 6 or 7 as required for some of latest apps

  • Populating custom field in an existing sap query

    HI, I am making changes to existing query . Query already had a qty field, now I need to display the % of qty delivered for every vendor  as a subtotal text for every vendor. I added the custom field to query and can display it as subtotal text. But

  • InDesign CC 9.2.0 Repeated Error on Launch - Duplicate InDesign.Linguistics plugin

    After updating to Adobe to InDesign 9.2.0, I receive an error on launch that there is a duplicate plugin, InDesign.Linguistics. It advises me to remove the duplicate plugin, asks me if I want to see the message again, and gives me the options No or Y

  • Can After Effects help out Premiere

    Dear, I'm using Premiere CS3. I'm editing on AspectHD, and I'd like to have my co-editor working on his machine with DV version of the footage. To have him have exactly what I've got so far, I went this way: - saved a copy of my project file - offlin

  • GetURL target IFRAME

    Hello guys and gals. I'm trying to do something which should be amazingly easy and fundamental, but which just won't work. I've looked all over the web, millions of forums, and all through flash help and still can't get a solution. Basically I'm tryi