Import rename and export rename

Hi,
I've figured out how to rename images on import to "literal"_"yymmdd"_sequence (and that works fine), but I'd also like to use a directory structure of bucket_{job number} where job number if a number that I increase from time to time. Can I do that with the filename templates?
Also (and more important!) I need to rename the files on export to the main players names (I shoot sports) followed by the original yyymmdd_sequence number from the original name. I figure if I put the main players names into the title IPTC field, I can then put that at the start of the existing file name, but I need a way to only use the YYMMDD_sequence of the original name, and not the original literal.
This is the naming sequence for most of the pubished shots, so I'd like to automate it as it's the one that takes the time!
I tried to find documentation on the filename template's, but cannot find the detailed stuff. Pointers for a newbie would be appreciated!
Thanks.
Merv.

I have a related issue: My Panasonic camera (DMC GH-1) uses filenames like TDDDNNNN.EEE, where "EEE" is the Extension (usually jpg, maybe rw2), T ist the Type ("P" (sRGB) or "_" (AdobeRGB)), DDD is the directory Number (initially "100"), and NNNN is the sequence number. That sounds fine, but there is a problem: The shot following P1000999.jpg is not P1001000.jpg, but P1010000.jpg. That is only three digits of NNNN are used, and the directory number is incremented after 1000 shots (not after 10000). Well, it could be a firmware bug in the Panasonic, but I'd like to be able to fix those names using sequence numbers like "DDD * 1000 + NNNN". I could not find out how to do that.
BTW: May older Canon PowerShot Pro 1 used a new directory every 100 shots, but it used all four digits in the files's sequence number (the directory is not part of the image file name there).

