Copying documents from a Database

I use Acrobat 9 Pro. I currently created and manage a database that has approximately 900 - 1000 scanned documents. The documents are are filed and organized for assessable use.
Question: How can I select a document(s) and e-mail those documents without deleting or permanently extracting them?

Madhu, can't you use sql*plus COPY command.
have the tns entry of both the databases on your client. even though the database names are same , change the tns string so that you can differentiate between the two.
in the sql*plus use the below command.
copy from <remote db tns> to <local db tns> create <tablename> using select * from <tablename>
Note: the "create" can be replaced with INSERT if you already have created the table here and want only the data.
type copy and enter in sql*plus you will get all COPY options.

Similar Messages

  • Requirement to programmatically copy documents from KM to a Windows folder

    We have a requirement to programmatically copy documents from KM to a Windows folder with final destination being SharePoint.  We are able to access the KM folders manually through WebDav and adding Network Place in Windows.  However, we need to do this programmatically.  Has anybody solved this puzzle?  We are looking for a .NET solution.  We have already ruled out NetWeaver Portal Drive 4.4 as a good solution because it seems is not supported for current and future hardware.
    Thanks!
    Mario

    Dear Mario
    You can use KM API to code for download of the files ,but please make sure that the server has acess to the local destop.
    1) Read the folder form KM
    2) Read Each file as a byte array
    3) write the Byte array as a file in the local desktop(Make sure for the premission )
    4) Repeat the above steps for all the file in the folder
    Regards
    Noel

  • How can I copy documents from a Sharepoint On Premises library to a Sharepoint Online library and at the same time preserving their metadata?

    How can I copy documents from a Sharepoint On Premises library to a Sharepoint Online library and at the same time preserving their metadata?
    I use the Open Explorer Windows to drag and drop the files, but the metadata are not copied. Thanks.

    To maintain the metadata you'll need to use one of the third party tools that does this kind of migration.  Metalogix has a product with a free trial that we have used before.  (Don't remember whether the free version maintains metadata or not).
     You can read about it here:
    http://www.metalogix.com/Products/Content-Matrix.aspx
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • To copy table from one database to another

    hai,
    I will be really pleased if someone can me tell me that how can i copy table from one database to another. I am having two databases.
    Gursimran

    You can Also do
    ++ Create a database link on the TARGET to SOURCE
    CREATE PUBLIC DATABASE LINK <<DBLNK_NAME>> CONNECT TO <<USER>> IDENTIFIED BY <<PASSOWORD>> USING '<<TNS_NAME>>';
    ++ And copy as below
    CREATE TABLE EMP AS SELECT * FROM EMP@DBLNK_NAME;

  • Have anybody copied Queries from "Test" database to "Production database?

    I am looking for the best method to copy queries from one database to another.  From TEST to PRODUCTION.  Other than Copy Express or Copy/Past, is there another recommended approach?  Such as within SQL?

    Hi Alain,
    Copying anything from database A to database B using SQL, means somehow using  SQL command "Insert". Please note that commands like Insert, Update, Delete are NOT SUPPORTED as it might cause data corruption.
    Kind regards
    Mario

  • Transfering- copying documents from IMac to MacBook Pro  - Migration Assistant or High Speed File share cable- which would be faster?

    I started Migration Assistant to copy documents from my IMac to my new MacBook Pro - it started off saying "About 53 hours and 40 minutes remaining" to "About 64 hours and 47 minutes remaining" - I have a High Speed File Share Cable - should I have used that?

    If you mean a FireWire cable, yes.
    Your best bet is to start over.  See the green box in Problems after using Migration Assistant

  • How do I copy recordsets from one database table to another?

    I am using the Database Connectivity Toolset, and would like to copy either one recordset or multiple recordsets from one Access table to a table in a different database. I would like to do it directly with the data in variant form, but I can't get it to work. I can get it to work(on a small test table) if I first convert my source variant data to a cluster, then insert that into the other database table. My real database has many items with a variety of date types. Can I copy directly variant to variant?

    Is it necessary to read all the data back into LabVIEW first? The reason I'm asking is that it is much more efficient to just use SQL statements to get the data you need and write that directly to the second database. I did a quick Google search on it and came up with lots of responses on what the correct syntax is for setting that up. Using an SQL command to copy the data back and forth is analogous to copying data from one file to another using the Copy file function rather than reading the entire contents of the file, converting the file string to the data arrays, converting back to a string, and then writing it back to another file.
    Chapter 5 of the Database Connectivity Toolset User Manual describes how to execute SQL queries.
    If you do need to actually
    see the data in LabVIEW first, then the only way to get it back into the other database is to convert those variants to LV datatypes and then cluster those values again and write them back out to the second database.

  • Displaying Word Document from a Database

    Let me try to explain this.
    I can upload and store a Word Document in an Oracle database
    (BLOB column) but now I need to extract that Word document and
    place a pointer to it on the Web. Can someone explain to me how
    this is done?
    I'm trying to do something like have an image displayed on
    the Web and when you click on it the Word Document is opened.
    Follow me on that? So, if there are 15 Word documents in the
    database, then the web page would have 15 images all pointing to
    each separate Word document.
    Has anyone done this?

    Don't take my word on this, but I think this should work;
    I've done this in the past to send dynamically-generated CSV files
    to the user, which is in a way (at least at the perspective of
    what's being outputted to the user) the same thing.
    First, obviously, you need to retrieve the Word document data
    from the database. We'll say you put that in a variable called
    'wordDoc'.
    <cfset wordDoc = someQuery.wordDataObj />
    Next, we need to set the 'Content-disposition' HTTP header,
    to tell the client's browser that we're sending a file, and that we
    want you to call it somefile.doc by default. We'll do this with the
    <cfheader> tag (note that if you use <cfflush> in the
    application, this tag (and thus, this approach)
    will not work.
    <cfheader name="Content-disposition" value="attachment;
    filename=somefile.doc" />
    Almost there. Now we need to set the Content-type HTTP
    header, to tell the browser what kind of data is coming, and then
    give it the actual file data. We'll use the <cfcontent> tag
    to do both of these things.
    <cfcontent type="application/msword"
    reset="yes">#wordDoc#</cfcontent><cfabort>
    If memory serves, this should be all you need. Note the
    <cfabort> after the closing <cfcontent> tag, I've had
    problems in the past with additional output on the page after these
    tags being appended to what gets sent to the browser, so I use a
    <cfabort> afterwards to make sure nothing more gets sent
    after the data we want. Also, at least with CFMX7, I've noticed
    that debugging output tends to get added in too regardless, so I
    typically put a <cfsetting showdebugoutput="false" /> at the
    top of the file, too.
    I can't guarantee this will work, I haven't tested this
    particular situation, but if it doesn't, it ought to be close. Let
    me know if I'm wrong.
    Attached is what should be the code without my commentary /
    rambling interspersed.

  • Copy documents from one repository to another

    Hi all
    We have a scenario. We need to copy content from one repositoy to another when
    1.  a new document is created.
    2. the same document is updated. (replication should happen automatically, immediately)
    Is it possible? If yes, how?
    Regards
    Aparnna

    Hi
    I have done all the configurations according to the following document
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/802c1739-d270-2910-ad9f-f369de07c1bf">Link to the document</a>
    But the current status of the offer is still "ICE_INITIAL"
    Please help me to sort this out
    Regards
    Aparnna

  • Copy table from one database to another database

    Hi,
    I am new to SQL and I have a question on copying a table.
    QUE: copy one table with huge data(around 60millions of rows) from one database to another database(have to create a new table) in the same server. 

    Hi ,
    By mistake ,I understood you want to copy on different server .
    I have rectify above.On same server we can copy Table in many way ;
    As I mentioned Above you can use ;
    select * into [Destination Database].[dbo].[NewTableName] from [SourceDatabase].[dbo].[Category]
    Second;
    select * into [Destination Database].[dbo].[NewTableName] from [SourceDatabase].[dbo].[Category] Where 1=2
    Insert into [Destination Database].[dbo].[NewTableName]
    select * from [SourceDatabase].[dbo].[Category]
    Thanks

  • How could I copy contraints from one database to another?

    Hi,
    I have a specific problem.
    I have taken a datadump and executed in another database. Some how the contraints were not copied.
    So I created following script to genrated alter statement and then run the script in target database:
    declare
    cursor get_cons is
    select distinct dc.table_name table_name, decode ( substr(dc.constraint_name,1,3), 'SYS', ' ', 'CONSTRAINT ' dc.constraint_name ) contraint, wmsys.wm_concat(ucc.column_name) over ( partition by dc.constraint_name order by dc.constraint_name ) cols
    from user_constraints dc,
    user_cons_columns ucc
    where dc.table_name like '%'
    and dc.constraint_type = 'P'
    and dc.table_name = ucc.table_name
    and dc.constraint_name = ucc.constraint_name;
    lv_sql varchar2(2000);
    begin
    for i in get_cons
    loop
    lv_sql := 'ALTER TABLE '
    I.TABLE_NAME
    +' ADD ('+
    i.contraint
    +' PRIMARY KEY ( '+
    I.COLS
    +' )); ';+
    dbms_output.put_line( lv_sql );
    end loop;
    end;
    Is there a better way to do it?
    Thank You,
    Ranjeeth

    Hi,
    do u have idea about move data from development environment to production environment.
    what is the simpleast way. suppose if we refer DATAPUMP or EXP/IMP. How to do it.
    through EXP command i am exporting full database or specified tables. but problem is i am not able import which i exported tables.
    can u give me the steps to how to import .DMP files through command prompt.
    Thanks
    Venkat.

  • Best way to copy table from one database to any other database

    I need to write an application to perform database table copy from one kind of database to another kind of database.
    I just wrote a simple JDBC program which essentially does the something like below:
    PreparedStatement statement = null;
    ResultSet rs = null;
    try
    System.out.println("insertSQL:" + insertSQL.toString());      
    statement = target.prepareStatement(insertSQL.toString());
    System.out.println("selectSQL:" + selectSQL.toString());
    rs = source.executeQuery(selectSQL.toString());
    int rows = 0;
    while (rs.next())
    rows++;
    for (int i = 1; i <= columns.size(); i++)
    statement.setString(i, rs.getString(i));
    statement.execute();
    System.out.println("Copied " + rows + " rows.");
    But problem with this one is that it takes lot of time( more than 60 mins) for 100k records transfer. Would there be any faster way to do this?
    TIA...

    Thanks...
    I am using now batch update mechanism and set the fetchsize of resultSet cursor.
    Now I need to copy a table with almost 10 million records to the target database. My program works fine but it takes more than 3 hours.
    I am copying from Postgres table to MS SQL server table.
    Is there any other way or more better appraoch to make this more faster?
    TIA..

  • Copying data from other database

    I'm trying to create Job Schedule, which involve 2 diff database (Oracle & Visual Foxpro). But when i create database link, and try VF connection i got this error ORA-06401: NETCMN : invalid driver designator.
    PS: I already create connection VF thru ODBC, its work fine if im using SQLPlus and connect directly. only error if using database link, any suggestion?

    Susmita,
    I gave
    [copy]
    COPY from scott/tiger@ora52 to scott/tiger@ora87 insert emp using (select * from emp);
    [copy]
    The following error has occured..
    [copy]
    SQL* plus command ignored.
    invalid sql command...
    [copy]
    Thank you
    Edited by: user636482 on Apr 29, 2009 5:17 AM

  • Error when deleting or updating document from indexed database

    I have a transactionally protected encrypted, indexed database for which I want to update and delete documents. When I try to delete or update the documents I get an exception stating that the document does not exist (even if I retrieved it, modified its contents and attempted to update it). If I do the same procedure on an identical database (with no indexing) I have no issues and am able to both delete and update. I have experienced this problem from both the dbxml shell and from a C++ program. I am using version 2.2.13.
    Has anyone experienced this before or know of a workaround?
    Doug

    I have narrowed it down to a single boolean index. I cannot figure out why this specific index is causing the issues. I use the same function to write the xml entry as for all of the other boolean values that are indexed. All of its values seem valid (true or false), so I am puzzled.
    Doug

  • How to copy documents from SOLAR02 configuration structure into Solution

    Hi,
    in SOLOA02 we have stored our cross scenario configuration in the solution structure on top level node 'configuration' as described in the help 'Implementation and Upgrade Projects'->'projects'->'configuration'->'Edit cross scenario configuration'.
    During hand-over from project to support I want to copy the information stored under configuration into our solution directory (TC SOLUTION_DIRECTORY). In the solution structure there is no top level node 'configuration'. Only 'Org Unkits, Master Dtaa, Business Scenarios, Interface Scenarios, Systems, Servers.
    Can I customize the default solution structure and add the missing node? Is there another way to copy the documents?
    Best regards,
    Peter

    Hi Peter,
    the only way to relate the configuration structure from a project to a solution is via a maintenance project. You need to assign a maintenance project to your solution (on the solution settings tab). This will create a solution node in the maintenance project. You can now copy the configuration structure from your implementation project to the configuration structure underneath the solution node of the maintenance project.
    Best regards,
    Michael

Maybe you are looking for

  • Upgrading to Mac OS 10.4.X  from Mac OS 10.3.9

    Hi, I just finally gave in and ordered my Mac OS 10.4 full retail install (CD-ROM) for my eMac USB 2.0. First, this is an odd upgrade set containing Mac OS 10.4, and it's on CDs not DVDs? Isn't this quite odd or what? Maybe it was a odd-lot made by A

  • Dynamic picture in Smart forms

    hi all, i need to include the  picture of am employee dynamically in the smart form deponding on the personnel no selected .so each page will need to include the picture. how to create graphics node dynamically / assign the picture . can any one tell

  • Ok the help is needed i need this help so i can graduate

    How do you go about writing the code to change the font size in my program my cluster in High school is computer programming and i haven't begun to learn Java at school yet so i am now learning by myself at home but i have a 80 year old book and i ne

  • Building Field Symbols Dynamically

    Hi All, Has anyone tried to build field symbols dynamically? something like this...   DATA: field_symbol(13) TYPE c,         v_lines          TYPE sy-tabix,         v_count(2)       TYPE n.   FIELD-SYMBOLS: <f2> TYPE ANY.   DESCRIBE TABLE itab LINES

  • Mac Mail, iPhone, Edge versus WiFi (Corporate Settings)

    I have Mac mail set up fine on the iPhone it works O.K. on Edge at the usual AT&T speed, but I am seeing issues when trying to access the web and Mac Mail through my work's WiFi network. They offer a "public access" (this is a hospital), that when yo