Need help burning a file of jpg images to a CD

I have a folder on my desktop with 17 jpg images ranging in size from 250 KB to 500 KB that I need to burn onto a CD (I've never burned a CD before).  I inserted a blank CD into the slot on my MacBook Pro, waited for a file to pop up, named the file, then dragged the file to the CD icon in Finder.  I scrolled to "Burn CD" and clicked on that.  Took only a couple of minutes for the computer to tell me it was finished, so I ejected the CD.  When I reinserted the CD, however, nothing happened.  I expected a screen to pop up with the images I thought I had saved.  Am I using the wrong kind of CD?  The one I used is a Maxell CD-RMax with 80 min/700 MB storage.  Thanks for any assistance. 
ElyArtist

Hi Elyartist,
Here are the suggested steps for burning the pictures onto a CD:
iPhoto '11: Create your own photo CDs and DVDs
http://support.apple.com/kb/PH2436
This is the section that is most like what you are already doing (skip to step 6):
To create a CD or DVD to be viewed in Windows or by a photo-processing company:
In iPhoto, select the photos, albums, or video clips you want to burn to a disc.
Choose File > Export.
In the Export Photos window, click File Export, and then select your options.For best results, choose JPEG, Maximum, and Full Size. For more information, see Export a photo.
When you’re ready, click Export, and export the photos to a folder on your computer.
When the export is finished, quit iPhoto.
Click the Finder icon in the Dock, and then insert a CD-RW disc or a blank CD-R or DVD-R disc into your drive.
Drag the folder that contains your exported photos to the disc’s icon.
When the files have been copied, choose File > Burn Disc, and then click Burn.
The article contains some basic causes for this issue as well.
Cheers!
- Ari

Similar Messages

  • Desperately needs help burning DVD from iPhoto

    I am using iPhoto 6.0.6. I desperately need help burning a DVD of a slide show that I created for my daughter's wedding.
    I put several songs together by opening them and then combining them using QuickTime Pro. I imported the audio into iTunes and created a slide show using iPhoto. The slide show is perfect! The slides are finally in sink with the music just as I want them! But I don't know how to burn the slide show as a DVD.
    I tried exporting the video from iPhoto to my computer, but at the end of the export, I get this message: please note that the music included in the slideshow can only be played on authorized machines. And when I try to play the video (after the export), most of the music on the video cannot be heard. When I try to authorize my machine, I am told that it's already authorized.
    If someone would send detailed instructions on how to proceed, I would greatly appreciate it.
    Greg

    Is your problem the DRM audio tracks you purchased from iTunes store?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • I need help burning a cd from keynote

    I need help burning a cd from keynote for a slideshow presentation on a tv

    Hi,
    Not quite sure what you're after here, so I might need a bit more info.
    You have a presentation in Keynote and want to export this in some format that will allow you to display it on a TV screen. Is this right? Do you want to retain all your interactivity or do you just want to show it as a simple 'kiosk' presentation? What will the presentation on CD be played from and how will it connect to the TV?
    Probably the easiest solution is to create a DVD of your presentation. To do this export the presentation from Keynote as a Quicktime Movie by going to File>Export and selecting the Quicktime pane. You'll need to make a few choices about how the slides are advanced and the final quality. Convert the exported movie to a DVD in iDVD or better still Toast, if you have it. You wont need menus or any fancy stuff, just set up the movie to play as soon as the disk is inserted.
    To optimise the Movie, keep Keynote animations to a minimum and limit slide transitions to simple dissolves. The resulting Movie should be a fair representation of the original Keynote presentation.
    Alastair.

  • Want to convert  tif image file into jpg image file , pls help me

    hey coders, i want to convert a tif image file into a jpg image file , can u all help in this

    In it's simplest form, it's two lines of code.
    BufferedImage bi = ImageIO.read(/*the tif file*/);
    ImageIO.write(bi,"jpeg",/*output file*/);Though, you need to install [JAI-ImageIO|https://jai-imageio.dev.java.net/binary-builds.html] read the tif file into a BufferedImage.

  • Need help in automating batch placing of images on spreads

    My workflow is :
    I have jpeg files (mostly 100+).
    They are the size of 2 pages (e.g. 1 spread per jpeg file)
    I need to place them on either even or odd page (aligned Top-Left).
    Currently I’m doing this work manually.
    Need help to automate this.
    Thanks and regards.

    As I mentioned earlier I have very little experience with JavaScript.
    I also copied the ImageCatalog script to a new file and read it atleast five times, and tried to wrap my head around the flow of execution.
    The comments were really helpful in the process.
    I proritized what i want to achive with my script and started deleting unwanted code. I also tested it frequently.
    Here is my script as it stands right now.
    function Init(){
            var myFilteredFiles;
            //Make certain that user interaction (display of dialogs, etc.) is turned on.
            app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
            myExtensions = [".jpg", ".jpeg"]
            //Display the folder browser.
            var myFolder = Folder.selectDialog("Select the folder containing the images", "");
            //Get the path to the folder containing the files you want to place.
            if(myFolder != null){
                        if(File.fs == "Macintosh"){
                            myFilteredFiles = myMacOSFileFilter(myFolder);
                        else{
                            myFilteredFiles = myWinOSFileFilter(myFolder);
                        if(myFilteredFiles.length != 0){
                                myPlaceImages(myFilteredFiles);
                                alert("Done!");
    // call the initial function
    Init();
    //Windows version of the file filter.
    function myWinOSFileFilter(myFolder){
              var myFiles = new Array;
              var myFilteredFiles = new Array;
              for(myExtensionCounter = 0; myExtensionCounter < myExtensions.length; myExtensionCounter++){
                        myExtension = myExtensions[myExtensionCounter];
            myFiles = myFolder.getFiles("*"+ myExtension);
                        if(myFiles.length != 0){
                                  for(var myFileCounter = 0; myFileCounter < myFiles.length; myFileCounter++){
                                            myFilteredFiles.push(myFiles[myFileCounter]);
              return myFilteredFiles;
    function myMacOSFileFilter(myFolder){
              var myFilteredFiles = myFolder.getFiles(myFileFilter);
              return myFilteredFiles;
    //Mac OS version of file filter
    //Have to provide a separate version because not all Mac OS users use file extensions
    //and/or file extensions are sometimes hidden by the Finder.
    function myFileFilter(myFile){
              var myFileType = myFile.type;
              switch (myFileType){
                        case "JPEG":
            return true;
                                  break;
                        default:
                        for(var myCounter = 0; myCounter<myExtensions.length; myCounter++){
                                  var myExtension = myExtensions[myCounter];
                                  if(myFile.name.indexOf(myExtension)>-1){
                                            return true;
                                            break;
              return false;
    function myPlaceImages(myFiles){
            var myDocument = app.documents.item(0);
            var myDocumentPreferences = myDocument.documentPreferences;        
            var myNumberOfFiles = myFiles.length;
            alert(myNumberOfFiles);
            var myNumberOfPages = (myNumberOfFiles * 2) + 1;
            myDocumentPreferences.pagesPerDocument = myNumberOfPages;       
            var myPage = myDocument.pages.item(0);
            var myPages = myDocument.pages;
            for (myCounter = myDocument.pages.length-1; myCounter >= 0; myCounter--){ 
                if(myCounter%2 == 1){
                     myPage = myPages.item(myCounter);
                    var myLiveWidth = myDocumentPreferences.pageWidth
                    var myLiveHeight = myDocumentPreferences.pageHeight
                    myY1 = 0
                    myY2 = myLiveHeight
                    myX1 = 0
                    myX2 = myLiveWidth * 2
                    myRectangle = myPage.rectangles.add(myDocument.layers.item(-1), undefined, undefined, {geometricBounds:[myY1, myX1, myY2, myX2], strokeWeight:0, strokeColor:myDocument.swatches.item("None")}); 
            for (myCounter = 0; myCounter < myNumberOfFiles; myCounter++){ 
                myFile = myFiles[myCounter]; 
                //alert(myFile);           
                myRectangle = myDocument.rectangles.item(myCounter);
                myRectangle.place(File(myFile));
                        for (var myCounter = myDocument.rectangles.length-1; myCounter >= 0;myCounter--){ 
                                  if (myDocument.rectangles.item(myCounter).contentType == ContentType.unassigned){
                                            myDocument.rectangles.item(myCounter).remove();
                                  else{
                                            //As soon as you encounter a rectangle with content, exit the loop.
                                            break;

  • RAW file into jpg image

    I am exploring the wonderful world of RAW photography processing. I have come across an issue that I cannot find an answer to. After doing all the image adjustments, how do I save it as a jpg file? The only option I see is to save it as a dng file or to open it in PSE10 editor. But then what? I have tried to "safe as" from Editor but it does not give me a jpg option.

    Thanks to each of you for your comments.
    juergen, I had noticed that setting but did not know I needed to change it. Thanks.
    photodrawken, I need jpg because I am a member of several sites that specifically call for jpg images. I also share my pictures with extended family who cannot use RAW or PSE files. They could use png files but they would face the same issue when they go to upload them. They do not have software to change them to jpg.
    dj, I have enough memory (for now at least) that I can save both. I will not be changing all of them but when I need, it is good to know how to do it.
    Again, thank you,
    Jim

  • Need help replacing a file in AE

    Ok, here is my problem, I made a project on another computer and then I transfered to my computer. I dragged all of the images and sounds but ONE very important image. I downloaded that same image from online and I need help replacing the corrupted old image with the new one. Here is a picture with more detail.
    I tried copy & pasting the layer properties and effects, but that didn't work. Any ideas?
    Thanks,
    Emal

    For instructions on swapping out a footage item's source file, "Replace layer source with reference to another footage item".

  • Need Help-SOA 11g File Adapter unable to delete input file and its crashing

    Hi All
    Please find the details below:
    1. We have created a simple SOA composite to Read file from an input directory, archive the file in an archive directory using Inbound File Adapter Read
    and then use Outbound File Adapter Write to move the file to a output directory.
    2. File Adapter needs to delete the file after successful read/retrieval.
    3. We are using the "Use Trigger File" for invoking the file adapter. This is a new feature in SOA 11g
    4. Also we are using the option of reading the file as an attachment as we are not doing any transformation in the composite
    Issue Details_
    1. When the trigger file is put in the input directory for the first time, the File Adapter reads the file, archives it and moves it to the output directory
    2. However it does not delete the input file from the input directory and raises Fatal Exception mentioned below:
    [*2011-01-12T16:55:48.639+05:30] [soa_server1] [WARNING] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@19c243d]*
    [userId: <anonymous>] [ecid: 0000IptyLrL9_aY5TrL6ic1DBOS_000009,0] [APP: soa-infra] File Adapter FileAdapterTriggerFilePOC PostProcessor::
    Delete failed, the operation will be retried for max of [0] times
    [2011-01-12T16:55:48.639+05:30] [soa_server1] [WARNING] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@19c243d]
    [userId: <anonymous>] [ecid: 0000IptyLrL9_aY5TrL6ic1DBOS_000009,0] [APP: soa-infra] File Adapter FileAdapterTriggerFilePOC [[
    BINDING.JCA-11042
    File deletion failed.
    File deletion failed.
    File : C:\Dibya\AttachmentTest\InputDir\TestFile3.txt could not be deleted.
    Delete the file and restart server. Contact oracle support if error is not fixable.
    If any one has faced similar issues, kindly provide pointers on how to resolve it.
    Regards,
    Dibya

    Hi,
    Using the file adapter, you can poll from multilple locations...
    Keep the following property in your .jca file
    <property name="DirectorySeparator" value="," />
    While giving the path in File Adapter configuration, keep comma and give the next location....then the file will be picked up from the locations you gave....
    Hope this helps...
    Thanks,
    N

  • I need help with viewing files from the external hard drive on Mac

    I own a 2010 mac pro 13' and using OS X 10.9.2(current version). The issue that I am in need of help is with my external hard drive.
    I am a photographer so It's safe and convinent to store pictures in my external hard drive.
    I have 1TB external hard drive and I've been using for about a year and never dropped it or didn't do any thing to harm the hardware.
    Today as always I connected the ext-hard drive to my mac and click on the icon.
    All of my pictures and files are gone accept one folder that has program.
    So I pulled up the external hard drive's info it says the date is still there, but somehow i can not view them in the finder.
    I really need help how to fix this issue!

    you have a notebook, there is a different forum.
    redundancy for files AND backups, and even cloud services
    so a reboot with shift key and verify? Recovery mode
    but two or more drives.
    a backup, a new data drive, a drive for recovery using Data Rescue III
    A drive can fail and usually not if, only when
    and is it bus powered or not

  • Need help with connecting file inputs to arrays

    In this assignment I have a program that will do the following: display a list of names inputed by the user in reverse order, display any names that begin with M or m, and display any names with 5 or more letters. This is all done with arrays.
    That was the fun part. The next part requires me to take the names from a Notepad file, them through the arrays and then output them to a second Notepad file.
    Here is the original program: (view in full screen so that the code doesn't get jumbled)
    import java.io.*;       //Imports the Java library
    class progB                    //Defines class
        public static void main (String[] arguments) throws IOException
            BufferedReader keyboard;                                  //<-
            InputStreamReader reader;                                 //  Allows the program to
            reader = new InputStreamReader (System.in);               //  read the the keyboard
            keyboard = new BufferedReader (reader);                  //<-
            String name;                 //Assigns the name variable which will be parsed into...
            int newnames;               //...the integer variable for the amount of names.
            int order = 0;              //The integer variable that will be used to set the array size
            String[] array;             //Dynamic array (empty)
            System.out.println (" How many names do you want to input?");   //This will get the number that will later define the array
            name = keyboard.readLine ();
            newnames = Integer.parseInt (name);                                         // Converts the String into the Integer variable
            array = new String [newnames];                                               //This defines the size of the array
            DataInput Imp = new DataInputStream (System.in);       //Allows data to be input into the array
            String temp;                                       
            int length;                                                                  //Defines the length of the array for a loop later on
                for (order = 0 ; order < newnames ; order++)                                //<-
                {                                                                           //  Takes the inputed names and
                    System.out.println (" Please input name ");                            //  gives them a number according to
                    temp = keyboard.readLine ();                                           //  the order they were inputed in
                    array [order] = temp;                                                  //<-
                for (order = newnames - 1 ; order >= 0 ; order--)                                //<-
                {                                                                                //  Outputs the names in the reverse 
                    System.out.print (" \n ");                                                   //  order that they were inputed
                    System.out.println (" Name " + order + " is " + array [order]);             //<-
                for (order = 0 ; order < newnames ; order++)                                  //<-
                    if (array [order].startsWith ("M") || array [order].startsWith ("m"))     //  Finds and outputs any and all
                    {                                                                         //  names that begin with M or m
                        System.out.print (" \n ");                                            //
                        System.out.println (array [order] + (" starts with M or m"));         //
                    }                                                                         //<-
                for (order = 0 ; order < newnames ; order++)                                            //<-
                    length = array [order].length ();                                                   //
                    if (length >= 5)                                                                    //  Finds and outputs names
                    {                                                                                  //  with 5 or more letters
                        System.out.print (" \n ");                                                      //
                        System.out.println ("Name " + array [order] + " have 5 or more letters ");      //<-
    }The notepad file contains the following names:
    jim
    laruie
    tim
    timothy
    manny
    joseph
    matty
    amanda
    I have tried various methods but the one thing that really gets me is the fact that i can't find a way to connect the names to the arrays. Opening the file with FileInputStream is easy enough but using the names and then outputing them is quite hard. (unless i'm thinking too hard and there really is a simple method)

    By "connect", do you just mean you want to put the names into an array?
    array[0] = "jim"
    array[1] = "laruie"
    and so on?
    That shouldn't be difficult at all, provided you know how to open a file for reading, and how to read a line of text from it. You can just read the line of text, put it in the array position you want, until the file is exhausted. Then open a file for writing, loop through the array, and write a line.
    What part of all that do you need help with?

  • Need help with inserting frame with scrolling images

    Hi,
        Im a beginner and need help putting a single box/frame with scrolling images in the middle of my layout, so that when viewed in browser, the header and footer remain in place, while the images and info in the frame in the centre of the page can be scrolled down/up?

    You can use an iframe element <iframe src="" width="" height="" scrolling="yes"> though if you're concerned with crawlers you should avoid frames as much as possible. 

  • Need Help with .nnlp File.............A.S.A.P.

    I'm having a problem also with my JNLP file. I have downloaded the program onto one computer and that computer is using j2re1.4.2_04
    The other computers I believe are all running j2re 1.4.2_05
    I'm not sure if that's make a difference, but on the computer with j2re 1.4.2_05 when going to the site where the .jnlp file is located, the application comes up and says Starting Application. After it gets to that screen it just stays there. I really need help with this as soon as possible.
    Here is my .jnlp file listed below:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp
      spec="1.0+"
      codebase="http://www.appliedsolutions.com/placewiz"
      href="Placewiz.jnlp">
      <information>
        <title>Placement Wizard 4.0</title>
        <vendor>Applied Solutions, Inc.</vendor>
        <homepage href="index.html"/>
        <description>Placement Wizard 4.0</description>
        <description kind="short">Short description goes here.</description>
        <offline-allowed/>
      </information>
      <resources>
        <j2se version="1.4+"/>
        <j2se version="1.3+"/>
         <j2se version="1.5+"/>
        <jar href="Placewiz.jar"/>
      </resources>
      <security>
          <all-permissions/>
      </security>
      <application-desc main-class="com/asisoftware/placewiz/loader/Exec">
    </jnlp>

    This was due to a change in 1.4.2_05
    the main class attribute
    main-class="com/asisoftware/placewiz/loader/Exec">is wrong - it should be:
    main-class="com.asisoftware.placewiz.loader.Exec">this didnt seem to mater before 1.4.2_05, but some change in java since then caused this bad class specification to stop loading.
    /Andy

  • Need help with copying files onto external drive

    I need help! Trying to copy downloaded movie files from Vuze (which have downloaded successfully) and copy onto external hard drive to view them but it wont let me copy over to the external device. Any ideas how to fix this please???

    Can you explain the steps you used, and the error message (or symptom), that says the copy did not work? 

  • I need help retrieving Microsoft files lost when upgrading to OSX Mavericks

    My daughter recently upgraded our Mac to the OSX Mavericks platform. Unfortunately, all of our Microsoft files, etc. are gone! I need to know how I can retrieve these files or if I can. I'm honestly not impressed with this new platform. I need help asap and your help is truly appreciated.

    You have to make the backup yourself. That's your only protection against file loss whether accidental or catastrophic. In fact you should have at least two of them - each done differently and on separate drives.
    If your files truly were "erased" then you can see if they can be recovered:
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as MAC Data Recovery, Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads. Recovery software usually provide trial versions that enable you to determine if the software would help before actually paying for it. Beyond this or if the drive has completely failed, then you would need to send the drive to a recovery service which is very expensive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.
    Basic Backup
    For some people Time Machine will be more than adequate. Time Machine is part of OS X. There are two components:
    1. A Time Machine preferences panel as part of System Preferences;
    2. A Time Machine application located in the Applications folder. It is
         used to manage backups and to restore backups. Time Machine
         requires a backup drive that is at least twice the capacity of the
         drive being backed up.
    3. Time Machine requires a backup drive that is at least double the
         capacity of the drive(s) it backs up.
    Alternatively, get an external drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
      1. Carbon Copy Cloner
      2. Get Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files. For help with using Time Machine visit Pondini's Time Machine FAQ for help with all things Time Machine.
    Although you can buy a complete external drive system, you can also put one together if you are so inclined.  It's relatively easy and only requires a Phillips head screwdriver (typically.)  You can purchase hard drives separately.  This gives you an opportunity to shop for the best prices on a hard drive of your choice.  Reliable brands include Seagate, Hitachi, Western Digital, Toshiba, and Fujitsu.  You can find reviews and benchmarks on many drives at Storage Review.
    Enclosures for FireWire and USB are readily available.  You can find only FireWire enclosures, only USB enclosures, and enclosures that feature multiple ports.  I would stress getting enclosures that use the Oxford chipsets especially for Firewire drives (911, 921, 922, for example.)  You can find enclosures at places such as;
      1. Cool Drives
      2. OWC
      3. WiebeTech
      4. Firewire Direct
      5. California Drives
      6. NewEgg
    All you need do is remove a case cover, mount the hard drive in the enclosure and connect the cables, then re-attach the case cover.  Usually the only tool required is a small or medium Phillips screwdriver.

  • Need help to create file with name and current time stamp.

    I need to create .xlsx file exporting data from sql database and file name would be 'FileName' and current yyyymmdd. 
    I'm trying to use following code but it's keep saying  incorrect syntax near "+".
    EXEC p_CreateExcel 'sql64', 'NewFile', '\\hrfile1\Shared\Buying Report\NewFile'
    + CAST(YEAR(CURRENT_TIMESTAMP) AS VARCHAR)
    + RIGHT('00'+CAST(MONTH(CURRENT_TIMESTAMP) AS VARCHAR),2)
    + RIGHT('00'+CAST(DAY(CURRENT_TIMESTAMP) AS VARCHAR),2)+'.xlsx'

    This is what I have on EXEC p_CreateExcel
    USE [XePro01]
    GO
    /****** Object:  StoredProcedure [dbo].[p_CreateExcel]    Script Date: 02/26/2015 11:27:35 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER procedure [dbo].[p_CreateExcel]
            @db_name varchar(100),
            @table_name varchar(100), 
            @file_name varchar(100)
    as
    --Generate column names as a recordset
    declare @columns varchar(8000), @sql varchar(8000), @data_file varchar(100)
    select 
            @columns=coalesce(@columns+',','')+column_name+' as '+column_name 
    from 
            information_schema.columns
    where 
            table_name=@table_name
    select @columns=''''''+replace(replace(@columns,' as ',''''' as '),',',',''''')
    --Create a dummy file to have actual data
    select @data_file=substring(@file_name,1,len(@file_name)-charindex('\',reverse(@file_name)))+'\data_file.xls'
    --Generate column names in the passed EXCEL file
    set @sql='exec master..xp_cmdshell ''bcp "set fmtonly off select * from (select '+@columns+') as t" queryout "'+@file_name+'" -c -t, -T -S'''
    exec(@sql)
    --Generate data in the dummy file
    set @sql='exec master..xp_cmdshell ''bcp "set fmtonly off select * from XeProgst01.dbo.'+@table_name+'" queryout "'+@data_file+'" -c -t, -T -S'''
    exec(@sql)
    --Copy dummy file to passed EXCEL file
    set @sql= 'exec master..xp_cmdshell ''type '+@data_file+' >> '+@file_name+''''
    exec(@sql)
    --Delete dummy file 
    set @sql= 'exec master..xp_cmdshell ''del '+@data_file+''''
    exec(@sql)
    GO

Maybe you are looking for

  • [VERY URGENT]Messages going in Scheduled State

    Hi Experts, PROD ISSUE All of sudden in PROD scenario all the messages start moving to Scheduled state in message monitoring and the channels have stopped polling . I have checked the dispatcher status in engine status (additional data tab) and find

  • How to get Surround Sound 7.1 output out of all speakers?

    Hi all...   I moved my system from Ubuntu recently and am having one small issue that I haven't been able to solve; everything else is working great and I'm about ready to move all of my other systems to Arch also, once I've solved this.  :-) The one

  • PLease Help! WMV issues

    Hello, When I Get Media and bring in a WMV file to any preset, the top half of the video file is black and the bottom half is fine. Working in PE7. Any ideas why this is suddenly happening? Thanks, Stan

  • Where is Photo Stream on my ipad??

    Since updating my ipad (the original, not the ipad2) to iOS5, I'm not seeing the Photo Stream feature. So, for example, photos I take with my iphone are not showing up on my ipad (although they are showing up just fine on my iMac). What am I missing?

  • Which wireless speakers for Imac and how?

    I'm buying the airport express router today. I know it can stream music wirelessly to remote speakers. My question is: what are some good speakers I can buy and how do I configure them to receive the i-tunes music in my library? Do I need powered spe