Export to CSV - order is now by alphabetical column

I was using 1.2, and exporting to CSV, and the file was in table-layout order, so another app is able to import.
Now with 1.5 the export is in alphabetical column-name order - and the other app can't handle it.
Is there some setting to change the export behaviour ?
cheers, Tim

Why isn't that method suitable? Both use the exact same mechanism and all rows have to be retrieved anyway. What's more, I'm pretty sure 1.2 still executed the query 2 times extra before actually exporting the set, whereas 1.5.x "only" 1 time extra.
But it's not a bad idea to keep 1.2 around for some irritating issues, and 1.5 has it's advantage over other ones.
Regards,
K.

Similar Messages

  • Photos. They are on my macBook, backed up on time machine. Copied them (hours and hours) to external hard drive. They are now in alphabetical order (19,000  of them) NOT IN THEIR EVENTS or date order-and have been taken with different cameras- help!!!!!!

    Photos.
    They are on my macBook, backed up on time machine. There are 19,000+ of them, some rescued from a pc crash- which I used the nifty iPhoto to put back into date order.    
    I want to take them all off my laptop, now............as I need to use it for WORK!!
    Copied them (hours and hours) to another external hard drive.
    They are now in alphabetical order (all 19,000+ of them) NOT IN THEIR EVENTS or date order. (-They have also been taken with different cameras over the years and some of the generic camera numbering remains.)
    I have tried to copy them (only a few as an experiment)  one event at a time, but that again "opens up" the Event "folder" and tips them out as individuals and therefore just lists image letters and numbers alphabetically.
    How can I copy
    the whole library still in  "Events" to an external hard drive?
    the folders/albums I have already made on to this hard drive?
    and how can I add to this back up monthly, again keeping events and folders separate and updated?
    Mac is so user friendly - there must be a way.........
    Thanks

    UPDATE : I have re-installed from disk, various apps that were no longer functioning such as iLife, iWork etc. So, I now can access my photos again.
    Also, I had to re-install all the software for my printer ( Stylus Pro 4880 ) and reset it so the printer is working again.
    Photoshop CS4 won't open. I think I will have to get in touch with Adobe as basically, I guess they have a built-in "blocker" which prevents me from opening the app as the license is for only 1 user and having re-installed the OS, there are now, in effect, 2 users ( Me and Me 1, I think ).
    So, having added on a new external HD, Time Machine has made a copy of most of the files, folders, apps etc onto the external HD. The internal HD is still nearly full ( 220 GBs out of 232 GBs ).
    I am guessing the way to go now in order to free up space on the internal HD is to delete/trash older photos from my iPhoto library and hope that if needed, I will be able to access them on the external HD.
    Am I correct ? Please advise before I do something I will regret.
    Thanks, Sean.

  • Data modeler, error when exporting to csv files

    hi, i have a relational model and i need to export this model to csv files, when exporting the model it errors,
    displaying the following error nmessage:
    Oracle SQL Developer Data Modeler Version: 2.0.0 Build: 584
    Oracle SQL Developer Data Modeler Export Log
    Date and Time: 2010-09-21 15:17:17
    Design Name: Diagram
    Model Name: CSV
    Export Finished
    Errors: 1
    Warnings:0
    <<<<< ERRORS >>>>>
    java.lang.NullPointerException
    the issue is a file is missing when exporting proccess is done, the file is DM_CommentsRDBMS.csv, this file contains the commens of columns.
    Thanks.

    Hi,
    I logged bug however information is not enough to locate the problem.
    You can use export to reporting schema in order to get your model exported - in database in that case.
    We are not going to extend "export to CSV file" functionality any further - it'll be as it is now.
    Philip

  • After installed SP1 for SQL Server 2012, can no longer export to csv

    After installing SP1 today via Windows Update, I am no longer able to export data to csv using the SQL Server Import and Export wizard. I get the following error message:
    "Column information for the source and the destination data could not be retrieved, or the data types of source columns were not mapped correctly to those available on the destination provider."
    "Column "col1": Source data type "200" was not found in the data type mapping file."...
    (The above line repeats for each column)
    The work-around I have to do is to manually map each column in the "Edit Mappings..." option from the "Configure Flat File Destination" page of the wizard. This is an extreme inconvenience to have to have to edit the mappings and change
    each column to "string [DT_STR]" type from "byte stream [DT_BYTES]" type each time I want to export to csv. I did not have to do this before installing SP1; it worked perfectly for months with hundreds of exports prior to this update and
    no need to modify mapping.

    I am running Windows 7 64-bit, SQL Server 2012 Express edition. Again, just yesterday from Windows Update, I installed SQL Server 2012 Service Pack 1 (KB2674319), followed by Update Rollup for SQL Server 2012 Service Pack 1 (KB2793634). This situation was
    not occurring before these updates were installed, and I noticed it immediately after they were installed (and of course I restarted my computer after the updates).
    In SSMS I just now created a test DB and table to provide a step-by-step with screenshots.
    Here is the code I ran to create the test DB and table:
    CREATE DATABASE testDB;
    GO
    USE testDB;
    GO
    CREATE TABLE testTable
    id int,
    lname varchar(50),
    fname varchar(50),
    address varchar(50),
    city varchar(50),
    state char(2),
    dob date
    GO
    INSERT INTO testTable VALUES
    (1,'Smith','Bob','123 Main St.','Los Angeles','CA','20080212'),
    (2,'Doe','John','555 Rainbow Ln.','Chicago','IL','19580530'),
    (3,'Jones','Jane','999 Somewhere Pl.','Washington','DC','19651201'),
    (4,'Jackson','George','111 Hello Cir.','Dallas','TX','20010718');
    GO
    SELECT * FROM testTable;
    Results look good:
    id    lname    fname    address    city    state    dob
    1    Smith    Bob    123 Main St.    Los Angeles    CA    2008-02-12
    2    Doe    John    555 Rainbow Ln.    Chicago    IL    1958-05-30
    3    Jones    Jane    999 Somewhere Pl.    Washington    DC    1965-12-01
    4    Jackson    George    111 Hello Cir.    Dallas    TX    2001-07-18
    In Object Explorer, I right-click on the [testDB] database, choose "Tasks", then "Export Data..." and the SQL Server Import and Export Wizard appears. I click Next to leave all settings as-is on the "Choose a Data Source" page, then on the "Choose a Destination"
    page, under the "Destination" drop-down I choose "Flat File Destination" then browse to the desktop and name the file "table_export.csv" then click Next. On the "Specify Table Copy or Query" page I choose "Write a query to specify the data to transfer" then
    click Next. I type the following SQL statement:
    SELECT * FROM testTable;
    When clicking the "Parse" button I get the message "This SQL statement is valid."
    On to the next page, "Configure Flat File Destination" I try leaving the defaults then click Next. This is where I am getting the error message (see screenshot below):
    Then going to the "Edit Mappings..." option on the "Configure Flat File Destination" page, I see that all columns which were defined as varchar in the table are showing as type "byte stream [DT_BYTES]", size "0", the state column which is defined as char(2)
    shows correctly however with type "string [DT_STR]", size "2" (see screenshow below):
    So what I have to do is change the type for the lname, fname, address and city columns to "string [DT_STR]", then I am able to proceed with the export successfully. Again, this just started happening after installing these updates. As you can imagine, this
    is very frustrating, as I do a lot of exports from many tables, with a lot more columns than this test table.
    Thanks for your help.

  • Leading zeros are dropped when exporting as csv

    I have a report that when I export as csv, leading zeros in text columns are dropped in excel. The text columns appear fine in the report, however, when I export the leading zero is gone in excel. For example, in the report my text column could have a value of 0101, when it is exported to excel it has a value of 101. The code behind the link to export to csv is f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:FLOW_EXCEL_OUTPUT_R#REGION_ID#
    Is there a way to keep the leading zero in excel?
    Regards
    Mark

    Thanks for your reply. In my query I wrapped the column with double quotes as you suggest, and added the same column for display:
    select '"'||column1||'"' execl_col, column1 disp_col from table where ....
    Using htmldb_application.g_excel_format as a conditional display I can control what is displayed on the screen and export to csv the double quoted text field. I have that part working fine. Using my previous data example, I am now seeing in excel 0101"".
    Did I wrap the field incorrectly with double quotes? How can I exclude the
    double quotes in the export to csv?
    Regards
    Mark

  • How to remove the tabs Export to Excel, Export as CSV in z0ADHOC web templa

    We have made a copy of 0ADHOC - standard web template  as Z0ADHOC.
    Now we would want to remove the tabs  Export to Excel, Export as CSV from thcopied Z0ADHOC.
    Can any one help out.
    Regards

    Devaraj,
    If you look at the Z0ADHOC through the WAD closely in the overview tab, you will find a web item called GR1Toolbar. This is in turn linked to another web template called 0ADHOC_TABLE. Click on GR1Toolbar and view its properties to see this detail. Now if you open the web template 0ADHOC_TABLE in the WAD, you will see soms text elements. The last two:[SAP_BW_TEXT_!IID_546],
    [SAP_BW_TEXT_!IID_549] are the ones for export to xl and CSV. Now to achieve this in your scenario, I think you will have to create another Z Template called Z0ADHOC_TABLE, remove these two text elements and then Link it to the template Z0ADHOC. Try this and let me know if it works.
    Cheers
    Anand

  • Export to CSV Option - no data found

    Hi
    I have an app with various report regions that work fine on-line. They typically take one or more values from select lists as input to the where clause, and have summary processing based on first or first and second columns. It seems that some reports export to csv just fine, but others produce a csv file with just the 'no data found' message ? Any ideas ?
    cheers
    Jules

    Hi Chris
    I think I understand what happens now - i.e. the CSV export runs in a separate session from the on-line page. Your suggestion has fixed the proplem - by having a button to redirect / resubmit back to the same page the csv export then picks up the right data.
    However I do not understand why as this seems no different to having a one or more parameter fields defined as 'select list with re-direct', which I do. Any further explanation appreciated.
    Jules

  • 10g exporting to CSV using client_text_io is not working correctly.

    I have an odd issue which i could do with some help with. I run an function that exports to CSV based on an pre defined record group.
    This has been working fine for many months with various customers. Recently a new customer used it and they have 28k rows in his record group and the export is actually not exporting correctly.
    The record group has a record count of 28331.
    The CSV produced has only 3756 in my CSV file. These are the last 3756 records in the Record group so its as if its overwriting the data as it goes yet all smaller datasets work
    FUNCTION fun_export_csv (vgraphid NUMBER, p_filename VARCHAR2)RETURN BOOLEAN IS
      out_file                      client_text_io.file_type; 
         i                                             NUMBER;
      lv_line              VARCHAR2(5000);
    BEGIN
    rg:=populate_group('RG11_EXP');               
    synchronize;
    lv_line:= ('"GIN","Gin Date","PO Num","PO Required Date","Mat Num","Mat Description","Supplier Part No","On Time Delivery(Yes-1, No-0)"');
    client_text_io.put(out_file, lv_line);
    client_text_io.new_line(out_file,1); 
    For i in 1..get_group_row_count('RG11_EXP') Loop--this count is 28331
    lv_line:= ('"'||get_group_number_cell('RG11_EXP.col1', i )                 ||'"'|| ',' ||'"'||
         get_group_date_cell('RG11_EXP.grn_date', i )                 ||'"'|| ',' ||'"'||                                          
         get_group_number_cell('RG11_EXP.po', i )       ||'"'|| ',' ||'"'||
         get_group_date_cell('RG11_EXP.daterqd', i ) ||'"'|| ',' ||'"'||
         get_group_char_cell('RG11_EXP.item_no', i ) ||'"'|| ',' ||'"'||
         get_group_char_cell('RG11_EXP.desc', i )                    ||'"'|| ',' ||'"'||
         get_group_char_cell('RG11_EXP.part_no', i )               ||'"'|| ',' ||'"'||
         get_group_number_cell('RG11_EXP.ontime', i )                    ||'"');
    client_text_io.put(out_file, lv_line);
    client_text_io.new_line(out_file,1); 
    END LOOP;     
    client_text_io.FCLOSE(out_file);
    RETURN TRUE;          

    Hello,
    Try to insert a "synchronize" instruction from time to time:
    i  pls_integer := 1;
    Loop
      If mod(i, 500) = 0 Then
         synchronize;
      End if ;
      i := i + 1 ;
    End loop;
    ...<p>But keep in mind the the CLIENT_TEXT_IO generate a lot of network traffic, so it is better and faster to generate the file on the A.S., then after transfer it to the client machine.</p>
    Francois

  • How export to csv work in safari browser? In my application export to csv open like a raw data in new tab. But other browsers working great!. Need to open in a csv file or save it as a csv file.

    How export to csv work in safari browser?
    In my application export to csv open like a raw data in new tab.
    But other browsers working great!.
    Need to open in a csv file or save it as a csv file.
    Please suggest me. Thank you in advance!.

    Hi Adrian,
    Why don't you try any another software for opening CSV files then Notepad ? According to my experience, you can use these softwares to open an CSV files and they are:-
    Microsoft Excel
    Open Office Calc
    Google Docs
    Also there is an additional tool available known as CSV viewer. You may try this, download it from here http://www.csvviewer.com/
    I've never used Notepad for opening CSV files, because sometimes it contains some symbols which are not not at all compatibile with Notepad.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Hide column in SSRS is not working while exporting to CSV format.

    Hi,
    I have a report where some columns are hidden based on parameter value. When I export to Excel all the hidden columns are hiding which is fine, but the issue is when I exported to CSV all the hidden columns are exporting to csv.
    I tried to using  " =IIF(Globals!RenderFormat.Name = "CSV", True,False)" in Column visibility but It is not working. When I select Hide option it is working fine. But I want to hide based on expression.
    Any help !!!!!!!!

    Hi sumancv,
    In SQL Server Reporting Services (SSRS), we can control whether an item is visible in CSV separately from whether an item is visible in other renderers. As Shahfaisal Muhammed posted earlier, the CSV renderers use the DataElementOutput property to control
    visibility. When an item has DataElementOutput=Output, it will appear in the CSV.  When an item has DataElementOutput=NoOutput, it will not appear in CSV.
    Based on my test, we cannot use expression to control column visibility in the report when it is export to CSV.
    Reference:
    http://connect.microsoft.com/SQLServer/feedback/details/742658/ssrs-csv-export-issue-for-hiding-certain-columns-using-expressions
    Since the issue is by design, I recommend you that submit a wish to the Microsoft Connect at
    https://connect.microsoft.com/SQLServer/Feedback. Your feedback is valuable for us to improve our products and increase the level of service provided.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Report output Export to CSV issue

    Hi Experts,
    I have a Bex Query. After running the report when I export the report in CSV format using "Export to CSV" from the report output screen, the data
    is being dumped in different columns And when i try to convert that particular CSV file to Excel as we can only select one single column for delimiting the values using a separator into different cells the data in the other column is being truncated.
    Kindly suggest me how to resolve this.
    Thanks in Advance,
    Sushma

    Hi,
    (If anything else on the BW side doesn't help).
    Not so long ago I had a similiar problem all data (originally taken from several columns) were in one column - solved it with the help of VB coding.
    Sth like this could help you.
    Regards, Leszek
        Dim tekst As String
        last_row = Selection.SpecialCells(xlCellTypeLastCell).Row
        Range("A1:Z" & last_row).Select
        Cells.Select
        Selection.NumberFormat = "@"
        For wiersz = 1 To last_row
             Cells(wiersz, 1).Select
             tekst = Selection.Value
             Cells(wiersz, 1).Value = Left(tekst, 21)
             Cells(wiersz, 2).Value = Right(Left(tekst, 27), 6)
             Cells(wiersz, 3).Value = Right(Left(tekst, 37), 10)
             Cells(wiersz, 4).Value = Right(Left(tekst, 50), 13)
        Next wiersz

  • "Export to CSV" option is not working.

    Hi,
    When I am trying to use "Export to CSV" option for "Item Price Deviation" report.
    The issue happened, when we lock filter on "Spend by Category" report and then opened Item Price Deviation report. Then I selected More Actions --> "Export to CSV". But no File download pop up shown up.
    Is it a known bug?
    Regards
    Gowtham

    Hi,
    Does give you message on the top of IE about File download blocked because of pop up blocker settings. I had faced similar issue but everytime you turn off the popup blocker and you should be able to download the report. Also try to download the report from other laptop to segregate this problem as application problem or desktop issue
    Regards,
    Sampat Desai

  • Export to CSV

    Dear Experts,
    We are on BI 7.0 and we came across the following problem :
    When we wre exporting to CSV from Web template in Portal, each £ sybmol is accompanied by  
    ie.£ 1500 (where it should have been £1500).
    When exporting to Excel/ excel 2000, it is working fine. And we export it Excel and save it as CSV, it's showing the values with £ sign only. But my client is not happy to export to Excel and then save it to CSV.
    Has anyone come across with this?
    Is there an outstanding update / OSS Note / patch etc. from SAP to correct this issue?Or is it more likely  IMG seetings issue ?
    Thanks

    Hi Swapna,
    There is one way to export to CSV and below are the steps that we follow.
    1.     Execute the ABAP program Z_BI_QUERY_TO_CSV as batchjob. The previous csv file with same name will be removed from the SAP BI server. Then the program will execute the query (selection on the selection-screen).
    2.     The query is executed by the OLAP processor.
    3.     The OLAP processor will read the values for variables in the user-exit EXIT_SAPLRRS0_001 (RSR00001) (enhancement concept BEXVAR).
    4.     The data is selected from DSO or infocube.
    5.     The data is formatted to cvs-format (separator is selection field for the program) and saved on the SAP BI server in the directory DIR_CSV.
    6.     After those files are created, the program Z_BI_COPY_FILE_TO_DESKTOP can be used to copy the files from the SAP BI server to your local PC. Must always be executed in foreground because there is interaction with the desktop.
    7.     You can choose the local directory on the selection-screen.
    I hope this will help you.
    All the best,
    Praveen

  • What is the best way to export a .csv/.txt file to a MS Windows shared folder via a scheduled job?

    What is the best way to export a .csv/.txt file to a MS Windows shared folder, when the export process is a scheduled job?

    You can't directly, as scheduled jobs can only export to server-side data stores, which can only write to the landing area. You'll need to use an external script (e.g. batch file) to move the file from the landingarea after export. You can use an external task in the scheduled job to invoke the script.
    regards,
    Nick

  • My music list is listed in number order instead of in alphabetic order like it's suppose to be. What do I do to get it back to being in alphabetic order?

    My music list is listed in number order instead of in alphabetic order like it's suppose to be. What do I do to get it back to be in alphabetic order?

    You should be importing all pics taken with the iphone to your computer regularly as you would with any digital camera.
    iOS: Importing personal photos and videos from iOS devices to your computer

Maybe you are looking for

  • Getting exception when trying to open Alert Configuration in RW

    Hello friends, I am getting the following exception when i am trying to open the Alert Configuration/Alert Inbox in RWB. Exception: com.sap.aii.rwb.exceptions.BuildLandscapeException: No central monitoring server in exchange profile         at com.sa

  • Question about NOW function

    Hi, I'm trying to use the following PL/SQL statement: select now from dual; It should return the date/time, and it won't work. It works in another instance of HTMLDB that I have installed pointing to a different database instance, running the same ve

  • Roles Setting and Removing Resource Attributes

    Hello All, I have a quick question (Which I hope has a quick answer). I am trying to set up a role, so that when it is assigned to a user, sets an attribute value on an LDAP resource. Then, when the role is removed from the user, the attribute value

  • How to get old (CS3, CS4...) versions when using CC ?

    Hi, I'm a teacher and developper with After Effects, and I'm a creative cloud subscriber (for teachers and students), and I have this problem : schools or students/trainees often use older versions of After Effects than me (I have CS6 and CC installe

  • Toshiba error popup after booting?

    I just got malware on my Toshiba and fixed it(I assume). I however now get this error message upon starting up the laptop: "XFERRECV_RecvMain() : bind() error 675, 10050" It's window name is "SUMMIT" What is this? It doesn't seem to do anything and h