Sorting data for export

I need to use one form (a questionnaire) with various groups.  Will the data for everyone who completes my form always be appended to the same file for export?  Can I export only part of the data (i.e. that for a specific group) instead of all of it every time?  Maybe include a required field called password that I can use as a filter variable before exporting?

All of the data is put into a single response tab. You can filter the data and only export what is shown.
Randy

Similar Messages

  • 'Preparing data for exporting' takes forever (Urgent, please help)

    Hello,
    I'm currrently editing a 1920x800 anamorphic Full HD project on Premiere Pro CS5. The original full HD clips were replaced with AE-comps using Dynamic link for color grading. The project is 15 minutes long and mainly consists of linked AE-comps. The sound is filled with gunshot sound effects, music and original recorded audio. That audio is also linked with Soundbooth for some postwork.
    Here's the problem: when i hit the 'Export' on Premiere pro I get the window, i choose my settings (H.264 10 mbps) and then when I hit the 'Qeue' button it shows the progress bar 'Preparing data for export' and Media Encoder starts up normally. The problem is nothing happens afterwards. The project doesn't get loaded in AME and the progress bar keeps on telling forever that it's 'preparing data for export' Normally this process only takes up a minute or 2 max. How can i fix this?
    Editing rig:
    27 inch imac
    4 gigs ram
    2.53 i5 processor
    ATI 4850
    Please help me with this, my deadline is within 4 hours
    Thank you!

    I have some suggestions you can try.
    1. Can you try exporting directly from inside Premiere, instead of adding to AME from PR?
    - press the Export button inside the Export Settings Dialog, not the Queue button
    2. Can you import the sequence directly into AME?
    - launch AME, File menu\Add Premiere Pro Sequence
    3. Try using a different format other than, H.264.
    4. Try using PR CS5.5. You can download the trial version and use it for 30 days.
    Hope this helps. If not, please re-post with test results.
    Thanks

  • Issue sorting dates in export to excel

    After exporting to excel, the end-user wants to sort on a date characteristic (posting date), using excel functionalities. This gives an incorrect result:
    01.01.2006
    01.01.2007
    01.02.2006
    01.02.2007
    If we sort on a time characteristic (calendar day), the list is sorted correctly.
    If we run the report via the BEx and then sort (using excel functionalities), it is also correct :
    01.01.2006
    01.02.2006
    01.01.2007
    01.02.2007
    How can we enable the correct sort?
    Thanks for your help!

    Dear Karthikeyan,
    I was also facing the same issue, and the reason was the diifferrence in the protocol of the J2EE WAS and that of Diapatcher.
    check whether J2EE WAS and that of Diapatcher are both on http or on https. If they both are not same, that's the issue.
    Hope it helps!!
    Warm Regards,
    Upendra Agrawal

  • Create directory with system date for export files

    Hello,
    I have a requirement to add the system date folder automatically, as the exports files dumps get into to d:\oracle\exp\..... this should be d:\oracle\exp\03182009. for each day it should create these date folder to dump the export files.
    here I am sending two of my scirpts .
    first one is
    set ORACLE_SID=%1
    set PATH=D:\ORACLE\ora102\bin;C:\WINNT\system32;C:\WINNT
    set LOCAL=2:%1
    net use h: /delete
    net use login
    sqlplus test/test@%1 @d:\oracle\dba\apps\expfull\buildfile < d:\oracle\dba\apps\expfull\enter.txt
    exp parfile=h:\admin\%1\exp\%1_FULL.par
    call h:\admin\%1\exp\%1_FULL.cmd
    this is the buildfile script
    set term on
    set head off
    set feed off
    set ver off
    set lines 159
    set pages 0
    set wrap on
    set concat off
    clear columns
    clear computes
    clear breaks
    clear buffer
    ttitle off
    btitle off
    col dbnm new_value sid_dir noprint
    col parnm new_value parfil noprint
    col dmpnm new_value dmpfil noprint
    col lognm new_value logfil noprint
    col lstnm new_value lstfil noprint
    col zipnm new_value zipfil noprint
    col cmdnm new_value cmdfil noprint
    col ownr new_value ownername noprint
    col tabnm new_value tabname noprint
    col partnm new_value partname noprint
    col datest new_value datestmp noprint
    -- Load the sid_dir, ownername, tabname, partname, and datestmp substitution variables.
    select
    name dbnm
    , to_char(sysdate,'YYYYMMDD')||'_'||'N' datest
    , upper('&1') ownr
    , upper('&2') tabnm
    , upper('&3') partnm
    from v$database;
    -- Load the filename substitution variables.
    select
    '&sid_dir'||'_'||'&ownername'||'_'||'&partname'||'.par' parnm
    , '&sid_dir'||'_'||'&ownername'||'_'||'&partname'||'_'||'&datestmp'||'.dmp' dmpnm
    , '&sid_dir'||'_'||'&ownername'||'_'||'&partname'||'_'||'&datestmp'||'.log' lognm
    , '&sid_dir'||'_'||'&ownername'||'_'||'&partname'||'_'||'&datestmp'||'.zip' zipnm
    , '&sid_dir'||'_'||'&ownername'||'_'||'&partname'||'.lst' lstnm
    , '&sid_dir'||'_'||'&ownername'||'_'||'&partname'||'.cmd' cmdnm
    from dual;
    -- Build the export parameter file.
    spool h:\admin\&sid_dir\exp\&parfil
    prompt userid=test/test@&sid_dir
    prompt buffer=4194304
    prompt direct=Y
    prompt recordlength=65535
    prompt consistent=Y
    prompt file=h:\admin\&sid_dir\exp\&dmpfil
    prompt log=h:\admin\&sid_dir\exp\&logfil
    prompt tables=(&ownername.&tabname:&partname)
    spool off
    Please help out...

    >
    I have a requirement to add the system date folder automatically, as the exports files
    dumps get into to d:\oracle\exp\..... this should be d:\oracle\exp\03182009. for each
    day it should create these date folder to dump the export files.OK - well, you will (AFAICR) have to create the directory, then cd into it,
    then run your script - I don't see what the problem is?
    You could* do something like -
    at 00:01 run a cron job that simply does something like this
    (I'm just giving outline - not a particular implementation)
    runs date
    gets the day, month and year from that -
    export MyDay=day
    export MyMonth=month
    export MyYear=year
    mkdir /path/to/dir/oracle/exp/$MyDay$MyMonth$MyYear
    At the beginning of your script, before going into SQLPlus
    ----Your usual stuff------------
    set ORACLE_SID=%1
    set PATH=D:\ORACLE\ora102\bin;C:\WINNT\system32;C:\WINNT
    set LOCAL=2:%1
    net use h: /delete
    net use login
    ++++plus
    cd /path/to/dir/oracle/exp/$MyDay$MyMonth$MyYear
    Maybe this will be a help to get you started - it could probably be much more elegant in
    Python or whatever, but if shell-scripting is the way you want to go...
    I'd be interested to see if this can provide the basis for a solution.
    HTH and TIA.
    Paul...

  • Use imported attribute to reference different meta data for export

    our HR system only provides the three letter country code and i would like to export to AD the two letter country code and the spelled out country name. 
    maybe someone can provide the best way to do this. some questions i have had around trying to solve this are
    can you have a connector space object joined to multiple metaverse objects? a one to many relationship?
    could i create a new object_type country and have the person reference the country metaverse object? 
    i'm trying to avoid adding more code, let me know if there is a way to configure what i am trying to do either in the sync engine or the fim portal.
    Thank You!
    edit: if it is helpful i have no problem importing the ISO-3166 data from a source like http://opengeocode.org/download/countrynames.txt into
    fim.

    You could project country objects into the MV from your file, but personally I would just create a new SQL table based on the country code file then join it to the HR table (assuming this is a DB feed - if not import your HR file into a SQL table
    first via SSIS). Then the countryName will be an attribute on the incoming person from HR. Something like
    create view vwImportNew
    SELECT tblHR.employeeID, tblHR.firstName, tblHR.lastName, tblCountryCode.countryCode, tblCountryCode.countryName
    from tblHR
    INNER JOIN tblCountryCode
    ON tblHR.countryCode = tblCountryCode.countryCode
    Then repoint your HR MA at vwImportNew and refresh the schema and the countryName will appear as an attribute ready for import flow
    Cheers,
    Dave

  • Incorrect Date for export photo

    Dear all ,
    This is the first time I make a topic here!
    Hope you can help me ......
    When I want to export photo from i photo library ,
    I don't know why the date is incorrect !
    But I check it in i photo 's details ,the original file date is correct ,
    Anybody can help me ?
    Thanks !

    Any photo application will do this. Graphic Coverter, Photoshop Elements whatever.
    Regards
    TD

  • Exporting Data for a single set of books from Oracle Financials

    I have a multiorg set-up with multiple set of books in an Oracle instance. I want to be able to export data for a single set of books into a new Oracle instance.
    Any insight into how this can be done (without going through each of the tables and referential integrity constraints) will be of great help
    thanks
    anoop

    It is a bit unclear what you are sending these POs to the other system for? Is it for matching to invoices there? Is it for receiving into inventory there?
    Are these two entities belong to the same parent but on two different oracle apps databases?
    In essence what do they do with the PO that you are sending to them?
    Why do you think there will be intercompany invoicing?
    Thanks
    Nagamohan

  • Complex string pattern match/sort question for mapping data - Exchange Enable mailbox use case

    Hi,  Im trying to do a runbook to Enable mailbox for a user.  Our Exchange Admin uses a rule/formula to allocate the mailbox database based on users first name and this is what I am having difficulty replicating in Orchestrator to add the correct
    data in the Database property of Enable Mailbox activity.
    The Rule exchange uses, takes up to the first 3 chars of forename and based on an alphabetic sort, it will allocate to a particular mailbox db (we have a quite large Exchange Org with 20k users so hes tried to allocate about 500 users per mailboxDB).  so
    for example User Forename A-ALI = DB1, ALL-ANG = DB2, ANH-ANY=DB3,AO-BER=DB4 etc etc.
    So I was hoping someone could advise of some string comparison activities native in Orchestrator or maybe done as last resort in powershell (as I'm not great in powershell) to provide a map of the published data for forname to appropriate mailbox matrix.
    Any help on this would be much appreciated...
    Cheers

    You could use the built in Mid function [Mid(‘Return subset from this string’,1,3)] to get the first three letters of their name and honestly I would send
    this to the Run .Net Script activity using powershell myself and do a select case to get it to publish to the database the name of the database server.
    I am all for using  built in activities to do things in Orchestrator but you are going to quickly find that you need to have good powershell scripting skills to extend the tools beyond the capabilities of the built in activities.
    Vaughn

  • MRP is not considering material availability dates for sorting customer ord

    Hello Experts,
    MRP is not considering material availability dates for sorting customer order/ sales order in sequence (thatu2019s is oldest from newest in order) in MD04.
    Please suggest.
    Thanks,
    Om

    Om,
    No.  Aside from my obvious desire to preserve my privacy, it would be a disservice to the other forum members.  No-one else but you and I would understand your problem, and no-one else but you would be able to benefit from any solutions. 
    There are dozens of free public portals suitable for posting pictures on the internet.  I suggest that you use one.
    Best Regards,
    DB49

  • Excel14.4.7 (Excel for Mac 2011); can't sort data

    Upgraded to Excel for Mac 2011 (v.14.4.7) and cannot sort data. Have read instructions but keep getting error message "missing column/row name"
    Tried doing it with box checked "My list has headers" and with the box unchecked....same non-result and error message.
    I'm doing something wrong, obviously but can't figure it out. I am totally mystified & frustrated!
    any ideas????
    Thank you
    Rose

    This may be a related issue and fix:
    https://discussions.apple.com/message/26086328#26086328

  • Date Sort inside For Each

    Hi I am trying to date sort inside for each but it is not working i am using below code
    <?for-each:G_3?><?sort:BEG_DT;'ascending';data-type='text'?>BEG_DT END_DT <?end for-each?>
    Can any one please let me know how to solve this?
    Thanks in Advance
    Have a nIce Day.

    depends on the format you have in the BEG_DT, if its not in YYYY-MM-DD, you may see some different order.
    All sorting works well if you use the date in canonical format.
    if you want to force to code., then do this.
    <?sort:concat(substring(BEG_DT,7,4),substring(BEG_DT,1,2),substring(BEG_DT,4,2),'0');'descending';data-type='number'?>

  • Import a Date for Sorting

    I had a large database of my songs on MS Access which included the following info for each song: Title(Name), Artist and Date. The Date was the mm/dd/yy which the song first entered the Top 40 according to Billboard (from one of their reference books).
    I have imported all my music into iTunes and while I am satisfied with the automatic entry of Name & Artist during the rip, I would like to find a way to copy or enter the Top 40 Date for each song. I'd like to create playlists sorted by the Top 40 Date.
    Is it possible to add this info - hopefully in a scripted way?
    The only solution I can see is to enter a date in "yyyy-mm-dd" format into an unoccupied field such as "Sort Show" which is found under the SORTING Tab when you do a "Get Info" (ctrl-I) on a song. This requires entering the date for each song manually which in my case is prohibitive since I have over 2000 songs.
    Are there any scripts, apps or suggestions that simplify the process? Any easy way to import the data?

    Hi,
    1) getting date from Excel:
    What format does the date have?
    Are you able to convert the value to the Date Type ?
    2) putting into the SBO form:
    Are you filling it into the DataSource, or just typing it as a String into the EditText?
    These are the basic questions, you have to ask yourself.
    1)
    For example: there is a difference when accessing the Excell Cells(x,y).Value and the Cells(x,y).Text
    .Value is usually in Date_Variable format, but the Text is formated to for example MM-DD-YYYY format.
    Perhaps you're not able to convert the MM-DD-YYYY into the date variable, thus you will have to change the "MM-DD-YYYY" into the "DD.MM.YYYY" format so you can put it somewhere.
    2)
    Same problem is with the insertion of date into the SBO, when filling the EditText.String, you will have to convert it into the date, according to the SBO settings ... for example: "MM.DD.YYYY"
    There is also the SBObob object, which has the "Format_StringToDate" method, which will convert the string, into the format for DataSource...
    Regards,
    Jaro

  • UDF for sorting date

    Hi Guys,
    I am doing scenario File to Idoc, i have to sort date in acending order, the date format will be in either 22.10.2007 or 22/10/2007 . can any one send UDF for this.
    Regards,
    venu gopal

    Hi Venu
    You can execute this without UDF. Use " Transform" function in the Date functions.
    When you are using the UDF....you keep the strucure as "yyyMMddhhmmss" for that clickon Trnasform function and there you can see ShowAdvancedProperties...there u can find the format of the source which you are expecting and also change the strucutre of you target expected format.
    You please try this and check the mapping it will get execute.
    Use Standard Date Function DATATRANS. It have the property for format and input is the source date field. It will convert the date format to required specified format which you menstion in the DARTATRANS function
    for UDF
    Re: UDF  for this mapping rule
    Re: Problem in UDF please Help?
    Thanks!

  • Export data for SQL Loader

    I have a table with the following 3 columns
    Help_number Number(8,0)
    Title       Varchar(100 Byte)
    Description Varchar (100 Byte)I would like to export all the data and import it into another table in another database. Im using SQL Developer to export the data. I choose the "LOADER" option but when the data is exported, the format is wrong. Here is an example of the data is exported.
    "1","Error","Error 5343 - Input not recognised" The problem i have is that the first column is being exported in double quotes even though its of a type of NUMBER. When i try to load this using sqlldr it gets rejected because its a string.
    The other problem that i have is that SQL Developer is not exporting all the rows if a table is big. I tried to export a table with 23000 rows and it only exported the first 55 rows.
    Any help will be appreciated.

    The quotes issue I am able to replicate and have logged a bug #6732587.
    I have also logged a bug for the number of rows, however, if you click ctrl-end and then export, you'll get all the rows. Also, if you do not want to query back all the rows, but want to export all, in the Export dialog, just click the "where" clause tab and then Apply. This will also bring back all the rows. This bug is not only for Loader, but for any export format.
    Sue

  • Export data for specific period through Data Pump

    Hi,
    I've a specific requirement to take the dumps of some tables for specific time period. like between last 10 days like 01-JAN-11 to 10-JAN-11. How can I acommplish this. For Documentation what I read is that we can export the data for specific period of thie by either setting FLASHBACK_SCN or FLASHBACK_TIME parameter in expdp command but this is point in time export not for the specific time export.
    Please guide me how can export between the specific time. like between 1-JAN to 10-JAN
    Regards,
    Abbasi

    export between the specific time. like between 1-JAN to 10-JANYou need to clarify your requirements. Data is always "at a point in time". I can see data as at noon of 01-Jan. I can see data as at noon of 10-Jan. What would I mean by data "between" 01-Jan and 10-Jan ?
    Say the table has 5 rows on 01-Jan :
    ID    VALUES
    1      ABC
    2      DEF
    3      TRG
    4      MXY
    5     DEW2 Rows "6-GGG" and "7-FRD" were inserted on 02-Jan.
    2 Rows "2" and "3" were updated from "DEF" and "TRG" to "RTU" and "GTR" on 03-Jan.
    1 Row "5-DEW" was deleted on 09-Jan.
    2 Rows "8-TFE" and "9-DZN" were insereted on 09-Jan.
    Can you tell me what is the "data between 01-Jan and 10-Jan" ?
    (the above example actually happens to have an incrementing key column "ID". Your table might not even have such an identifier column at all !)
    Hemant K Chitale
    Edited by: Hemant K Chitale on Jan 10, 2011 5:23 PM

