Move Excel file to Archive and add timestamp to file name

I have SQL Server 2012 and using Excel Source and OLE DB Connection to import Excel data to DB.
Currently file is located on C:\\Excel\filename.xlsx. I'm using File System Task to move file to C:\\Excel\Archive\filename.xlsx after Import Task.
Now I would like to add timestamp to file name after moving file to archive. I would like to modify file name as C:\Excel\Archive\filename_timestamp.xlsx
How to add timestamp to filename?
Kenny_I

Hi, 
here you go with example
http://consultingblogs.emc.com/jamiethomson/archive/2005/09/14/SSIS-Nugget_3A00_-Move-and-rename-a-file-in-one-operation.aspx
thank you
Aamir
http://sqlage.blogspot.com/

Similar Messages

  • How to capture the excel file name

    Hi friends,
    when i execute my program one excel sheet is getting generated.for this i have used a fm 'SAP_CONVERT_TO_XLS_FORMAT'.i want to capture that excel file name and i want to pass it to next function module as input.bcz i should not do any hard coding like passing the filename directly into the function module.
    anybody have any suggestion for this.

    Hi,
    Here is the piece of code ....
    I hope this will add some help to u...
    FORM convert_xls_itab.
      break devuser.
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_field_seperator    = 'X'
          i_line_header        = 'X'
          i_tab_raw_data       = wa_tab
          i_filename           = p_file
        TABLES
          i_tab_converted_data = it_data
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
    EXPORTING
    FILENAME = P_FILE
    I_BEGIN_COL = P_BEGCOL
    I_BEGIN_ROW = P_BEGROW
    I_END_COL = P_ENDCOL
    I_END_ROW = P_ENDROW
    TABLES
    INTERN = IT_INTERN.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    **--- Perform to move the data into an internal data
    ENDFORM. " CONVERT_XLS_ITAB
    Thanks & Regards
    Ashu Singh

  • Excel file name at BIRT

    Hi:
    I'm looking for an easy way to set the Excel file name to a personal name instead of the generic name report.xls, report_1.xls...
    I think there must be an easiest way as set the sheettab's name, that is just the code line:
    reportContext.setPageVariable( reportContext.PAGE_VAR_PAGE_LABEL, "desired_name" );
    At the tab script of a table.
    Does anybody how to do this? Any kind of REPORT_VAR or something like that?
    Thank you all.
    P.D. This s my first post, if I made any mistake, please let my know. Thanks again.

    Sorry for be late to answer. I´m using BIRT 4.3 whith the org.eclipse.birt.report.engine.emitter.nativexls_1.0.0.201110122114.jar
    But now i´m thinking that the problem is at SpagoBi becose BIRT serve the xls report ok with its name and its table named sheets without script. the script is to name the xls sheets in SpagoBI. and i was looking for something like that.
    Thanks

  • Move Excel files (400GB) from an external VPS service to Azure file storage

    We are currently using an external VPS service to store 400GB Excel data in multiple files (approx 5000 files stored under 400 directories). Each directory refers to a region and user data within region.
    Would like to copy all files from VPS to Azure storage account.  Any thoughts on the best and most efficient way to accomplish this. 
    Thanks
    Mike 

    Hi Manu
    Thanks.  Once the files are moved to Azure, how do I work on the excel files online? The idea here is to discontinue the third party VPS once all files are moved to Azure successfully. 
    If you read this old thread published in 2010, it looks like excel files cannot be read in Azure unless one uses OpenXML or OpenExcel.  
    https://social.msdn.microsoft.com/Forums/azure/en-US/95127eea-2e76-4d69-8050-65410598860c/reading-excel-file-from-azure-blob-storage-in-worker-role?forum=windowsazuredata
    Thanks
    Mike

  • Need help with Dynamic Excel File Name please.

    I am try to output an excel file with dynamic date. 
    Here what I done.
    I am using SQL 2012.
    Create Execute SQL Task Connect Type: Excel
    Create Data Flow Task set to DelayValidation: True
    Create OLE DB Sourc
    Create Data Converstion
    Excel Destination
    Excel Connection, Expression, select ExcelFilePath
    @[User::sXLFilePath] +  @[User::sFileName] + RIGHT("0" + (DT_WSTR, 2) DATEPART("DD", GETDATE()), 2)+ RIGHT("0" + (DT_WSTR, 2) DATEPART("MM", GETDATE()), 2) + RIGHT((DT_WSTR,
    4) DATEPART("YYYY", GETDATE()), 2) +".csv"
    C:\ExcelOutPut\SOX_CAM_SQL_Report_010215.xls
    What I try to accomplish is output the file with each day append to it, date must be DDMMYY.
    I google it and found many samples, tested it, and none of them is work for me. 
    Any suggestions or some examples to share is greatly appreciate. 
    I am new to SSIS.  I found one poster have similar issue and inside the posted below, there was one suggestion to create variable and connection string but how do I bind that variable to Excel Connection manger.
    Please help.
    Thank you so much in advance.
    Ex: SOX_CAM_SQL_Report _020215.csv
           SOX_CAM_SQL_Report _030215.csv
    --Similar issue:
    https://social.msdn.microsoft.com/Forums/en-US/bda433aa-c8f8-47c9-9e56-efd20b8354ac/creating-a-dynamic-excel-file?forum=sqlintegrationservices
    Suggestion in the above posted but where can bind this to Excel Connection Manger. 
    Please help provide step by step.  Thanks.
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\temp\\" + "ExcelTarget" + (DT_WSTR,4)DATEPART("yyyy",GETDATE())  +
    ".xls" + ";Extended Properties=\"EXCEL 8.0;HDR=YES\";"
    And yes, as you were intimating, the delay validation on the dataflow should be set.

    Hi NguyenBL,
    According to your description, you created ssis package to export data from database to excel, when the package runs, you want to create new excel and name the file with time stamp. If that is the case, we can achieve the goal by following steps:
    Create a script task used to create excel files.
    Create a data flow task to export data from database to excel.
    Add OLE DB source to data flow task.
    Add Excel Destination to data flow task.
    Create connection manager for OLE DB and Excel.
    Click Excel Connection Manager, in Properties window, click (…) button next to Expressions, then set ExcelFilePath with expression like below:
    "C:\\ETL Lab\\CreateNewExcel\\ExportData_"+REPLACE((DT_STR, 20, 1252)(DT_DBTIMESTAMP)@[System::StartTime], ":", "")+".xls"
    For detail information, please refer to the document:
    https://sqljourney.wordpress.com/2013/01/12/ssis-create-new-excel-file-dynamically-to-export-data/
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • How to change the excel file name which already exists

    Hi,
        I want to rename the already existing excel file, is there any way to do it in Lab View. Please help me in this regards.
    Regards
    Shiva Kumar Singh

    Use the "move" tool with the current path and new path as inputs. It's in the File I/O...advanced palette.
    LabVIEW Champion . Do more with less code and in less time .

  • Get Excel File Name

    I have an Excel Source and would like to use file name as a input column.
    I noticed that I can use For Each Loop Container to get file name pass to the Excel Source, I just wanted to know does it work like flat file to get file name using advance edit?
    Your help and information is great appreciated,
    Regards,
    Souris,

    Are you looping through Excel files?
    If so you already parametrized the name of the file and then use
    Click on Excel Connection Manager --> go to Properties window --> Select Expression and set
    ExcelFilePath with package variable User::CurrentFileName from the loop as shown below:
    Reference: http://sql-bi-dev.blogspot.ca/2010/08/dynamic-ssis-package-to-import-excel.html
    PS: The Excel connection does not expose the filename property that the FFC does.
    Arthur My Blog

  • .mov Forbidden File Name

    I tried to upload a newly created Site Folder Podcast from iWeb to my Comcast Web site using Fetch and received a "Forbidden File Name" error message with a .mov file. I have successfully uploaded another Podcast to Comcast without a .mov file. I can't seem to find the correct extension to use or whether I can upload a quicktime movie to this site at all. Any suggestions?
    Thanks, Don
    15" PB G4   Mac OS X (10.4.4)  

    Thanks,
    I connected the file name with a _ and then was able to upload it to Comcast. It wouldn't play but I will work on that. I wondered if the change of file names caused a problem in the index or directory. Anyway, thanks for helping a novice HTMLer.
    Don

  • Export to Excel - File Name WAD 7.0

    Hi All,
    I am using Export to Excel Functionality with WAD 7.0 to export the report to excel format.
    I have used button web item, with an excel picture above it. The functionality works fine.
    But while exporting the name of excel file shown is WAD 7.0 name.
    ex. My WAD 7.0 name is IFIOP_C07_W700, the excel file also gets saved in this name.
    I want it to be made customizable.
    Can you throw some pointers.
    Thanks,
    Sri Arun Prian

    Hi,
    i have the same issue now where i need to populate the xport file name as report name. can you send me your solution please.

  • Why don't my videos (movies) display file names?

    I have about 20 movies on my Lumia 928, but the file names don't display.  The movies play fine, but it would be nice to know the names of the movies without having to play them.

    I can see how having to play the movie without knowing the file name would be a hassle.
    I have researched this matter & I do believe this is just a part of the design of the phone.
    I have even checked with HTC http://bit.ly/14DuBW3 to see if they know of any other way to do this, but nothing yet.
    Tamara_VZW
    Please follow us on twitter @VZWSupport

  • How to change the excel file name which is in Application server...

    hi friends,
    my requirement is getting failed, when i'm trying to change the file name which is in Application server using the FM: SXPG_COMMAND_EXECUTE.
    when i execute above FM, i can see all my required details in SM69 like:
    COMMAND NAME: ZSPOOL_TEST1      
    OS: Windows NT
    TYPE: Customer 
    OS COMMAND: cmd rename Y:\OBRZ.PDF OBRZ38582.PDF
    once the above FM is executed, i'm getting SY-SUBRC = 2 (exception: COMMAND_NOT_FOUND).
    so, can any one guide me how to resolve this issue or is there any other way to rename the file which is in AS?
    thanks in advance...

    Hi ,
    First you can tranfer the AS server file to a new application server file.
    Then you delete the original file .
    To do that you can write code as follows --
    DATA : w_file(8) TYPE c VALUE 'FILE_NAM', " your present AS file name
           w_new(8) TYPE c VALUE 'NEW_FILE',
           fs_itab(255) TYPE c,
           t_itab LIKE TABLE OF fs_itab.
    OPEN DATASET w_file FOR OUTPUT IN BINARY MODE.
    DO.
      READ DATASET w_file INTO fs_itab. " Reading value from the AS file to field string
      IF sy-subrc NE 0.
        EXIT.
      ELSE.
        APPEND fs_itab TO t_itab. " Populating internal table form the file value
      ENDIF.
    ENDDO.
    OPEN DATASET w_new FOR INPUT IN BINARY MODE. " creating a new file if that does not exist
    LOOP AT t_itab INTO fs_itab.
      TRANSFER fs_itab TO  w_new. " Transfering to file
    ENDLOOP.
    CLOSE DATASET w_file..
    DELETE DATASET w_file. " Dleting the old file
    CLOSE DATASET w_new.  " Closing the final file
    Regards
    Pinaki

  • Autosaved has been added to my Excel file name....and i can't save anything new in it......

    Dear Users.......
    i was working on a  file of excel and light turned off...so later when i turned on my computer and opened that file again.... ......autosaved...has been added to its name. and its making me very problem ....i can not save anything in it now....it hangs
    when i save something in it.......what could i do .....?....Thanks in advance
    Tahir Mehmood

    repair office from control panel

  • Excel 365 Midsize Business and add component

    Hello everyone, I'm Marcello. 
    We are migrating from Excel 2007/2010 to 365 we have a problem with an add made ​​by us. This component does not appear in this version of excel, I ask if there are any compatibility issues with this version of excel. 
    I tried but I could not find anything about it, there is a compatibility mode on this version? 
    Thanks in advance to all.

    Hi,
    According to your description, my understanding is that you didn't find the compatibility mode in Office 365 Excel version. If it was, Office 365 Excel has the compatibility mode. Please read the article:
    http://office.microsoft.com/en-us/excel-help/save-an-excel-2013-workbook-for-compatibility-with-earlier-versions-of-excel-HA103980613.aspx
    More reference:
    http://technet.microsoft.com/en-us/library/ff394407(v=office.15).aspx
    If I misunderstand, please let me know. And if you have further question about Office 365, I recommend you post it to the Microsoft Office 365 Community forum.
    http://community.office365.com/en-us/f/172.aspx
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Excel file name with Time stamp, also from a template?

    Hi i created this little vi that opens an excel template, then populates it with pressure and temperature values. that part worked fine.
    My issue is i'd now like to rename that template file so i can append the current date and time. ive started off trying to do this, but got a bit stuck! any ideas?
    ideally i want labview to pick the template residing at A, rename it, then save it in location B.
    How is this achieved?
    Many thanks
    Attachments:
    sepearet vi's.zip ‏33 KB

    i guess there are some native vis in the report generation toolkit (for excel), did you had a look in to them?
    If not may be you can, copy/move file found in the file i/o pallette
    Regards
    Guru (CLA)

  • Add timestamp to the name of the folder where the reports are stored

    Hi All,
    I want to keep the o/p of the scheduled report in to the folder which will have the timestamp
    (time when it is scheduled to run)added to the foldername . I
    I mean the o/p will be stored in the folder whose name contain the time of scheduling
    Can anyone tell me the way to do it?
    Thanks
    Edited by: user11358816 on Oct 1, 2009 5:59 AM

    I believe the secacc.dll requires the mfcsecacc.dll.
    You can verify this with this tool: http://www.dependencywalker.com/
    /* Nothing past this point should fail if the code is working as intended */

Maybe you are looking for