Place file.txt

When i make place for file.txt in adobe in design CS6 the words shown as ??? ( like a photo )
So what can i do plz ??

When you place check on : Show Imort Options
On Text Import Options change Character Set: to Arabic (Macintosh

Similar Messages

  • What determines the file encoding for ${C:file.txt} = 'abc' ?

    What determines the file encoding for  
    ${C:file.txt} = 'abc'
    I'm always getting ASCII as the encoding for file.txt after executing that assignment.

    Thanks so much.   I'll keep looking for the MSFT doc on this.  I scanned Bruce Payette's book and did not find anything there.   
    It turns out to be one of those "by rote" things you have to learn about PowerShell.
    My concern about the lack of documentation is that MSFT might change the underlying code in the future to use Unicode and that might break some existing code.  If there was some MSFT provided documentation declaring ASCII as the intended encoding they
    might provide plenty of warning if they do a switch in encoding.
    I note also that if you try to write characters outside the ASCII set (see example below) that character substitution happens to find an ASCII character to use in place of the one outside the ASCII set.  In the example below a 'v' is substituted for
    the '√' character:
    ${C:xo.txt} = '√'

  • How to convert from SQL Server table to Flat file (txt file)

    I need To ask question how convert from SQL Server table to Flat file txt file

    Hi
    1. Import/Export wizened
    2. Bcp utility
    3. SSIS 
    1.Import/Export Wizard
    First and very manual technique is the import wizard.  This is great for ad-hoc and just to slam it in tasks.
    In SSMS right click the database you want to import into.  Scroll to Tasks and select Import Data…
    For the data source we want out zips.txt file.  Browse for it and select it.  You should notice the wizard tries to fill in the blanks for you.  One key thing here with this file I picked is there are “ “ qualifiers.  So we need to make
    sure we add “ into the text qualifier field.   The wizard will not do this for you.
    Go through the remaining pages to view everything.  No further changes should be needed though
    Hit next after checking the pages out and select your destination.  This in our case will be DBA.dbo.zips.
    Following the destination step, go into the edit mappings section to ensure we look good on the types and counts.
    Hit next and then finish.  Once completed you will see the count of rows transferred and the success or failure rate
    Import wizard completed and you have the data!
    bcp utility
    Method two is bcp with a format file http://msdn.microsoft.com/en-us/library/ms162802.aspx
    This is probably going to win for speed on most occasions but is limited to the formatting of the file being imported.  For this file it actually works well with a small format file to show the contents and mappings to SQL Server.
    To create a format file all we really need is the type and the count of columns for the most basic files.  In our case the qualifier makes it a bit difficult but there is a trick to ignoring them.  The trick is to basically throw a field into the
    format file that will reference it but basically ignore it in the import process.
    Given that our format file in this case would appear like this
    9.0
    9
    1 SQLCHAR 0 0 """ 0 dummy1 ""
    2 SQLCHAR 0 50 "","" 1 Field1 ""
    3 SQLCHAR 0 50 "","" 2 Field2 ""
    4 SQLCHAR 0 50 "","" 3 Field3 ""
    5 SQLCHAR 0 50 ""," 4 Field4 ""
    6 SQLCHAR 0 50 "," 5 Field5 ""
    7 SQLCHAR 0 50 "," 6 Field6 ""
    8 SQLCHAR 0 50 "," 7 Field7 ""
    9 SQLCHAR 0 50 "n" 8 Field8 ""
    The bcp call would be as follows
    C:Program FilesMicrosoft SQL Server90ToolsBinn>bcp DBA..zips in “C:zips.txt” -f “c:zip_format_file.txt” -S LKFW0133 -T
    Given a successful run you should see this in command prompt after executing the statement
    Starting copy...
    1000 rows sent to SQL Server. Total sent: 1000
    1000 rows sent to SQL Server. Total sent: 2000
    1000 rows sent to SQL Server. Total sent: 3000
    1000 rows sent to SQL Server. Total sent: 4000
    1000 rows sent to SQL Server. Total sent: 5000
    1000 rows sent to SQL Server. Total sent: 6000
    1000 rows sent to SQL Server. Total sent: 7000
    1000 rows sent to SQL Server. Total sent: 8000
    1000 rows sent to SQL Server. Total sent: 9000
    1000 rows sent to SQL Server. Total sent: 10000
    1000 rows sent to SQL Server. Total sent: 11000
    1000 rows sent to SQL Server. Total sent: 12000
    1000 rows sent to SQL Server. Total sent: 13000
    1000 rows sent to SQL Server. Total sent: 14000
    1000 rows sent to SQL Server. Total sent: 15000
    1000 rows sent to SQL Server. Total sent: 16000
    1000 rows sent to SQL Server. Total sent: 17000
    1000 rows sent to SQL Server. Total sent: 18000
    1000 rows sent to SQL Server. Total sent: 19000
    1000 rows sent to SQL Server. Total sent: 20000
    1000 rows sent to SQL Server. Total sent: 21000
    1000 rows sent to SQL Server. Total sent: 22000
    1000 rows sent to SQL Server. Total sent: 23000
    1000 rows sent to SQL Server. Total sent: 24000
    1000 rows sent to SQL Server. Total sent: 25000
    1000 rows sent to SQL Server. Total sent: 26000
    1000 rows sent to SQL Server. Total sent: 27000
    1000 rows sent to SQL Server. Total sent: 28000
    1000 rows sent to SQL Server. Total sent: 29000
    bcp import completed!
    BULK INSERT
    Next, we have BULK INSERT given the same format file from bcp
    CREATE TABLE zips (
    Col1 nvarchar(50),
    Col2 nvarchar(50),
    Col3 nvarchar(50),
    Col4 nvarchar(50),
    Col5 nvarchar(50),
    Col6 nvarchar(50),
    Col7 nvarchar(50),
    Col8 nvarchar(50)
    GO
    INSERT INTO zips
    SELECT *
    FROM OPENROWSET(BULK 'C:Documents and SettingstkruegerMy Documentsblogcenzuszipcodeszips.txt',
    FORMATFILE='C:Documents and SettingstkruegerMy Documentsblogzip_format_file.txt'
    ) as t1 ;
    GO
    That was simple enough given the work on the format file that we already did.  Bulk insert isn’t as fast as bcp but gives you some freedom from within TSQL and SSMS to add functionality to the import.
    SSIS
    Next is my favorite playground in SSIS
    We can do many methods in SSIS to get data from point A, to point B.  I’ll show you data flow task and the SSIS version of BULK INSERT
    First create a new integrated services project.
    Create a new flat file connection by right clicking the connection managers area.  This will be used in both methods
    Bulk insert
    You can use format file here as well which is beneficial to moving methods around.  This essentially is calling the same processes with format file usage.  Drag over a bulk insert task and double click it to go into the editor.
    Fill in the information starting with connection.  This will populate much as the wizard did.
    Example of format file usage
    Or specify your own details
    Execute this and again, we have some data
    Data Flow method
    Bring over a data flow task and double click it to go into the data flow tab.
    Bring over a flat file source and SQL Server destination.  Edit the flat file source to use the connection manager “The file” we already created.  Connect the two once they are there
    Double click the SQL Server Destination task to open the editor.  Enter in the connection manager information and select the table to import into.
    Go into the mappings and connect the dots per say
    Typical issue of type conversions is Unicode to non-unicode.
    We fix this with a Data conversion or explicit conversion in the editor.  Data conversion tasks are usually the route I take.  Drag over a data conversation task and place it between the connection from the flat file source to the SQL Server destination.
    New look in the mappings
    And after execution…
    SqlBulkCopy Method
    Sense we’re in the SSIS package we can use that awesome “script task” to show SlqBulkCopy.  Not only fast but also handy for those really “unique” file formats we receive so often
    Bring over a script task into the control flow
    Double click the task and go to the script page.  Click the Design script to open up the code behind
    Ref.
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • Flat file connection: The file name "\server\share\path\file.txt" specified in the connection was not valid

    I'm trying to execute a SSIS package via SQL agent with a flat file source - however it fails with Code: 0xC001401E The file name "\server\share\path\file.txt" specified in the connection was not valid.
    It appears that the problem is with the rights of the user that's running the package (it's a proxy account). If I use a higher-privelege account (domain admin) to run the package it completes successfully. But this is not a long-term solution, and I can't
    see a reason why the user doesn't have rights to the file. The effective permissions of the file and parent folder both give the user full control. The user has full control over the share as well. The user can access the file (copy, etc) outside the SSIS
    package.
    Running the package manually via DTExec gives me the same error - I've tried 32 and 64bit versions with the same result. But running as a domain admin works correctly every time.
    I feel like I've been beating my head against a brick wall on this one... Is there some sort of magic permissions, file or otherwise, that are required to use a flat file target in an SSIS package?

    Hi Rossco150,
    I have tried to reproduce the issue in my test environment (Windows Server 2012 R2 + SQL Server 2008 R2), however, everything goes well with the permission settings as you mentioned. In my test, the permissions of the folders are set as follows:
    \\ServerName\Temp  --- Read
    \\ServerName\Temp\Source  --- No access
    \\ServerName\Temp\Source\Flat Files --- Full control
    I suspect that your permission settings on the folders are not absolutely as you said above. Could you double check the permission settings on each level of the folder hierarchy? In addition, check the “Execute as user” information from job history to make
    sure the job was running in the proxy security context indeed. Which version of SSIS are you using? If possible, I suggest that you install the latest Service Pack for you SQL Server or even install the latest CU patch. 
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • How to place file on server through client vie web-forms

    We are on 9i application server, which is being used all over the nation through URL. Now is there any way/option to place file on the server through form-web page.
    Thanks.

    Here's an example:
    http://e-ammar.net/Oracle_TIPS/using__webutil_file_transfer.htm

  • Infinite Beachball when Open/Place File Dialog is Called

    (Apologies on the novel below. If it helps a soul out there from a descent into madness, well, at least one of us got out okay.)
    I am having a heck of a morning that is bleeding over from last night (and it has nothing to do with Mardi Gras time in New Orleans). I have recently set up my laptop (a new MBP) with Yosemite and AICS 5.1 and 6 (haven't yet made the move to subscription CC). I use the laptop at my office, where we have a simple network (one router, a switch, and several NAS drives). All day yesterday I worked on the system and had no issues. I took the computer home (another simple network with router, switch, nas drive) and whenever I attempted to either Place a file into an existing document or Open a file from within Illustrator the file dialog window would open. However, even though the window would indicate the Desktop directory was being accessed, the list of files would not populate and, after a couple seconds, the cursor would beachball forever. Uncertain to its reason, I attempted several remedies (cleaning font cache, uninstalling a couple system preference panes, paring down font menu, removing sidebar items, deleting all preferences, making changes to Dropbox settings). The only thing that worked in getting the dialogs not to beachball was to install a temporary user account and load AI from there (not a practical solution, ultimately). Also, it is important to note, this Open/Place problem occurs in AICS5.1 as well as AICS6. Things that do work regarding file access: if I Save a file from within AI the file dialog comes up and no problem. If I double-click or otherwise open a file from the Finder or a search utility the document will open.
    This morning I brought my computer to work and attempted the Place command. The window opened and paused, and then a curious thing happened. I heard my NAS awaken. After several seconds, the dialog window populated, and all was righted. I could Open and Place files with no issue. The three network shares that I have at the office all reconnected (I had disconnected from all of them before quitting the network last night).
    At this point, my hypothesis is that AI was having some trouble with network shares and even though I had unmounted the shares AI was still remembering them (and having trouble letting go). To test this, I loaded AI with the shares mounted, quit AI, and then unmounted the shares. I then disconnected from the network and loaded AI. Attempting the Place command in a new document brought up the dialog window and directory file list (!). I then pressed [CMD] + D to get to the desktop files/shortcut folders and wham -- infinite beachball!
    My desktop has a bunch of helpful aliases for navigating local and network shares. There are links to my Dropbox folder, my client art folder, a screenshot folder, and four links to network shares. I made these shortcuts by mounting the share, going up a level in the root directory, and option-commanding the share over to the desktop. I don't know if this is a good or holy way to do it, but it's the way I've been doing it on 10.6.8. In any case, I took all of the icons on the desktop and threw them in a temp holding folder. I then loaded AI, new document, Place, go to Desktop directory -- no beachball. Open the temp folder, infinite beachball, force quit. Create a subfolder within the temp folder. Put all the network share aliases in there. AI, New, Place, Desktop directory (ok), temp directory (ok), subfolder (beachball party), force quit.
    Mind you, this is all with the network disconnected. When I get info any of the aliases the Finder beachballs!! After a few seconds, though, the Finder begrudgingly allows me to see the file information.
    So, there's something screwy with the way those aliases are behaving. When they are 'looked at' by the AI file dialog (or the Finder) the system wants to reach out and touch them, say hello. The Finder, although flummoxed, eventually regains composure and shakes off the hang. AI, however, can't break free.
    The temporary way forward, I suppose, is to remove those aliases from the Desktop and put them in a safe, out of the way place. I will probably create a few AppleScripts or Automator apps in their stead for mounting NAS shares, and assign to function keys. Hopefully someone out there with bigger lightbulbs over their head can shed some light on the problem and offer other suggestions for a more robust fix. In any case, it's probably a Yosemite problem, given the Finder's odd behavior.
    Cheers!
    -g-

    Open Finder, press Option key, select Go > Library, open Preferences and delete com.apple.desktop.plist

  • IDOC- XI- file.txt

    Hello everybody!
    I have scenario as below.
    IDOC->XI->file.txt
    I must transfer my packing list from idoc to file txt. The file txt must have a lot of lines for several levels of packing.
    I think to try to processing an IDOC message many times over.
    How can I Make?
    Or have you another idea?
    Thanks a lot!

    Hi Demetrio,
    Please have a look at the below weblogs...i hope it will help you to solve ur requirement...
    XI:Idoc Message Packages
    /people/sravya.talanki2/blog/2005/12/09/xiidoc-message-packages
    Collecting IDocs without using BPM
    /people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm
    IDOCs (Multiple Types) Collection in BPM
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm
    Thanks,
    Aravind.pujari

  • Cannot place files from Bridge CC into Indesign CC 2014. No option for anything except Photoshop.

    I can no longer place files from Bridge CC into Indesign CC 2014. No option for anything except Photoshop.

    I can no longer place files from Bridge CC into Indesign CC 2014. No option for anything except Photoshop.

  • How can i read Thai language in file .txt?

    AttN; Whom may concern.
    How can i read file txt in other language (Asian language such as Japanese, Thai, or Korea)?
    Please let me know urgent... I have to use it urgently...
    Best Regards,
    Sae
    Solved!
    Go to Solution.

    Hello Sae,
    Welcome to the Sony Community.
    What is the model number of the Reader Digital Book?
    The Reader supports the text file (.txt) formats as well as the following two formats:
    - EPUB file (.epub) EPUB (OPS version 2.0) supported
    - PDF file (.pdf) Support is based on the PDF 1.6 specification.
    The default language setting on your Reader Digital Book does not affect the language the book is in. To read books in a foreign language, you will have to purchase them specifically in that language.
    Thank you for your post.

  • SQL (Injection) Vs Flat File TXT Vs XML (XPath Injection) For Database.

    I will have to deal with robust login sessions so I need some advice on what type of database and language I will use.
    PHP and MySQL is the choice but I hear that flat file TXT are more faster so I am thinking about Perl.
    Perl is very flexiple and have many advantages but why do many folks use PHP.
    SQL and XPath injection are becoming more frequent plus MD5 and SH512 have been cracked by some angry folks.
    The Perl community is becoming very small so it will be difficult to receive support if I have a specific problem.

    In our projects we are extracting SMS messages and
    based on the
    MISDN (Telephone number) of each SMS we are fetching
    the corresponding
    account information (server name and password) from
    the database through (connecting through)
    webservice.The data is stored in the DB which you are accessing through a webserivce and that's too slow and unreliable so you are caching the results in a text file...
    That's horrible. The party responsible for the webservice should be fixing it or you should rethink the architecture. All this extra complexity and basically it's just causing problems for you. You'd be better off just accessing the DB directly. I assume this is possible since you know there is a database. In a good SOA architecture, you should not know or care about where the data is persisted.
    This webservice connection is slow/unreliable so a
    local copy of the
    MISDN number and corresponding account information
    are stored/updated in flat files tp prevent repeated
    accessing through webservice.
    My question is-which will be faster for accessing,
    using txt file or xml or a different format.I don't think it's going to matter much at all for the numbers you site, unless you are running this on a 20 year old PC or something.
    But I think you are addressing the wrong problem.

  • GetRuntime().exec("chmod 777 a file.txt") - does not do the intended task

    Hi,
    I am trying to change the permissions of file (file name has spaces) using the Runtime.getRuntime().exec() method on AIX platform. My sample code is -
    import java.io.*;
    public class ChangeMode
         public static void main(String[] args)
              Process p = null;
         String cmd = null;
              cmd = "chmod " + "000" + " " + "a file.txt";
              try
              p = Runtime.getRuntime().exec( cmd );
              p.waitFor();
              catch( Exception e )
              e.printStackTrace();
              System.out.println("The exit value "+p.exitValue());
    In this case - I am getting exitValue of 2.
    But, the strange part is that - I am able to run the command
    "chmod 000 a file.txt "
    from the command prompt successfully.
    Any ideas what does an exitValue of 2 means and where is this program getting failed.
    Thanks!
    ~Saurabh

    Is 'a file.txt' the file name ?
    If I'm right, the Runtime.exec(String cmd) method will split the given string (using spaces.)
    The first token will be used a the command and the other ones as the arguments.
    In your example it will call chmod with three arguments: 000, a and file.txt
    In order to avoid that, you should either use the Runtime.exec(String[] cmd) method with: String[] cmd = new String[] {"chmod", "000", "a file.txt"};or try to put your file between ticks: String cmd = "chmod 000 'a file.txt'";You could have a look at this article to learn more about Runtime.exec() :
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html
    I hope it will help.

  • I want to place file IN LONG PATH created by java program

    I can't place file created by java in "e.g. c:\windows\system\driver32"!!!!
    but i can place in "c:\"
    why?

    >
    I can't place file created by java in "e.g.
    c:\windows\system\driver32"!!!!
    but i can place in "c:\"Are you using 2 backslashes to seperate directorys? Your path should look like this in your code: c:\\windows\\system\\driver32. Post some code an we will take a look if this dosn't solve your problem.

  • File txt- XI- BAPI

    Hello everybody,
    We need to configure a scenario as follows File txt->XI->R/3, can anybody help with an example, I found examples with xml files, but I really have no idea how to process a txt File and pass it to a XI structure, any help would be really really appreciated, thanks in advance.
    Regards
    Julio Cesar

    Hey,
    Firstly go thorugh File Content Conversion Parametes that are required to process a text file.
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/content.htm
    Configuration in the IR remains the same for both xml files or txt file.
    In ID during adapter configuration you need to set FCC parameter:- Prerequisite is you should have set your message protocol to File Content Conversion.
    Specify parameters for FCC. To do so follow the blog
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    If you havn't done this before try doing a file to file with fcc then go for rfc.
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    Doesn't take much tym. Gud luck.
    <b>Cheers,
    *RAJ*
    **REWARD POINTS IF FOUND USEFULL <b>

  • Create an outbound flat file .txt file from SAP to UAPM.

    How to Create an outbound flat file .txt file from SAP to UAPM (Unicenter Asset Portfolio Management).

    What do u want in flat file and what is your doubt please let me know as iam working i can help u

  • How to convert Flat file(.txt) data to an Idoc format(ORDERS05)

    Hi,
    How to convert Flat file(.txt) data to an Idoc format(ORDERS05). If any FM does the same work please let me know.
    thanks in advance,
    Chand
    Moderator message : Duplicate post locked. Read forum rules before posting.
    Edited by: Vinod Kumar on Jul 26, 2011 11:11 AM

    Hi,
            For more information, please check this link.
    http://sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/46759682-0401-0010-1791-bd1972bc0b8a
    Have a look at the FM IDOC_XML_FROM_FILE. May be it helps...
    Regards

Maybe you are looking for