Similar Messages

  • Import, edit, and export QuickTime document: wise? how to maintain quality?

    Can iMovie HD 6.0.3 be used to import a reasonably-high-quality QuickTime file (Apple Graphics compression), edit it, and export to Quicktime, all resulting in a QuickTime file with the same clarity as the original?
    I have a quicktime file that captures a demonstration on my desktop. It was recorded with SnapZ Pro (with movie option) into this format: Apple Graphics, 889 x 500, 256, IMA 4:1, Mono, 22.050 kHz. (Note: I got 889x500 when I constrained SnapZ to a 16x9 format.)
    I need to clip out sections, rerecord some of the audio, insert snippets of replacement video (re-recorded). I have Quicktime 7.1.3 Pro, but I had this idea it would be easier to do this editing with IMovie HD 6.0.3.
    My problem is that everything I export has noticeably worse quality than the original source. I have tried all sorts of projects (DV, HDV, MPEG-4, ISight). I've tried exports at full quality, lower quality, various expert settings.
    For example:
    - Create a DV-Widescreen project.
    - Import the movie. What I see on the screen is slightly smaller (in both dimensions) than the QuickTime Player shows me, and quite noticeably blurrier.
    - Picking Expert export, I use Compression: Graphics, Depth: Color, Quality: Best, key frame rate 24, Dimensions 889x500, Scale: Letterbox.
    - The QuickTime file displays as the right size, with a tiny black border for letterboxing, and with crummy quality (text has shadows, making it worse than just blurry.) All this despite being 30MB from a 3.2MB original.
    Quite likely, I'm using the wrong tool. I don't have a camcorder - I don't even have a TV - so I don't know any of the jargon. What would be the right tool for this task? Stick to Quicktime Pro?
    MacBook   Mac OS X (10.4.8)  

    How would Final Cut Express work for editing quicktime as above?
    same answer:
    FCE handles dv/NTSC/PAL only ...-
    for sure, you can import "any format/res" ...- with loss of quality, if import doesn't fit standards...- and: FCE is the "more mightier" tool, means, you can easiely arrange two/many videos in one picture, arrange them, position them ...-
    if you want to stay with your original settings, you have to use QTpro (less convenient) or FCP (less cheap) ...

  • Import-csv and export-csv

     Hi everyone,
    How do I modify the script so that I see all the entries in the computers_result.csv file.  As it stands only the last entry in the computers.csv shoes up in the computers_result.csv file.  Thanks so much.
    Import-Csv C:\computers.csv | ForEach-Object {
    $computername = $_.computer
    $result = get-adcomputer $computername -Properties description  | select Name,Description
    $result | export-csv C:\computers_result.csv

    Try this and let me know
    $result = @()
    Import-Csv C:\computers.csv | ForEach-Object {
    $computername = $_.computer
    $result += get-adcomputer $computername -Properties description | select Name,Description
    $result | export-csv C:\computers_result.csv
    Regards Chen V [MCTS SharePoint 2010]

  • Import pef and export dng

    I can import .pef files into elements 5.0 and make changes fine. I would like to know if I can export those altered files to a dng file format. When I try to export the dng file format does not appear. Do I need another plugin? I have already installed the latest (dated 03/02/2007) camera raw.8bi into the c:\program files\adobe\photoshop elements 5.0\plug-ins\file formats directory already.

    I am trying to save pef as dng in the organizer portion not the editor. When I click on export I see options for original format, jpg, png, tiff and psd. I do not see a dng option. I am also evaluating Lightroom 1.0 and it does have dng as save as option. Is there another plugin I need for Elements 5.0 to save a dng file?

  • MAXL Import Database (and export data?)

    I have an import database MAXL command that is working great (sql account and password substituted).  The rule file has a SQL connection to our ERP. 
    MAXL> import database PLANNING.DetView data connect as sql_account identified by "Password" using rules_file "'\\\oceanus-d13\\Oracle\\Middleware\\user_projects\\epmsystem3\\EssbaseServer\\essbaseserver1\\app\\PLANNING\\DetView\\NLIncur.rul'" on error write to "'G:\\DB_Process\\DetView_Process\\errors\\DetView_NLIncur_data_load.mxl.err'";
    We are going to run this on a nightly basis and our requirement is to have a historical record of what was "pulled" from our ERP (even if it didn't make it in to Hyperion).
    Here are the options that I've thought of:
    Have a separate SSIS package use the same SQL to dump the data out of the ERP database into a flat file.  The downside to this is that I'm using subvars from Essbase that don't exist in SQL.  So I'd have to write the SQL in a different way potentially causing discrepancies.
    A separate Data Export of what was loaded.  The downside here is that it doesn't have the errors that never made it in.
    I can't find another option in the import database command to spool the output of the SQL to a file. 
    Does anybody have thoughts on how to do this or are there other ways to achieve what I'm trying to do?
    Thanks-
    Cameron McClurg

    The SQL run via the load rule understands my subvars.  The load rule SQL looks like this:
    select...
    WHERE
      AND (('1' = '&IncSpanYr' --IF THE PERIODS SPAN YEARS
      AND (('12' = '&CurMoNm' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
      AND ((A.FISCAL_YEAR = '&CurYrNm' AND A.ACCOUNTING_PERIOD IN ('&PriMoNm', '&CurMoNm'))
    This turns into:
    WHERE
      AND (('1' = '1' --IF THE PERIODS SPAN YEARS
      AND (('12' = '12' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
      AND ((A.FISCAL_YEAR = '2014' AND A.ACCOUNTING_PERIOD IN ('2', '3'))
    My issue is getting a dump of all that data that the SQL is pulling.  I don't see a way to do that in the import database command.  A separate job on the SQL side (like SSIS) could pull the data, but can't access the subvars easily.  Does that make sense?  Or did I misunderstand your suggestion?
    Thanks-
    Cameron

  • How do I get my videos imported 1080, and exported as 1080?

    I have no idea what I am doing wrong. I have a GoPro hero3 black edition. When I import I import into imovie, make my movie, and whenver I want to export to youtube, quicktime, as a movie, etc., it never gives me 1080 option. I upload it to youtube and the 720 looks like crap. Grainy and not what I see when I am editing the movie. I want to be able to have it be clear in 1080 but this is really getting on my nerves...
    Anyone?

    Oh, unless you shot tall.
    If you shoot vertical/tall video it cannot be zoomed all the way out in the exit.
    Shoot wide, or edit in a different editing app.

  • Import AVCHD and Export in Full 1080 HD

    Hello,
    I have a Sony AVCHD handycam that records to a memory stick. Up until now, I have been using iMovie 08 on my iMac Intel Core Duo, but I am limited to iMovie's 'Large' (960x540) setting for my export options. I have tried exporting using Quicktime (tried several different option settings), but for whatever reason I cannot get a good result...it produces jerky and unusable video. The 960x540 looks ok, but I am trying to preserve my original 1080 HD resolution.
    Would Final Cut Express be the answer, or does it use the same type of export settings as iMovie 08?
    Thanks,
    Kenton

    You're probably exporting to a format and data rate that's too high for your computer's capabilities. The exporting application will make no difference. If your drives aren't fast enough to sustain high definition material at a high data rate it's always going to look choppy when played back full screen.

  • Function modue which imports belnr and exports vbeln?

    hi all,
    can anyone tell me if there is any function module in which if i pass accounting document(belnr) i get the corresponding billing document(vbeln)..

    You can also try:
      DATA: v_reference    TYPE bkpf-awtyp,           "Reference procedure
            v_objectkey    TYPE bkpf-awkey.           "Object key
        v_objectkey = billing_doc.       
        v_reference  = 'VBRK'.
        SELECT SINGLE bukrs belnr gjahr               "Accounting Doc Header
          FROM bkpf
          INTO doc_int
          WHERE awtyp =  v_reference
            AND awkey =  v_objectkey.
    Rob

  • Can the screen be cropped to and exported at a custom aspect ratio?

    I think I'm needing Premier to do something it's just not designed to do. What I need to do is to take five or six different screen and audio captures of the same event (a 3D virtual reality instructional session), each representing a different person's view of that event, assemble those in a split screen, synchronize them to the designated "main" capture's audio, delete the other audio tracks, and add CG title labeling each one. The effect is like looking at a display showing six security camera images. From what I can determine, it is possible to do those things in Premier.
    However, what I then need to do is to crop out any extra space to the left and right of that split-screen image and export the file as a .mov with the aspect ratio produced by the cropping so that the videos are as large as possible and are not distorted from resizing them to fit the standard aspect ratio. Depending on the size of the screencaps, the resulting .mov might have nearly a 1:1 ratio. What is critical for this is that the video be as large as possible and the "black" space be as small as possible so that the person who comes in later to analyze these composite videos can see everything  as clearly as possible. I also need to crop on the fly; because these images aren't always captured at the same size, it is impossible to preset a size for the resulting video.
    We've been using a screen capture tool to do this that works but is a pain; clips can only be moved and resized by mouse-drags, and the software has to import to and export from its own proprietary format, which is very slow. However, ever piece of "real" video editing software I've looked at only seems to export in TV or film aspect ratios. Quicktime Pro looked for a bit like the best bet, but it doesn't seem to be able to handle multiple audio tracks (which are necessary since I have to synchronize tracks by ear much of the time).
    Is what I'm describing--exporting .mov files while preserving custom aspect ratios that are created by cropping during editing--something Premier can do? If so, would it be something fairly easy for complete novices to do?

    medeamajic wrote:
    On a Mac based system ScreenFlow might work best but on the PC side FRAPS might work best. You can do what you want to do with Premiere Pro once you record the screen capture. As Stephen_Spider mentioned you might need to crop and even resize the images. FRAPS can record at 1/4 the screen resolution and still have decent results. PP CS 5.5 can play several layers (6 PIPs) of the FRAPS codec at 1/4 resolution in realtime.
    Thanks, but we cannot change the screen recording process. According to the study's protocols, the virtual world has to be full-screen or almost nearly so during the session, and that full screen has to be captured for analysis. Resizing the screen captures is not a problem (especially since I already said I'm doing that), but if you're saying that Premier can only play back up to six screen captures simultaneously if they're captured at 1/4 screen, then that's a deal-breaker right there.
    By the way, here's approximately what each of the completed composite videos looks like:
    Screencap 1
    Screencap 2
    Screencap 3
    Screencap 4
    Screencap 5
    Screencap 6
    Each screencaptures is resized to the largest consistent size that will fit into this format, and then the resulting video is cropped to the outside border. If there are only five screencaptures, I simply center the single one on the bottom on the "center line."
    And, to be clear (though I've said this several times already), this is something that is already being done. We probably have more than 60 of these .mov files, each around 45 minutes long, with five or six synchronized screen captures in each. Frame rate etc. has not been any issue with these, and neither has playback of the .mov file from HD or DVD.
    Message was edited by: singerm2

  • How to enable Validate and Export in FDM task

    Hi everyone
    I am working with setting up an FDM Task to Import, Validate and Export data to HFM.
    The Task is able to import data to FDM, but I cannot make the process start the Validate and Export functions. If I do the process manually, then data is imported to HFM succesfully.
    Am I missing something in the scripts or do I need to enable some feature in FDM?
    Action Script:
    Sub BatchLoadLedgerTrans()
    'Declare Local Variables
    Dim lngProcessLevel
    Dim strDelimiter
    Dim blnAutoMapCorrect
    'Initialize Variables
    lngProcessLevel = 50   'Import
    strDelimiter = "_"
    blnAutoMapCorrect = 0
    'Create the file collection
    Set BATCHENG.PcolFiles = BATCHENG.fFileCollectionCreate(CStr(strDelimiter), FileName)
    'Execute a Standard Serial batch
    BATCHENG.mFileCollectionProcess BATCHENG.PcolFiles, CLng(lngProcessLevel), , CBool(blnAutoMapCorrect)
    End Sub Integration Script:
    Function LedgerTrans_EDW_to_HFM(strLoc, lngCatKey, dblPerKey, strWorkTableName)
    Dim objSS 'ADODB.Connection
    Dim strSQL 'SQL String
    Dim rs 'Recordset
    Dim rsAppend 'tTB table append rs Object
    'Initialize objects
    Set cnSS = CreateObject("ADODB.Connection")
    Set rs = CreateObject("ADODB.Recordset")
    Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)
    cnss.open "Provider=SQLNCLI11; Data Source=10.250.200.10; Initial Catalog=EDW; User ID=FDM-user; Password=MyPassword"
    cnss.CommandTimeout = 0
    'Create query String - VIEW
    strSQL = "Select * "
    strSQL = strSQL & "FROM EDW.hfm.ledgertranstable "
    'Get data
    rs.Open strSQL, cnSS
    'Check For data
    If rs.bof And rs.eof Then
    RES.PlngActionType = 2
    RES.PstrActionValue = "No Records To load!"
    Exit Function
    End If
    'Loop through records And append To tTB table In location’s DB
    If Not rs.bof And Not rs.eof Then
    Do While Not rs.eof
    rsAppend.AddNew
    rsAppend.Fields("PartitionKey") = RES.PlngLocKey
    rsAppend.Fields("CatKey") = lngCatKey ' PlngCatKey
    rsAppend.Fields("PeriodKey") = dblPerKey ' PlngCatKey
    rsAppend.Fields("DataView") = "YTD"
    rsAppend.Fields("CalcAcctType") = 9
    rsAppend.Fields("Account") = rs.fields(2).Value
    rsAppend.Fields("Desc1") = rs.fields(2).Value
    rsAppend.Fields("Entity") = rs.fields(6).Value
    rsAppend.Fields("ICP") = rs.fields(8).Value
    rsAppend.Fields("Amount") = rs.fields(14).Value
    rsAppend.Fields("UD1") = rs.fields(5).Value
    rsAppend.Fields("UD2") = rs.fields(9).Value
    rsAppend.Fields("UD3") = rs.fields(10).Value
    rsAppend.Fields("UD4") = rs.fields(7).Value
    rsAppend.Fields("UD5") = rs.fields(13).Value
    rsAppend.Update
    rs.movenext
    Loop
    End If
    'Records loaded
    RES.PlngActionType = 6
    RES.PstrActionValue = "SQL Import successful!"
    'Assign Return value
    LedgerTrans_EDW_to_HFM = True
    End Function Best regards
    Frederik
    Edited by: Frederik Andersen on Jun 1, 2013 1:32 AM

    Found the solution.
    The variable lngProcessLevel should be set to "12" to execute the full Import, Validate and Export.
    Best regards
    Frederik

  • I am Furious. I updated to 12.1 and went from 1400 songs to 28. I have tried everything I can from online including moving previous libray and renaming, uninstall/reinstall/repair, importing xml and nothing.  Any suggestions?

    I am Furious. I updated to 12.1 and went from 1400 songs to 28. I have tried everything I can from online including moving previous libray and renaming, uninstall/reinstall/repair, importing xml and nothing. Any suggestions?

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • SQL Server Import and Export Wizard Issue

    i am trying to export SQL data into excel to send out weekly reports.  I have created a view and a SQL account has access to this view; however, I am unable to successfully export the data.  In preview I see all of the data yet it fails on the
    Pre-execute with the below.  It creates the excel file with just the header.  I am using SQL 2014 and loaded the 64 bit AccessDatabaseengine.  I am selecting excel 2007.  Any ideas welcome.
    Messages
    Error 0xc0202009: Data Flow Task 1: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E37.
     (SQL Server Import and Export Wizard)
    Error 0xc02020e8: Data Flow Task 1: Opening a rowset for "WeeklyList" failed. Check that the object exists in the database.
     (SQL Server Import and Export Wizard)
    Error 0xc004701a: Data Flow Task 1: Destination - WeeklyList failed the pre-execute phase and returned error code 0xC02020E8.
     (SQL Server Import and Export Wizard)

    Hi astro,
    Please ensure that you haven’t renamed or moved the destination excel file during the exporting process. Also make sure that “Create destination table” option is checked as below screenshot and the SQL statement is correct.
    For more details about using SQL Server Import/Export Wizard to export data from a SQL Server database to an Excel spreadsheet, please review the below blog.
    http://www.mssqltips.com/sqlservertutorial/202/simple-way-to-export-data-from-sql-server/
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • Import and Export settings and presets

    Thanks in advance.
    Where can I save all the different import and export settings? Like if I just want to export Quicktime with audio and save that setting so I don't have to reset it every time. Thanks

    I don't think you can in QT... You can in FCP by selecting CUSTOM as your setting when exporting to QT. Just rename the settings from custom to what you'd like it to be.

  • Import // rename photos

    does anybody know
    how can I replace about 2000 photos in indesign without having to import and rename the photos?
    for example if I have 4 photos in a document, named A,B,C,D located in a folder named X
    and I want to replace them with 4 different photos, named E,F,G,H located in a folder named Y , is there a possible way to do it automatically instead of manually?

    I got that.. is just an endless procedure to re-link each image...as well as rebuilding from scratch (with bridge contact sheet)
    I cannot rename the images because they belong to specific libraries and they ought to have the specific names however
    your second suggestion "export the file to a .inx file and open the file in a text editor, like notepad or something, and then find the reference to a.tiff and replace it with b.tiff.", might be faster because I already have txt files listing the images. SO the replacement in a notepad of a.tiff to b.tiff its more than easy.
    if I do  that what could you please tell me what is the next step in order for my initial .indd file to take the information from .inx file?
    --- Στις Τετ., 06/05/09, ο/η Eugene Tyson <[email protected]> έγραψε:
    Από: Eugene Tyson <[email protected]>
    Θέμα: import // rename photos
    Προς: "ioanna antoniadi" <[email protected]>
    Ημερομηνία: Τετάρτη, 6 Μάιος 2009, 15:41
    You basically have to tell indesign what image you want to link to. If you say that you want to link to a.tiff and then you want to change the image to b.tiff you have to Relink the image. As all indesign sees is a path to the file, i.e., c:\mydocuments\eugene\images\a.tiff
    InDesign has no way of reading your mind and inserting the b.tiff instead.
    The only other way to do it is to rename b.tiff to be a.tiff
    Or if you export the file to a .inx file and open the file in a text editor, like notepad or something, and then find the reference to a.tiff and replace it with b.tiff.
    But you don't want to do that.
    What I'd do is load up my cursor with all the images I wanted to place and go to each image and just click on it to insert the new image.
    or
    I'd select the images in the links panel (Window>Links) and choose Relink, and then when prompted to relink A.tiff I'd choose b.tiff, and when prompted for the next image I'd select the new image I wanted to place.
    But InDesign won't be able to read your mind, you have to tell it what image you want to replace the other image.

  • History on import and export

    MDM can manage history of files imported or exported ?

    If you use the Port concept for importing and exporting data, there is a Archive Folder.
    Once the file is imported successfully from the Ready Folder, the same file is renamed and saved in the Archive folder.
    Refer to the Port Concept in MDM Console guide and Import Manager reference guide.
    Thesse directories are created automatically when you create a port.
    Hope this helps,
    Please mark helpful answers

  • Serious File Import / Renaming Problem for Professional Photographer

    I'm a professional photographer who imports thousands of photos from several CF cards from several photographers using several different brands of cameras. I recently came across the following problem.
    CASE #1: If you import a CR2 and a NEF file into the same directory, both with the same capture time, in two different import processes, and rename them at the time of import to the capture time of HHMMSS, then you end up with two files in the same directory with the same filename and different extensions. This is a big problem. It's common to have two photographers shooting with two different camera brands at big events. When this renaming issue happens, and those filenames remain the same, only a single XMP file is ever written. Additionally, only a single JPG can be generated from the RAW file; one will overwrite the other.
    CASE #2: If you import a CR2 and a NEF file into the same directory, both with the same capture time, in a single import process from a local drive, and set the import to rename the files at the time of import to the capture time of HHMMSS, then you end up with an error message that states that neither file can be renamed. I haven't hit this in my environment but I uncovered it in my testing for this issue.
    CASE #3: If you rename a CR2 and a NEF file in the same directory, both with the same capture time but with different file names, and set the Library > Rename Photos... process to use the capture time of HHMMSS, then the files will be renamed properly, except one of the files will automatically have a “-1” appended to it (prior to the differing extension). This is the way I think it should work for both CASE #1 and CASE #2.
    I only just now discovered this problem. I'm not sure it was present on previous releases but if so, I'm scared to think of how many files were never exported as JPGs to my customers. In the last event that I processed, I discovered 20 photos (40 files) that were shown to exhibit this problem.
    How do I get this addressed by Adobe? I don't want to use the Rename function after every muliple card import just to work around this problem!

    RobGreerPhotography wrote:
    It sure does feel like you're trolling here. Given the fact  that I successfully manage over 100,000 client images annually and I've been  successfully following this naming convention for the last six years, I  think I know a little bit about how I need to go about manaing my own  files. File naming is key component of my DAM and my office automation.  Until you've walked in my shoes for a few years, you can't speak to the  best way to run my business or my file management. Well, you can, but  you'd probably be wrong.
    My comments were definitely not "trolling", unless you mean I had a hook in the water looking for a bite. In which case: success!
    You may have all the reason in the world to think your way is the best, but the more you explain it, the less I am convinced. Even pros have to reconsider less ideal workflows. In fact, it is often pros that insist on sticking to old busted workflows that were crafted around earlier, less capable tools.
    And, yes, depending primarily on a filename created at import (before you have even looked at the images) for the core of your DAM workflow is, well, not DAM. Your blunt, and yet strangely constricted, file-naming pattern is obviously not really helping you, and yet your first response is to blame the tool. There is a famous platitude in there somewhere.
    There is a lot of good advice else-thread. You should at least heed some of it. Because the /combined/ experience here will always exceed personal experience.
    You have been given a lot of good workarounds for your situation, and gentle advice to consider how image metadata can be used post-import in a more nuanced manner, as well as a place to raise a feature request.
    It isn't trolling to point out that none of this seems to satisfy you, and it appears to be because some folks are not immediately agreeing whole-heartedly with you.  But you are welcome to take what you want, if anything, from my comments.

Maybe you are looking for

  • How do you upgrade TP Link w8960N on a mac

    Is anyone else having this problem? I bought a TP Link w8960n modem/router version 3, but every now and then my Time Capsule drops its signal. I am trying to upgrade the TP Link's firmware through its website which clearly states Mac users are suppor

  • How can I access my stored files from a previous backup?

    I recently had to restore my Macbook and I backed up my files on a Lacie hard drive. However, now when I try to access those files It says that I do not have permission. Is there any way to access important files without having to do a full restore o

  • Every time i lock my iPhone 5 the time stays the same for when i unlock it, any help?

    I have an iPhone 5 and every time i lock it ( press the sleep button ) it will keep that time so when i next unlock it displays the time of when i locked it. example, i lock it a 7:10pm and half an hour later i will unlock it but it sill say its 7:10

  • XMLQuery (XQuery) with namespace

    I'm pretty new to XML/XQuery and have the following problem. I've got a DB outside oracle which is the same as I got in Oracle (10.2.0.1.0). Using XMLSpy I can make a simple query with a default namespace that gives me an XML document. xquery version

  • Host Central Admin from different server

    Hi, I have central admin on one of my application servers. it is working fine. Now, the server which hosts Central Admin will be shut down as a part of DR testing. Once this goes down, Central Admin will not be accessible. Is there any way to make it