Maybe you are looking for

  • Deploying Stateful Session Bean

    hi! I've got a problem when deploying a Stateful SessionBean. It worked well for about 1 week. I changed a little thing in the BeanClass, and afterwards only got deployment errors. taking back the changes had no effect. Furthermor the Error seems to

  • Safari now opens pdf in adobe after updating adobe. How to have preview open it as default again?

    I just updated to the latest version of adobe, and now safari opens all .pdf files with adobe.  I would like to make it open .pdf with preview or have the option to open with preview (the menu appears when you move the arrow down to the bottom of the

  • Navigation bar doesn't work

    I'm working on my website, and the navigation bar doesn't work. When I test it in iWeb, (checking the box that says "make hyperlinks active") it works fine, but when I publish it, they're dead. I can click as much as I want and they don't work. I rep

  • How to make a template from an existing document on my ipad Air 2 using word

    I want to know if it's possible to make make a template from an existing document on my ipad Air 2 using the free microsoft word app. Thank you

  • Servlet, Tomcat 3.3, IIS virtual directory access denied

    Hello people, I've set up Tomcat to run as a service with a domain log on usr/pswd. IIS works fine redirecting servlet requests to Tomcat via ISAPI redirector. All on Windows 2000 Server. The problem: The java application creates and reads files from