Copy paste from word ?

Hello
I have some paragraph at Word. I want to copy(CTRL+C)from Word and want to paste (CTRL+V) to column of table of database. My paragraph is between 3 and 6 line. How can i do that ? Which column type should i use ? I will show paragraph at ASP.NET
web site page. Should i use label at web site page ?
Example: My word's paragraph at below.
"There are a lot of brands car. Countries product cars. Cars develop every year. People need cars and they want to quality and cheap cars. Some brands cars at below.
1-Mercedes.
2-Toyota
3-Opel
We can know a lot of brands."

Open a new query in the ssms  and paste the paragraph. Then you need to alter it
INSERT INTO tbl (<cols>) VALUES (1,'Mercedes'),(2,...........),(3,.....)
Best Regards,Uri Dimant SQL Server MVP,
http://sqlblog.com/blogs/uri_dimant/
MS SQL optimization: MS SQL Development and Optimization
MS SQL Consulting:
Large scale of database and data cleansing
Remote DBA Services:
Improves MS SQL Database Performance
SQL Server Integration Services:
Business Intelligence

Similar Messages

  • Enable copy-paste from Word to PDF

    Hi,
    I was working in PDF, copy-pasting words from Microsoft Word that needed altering, when suddenly this function was disabled. I can still paste text from Word into a new text field in PDF, but not in a Sticky Note or in Text Editing. Also, I can't copy-paste anything from the PDF into Word anymore. However, I can still copy-paste things from PDF into PDF (same file, and from other files). Does anyone know what's going on? How can I enable the copy-paste function again?
    Thank you.
    J

    Hi Deepak,
    The problem was in Word not Adobe. After closing Word and opening again, I could copy-paste again.
    Thanks.
    J

  • Strange characters when copy/paste from Word

    Hi,
    I have in Word u2018hellou2019 and when I paste it in the Notes of IR and save it, it turns into  018hello 019 so the apostrophes transform into these strange characters.
    I checked with Notepad, Excel and Wordpad and this issue does not occur, only for Word.
    Do you know why this happens ?
    It should be a Word/IE setting as this issue does not occur on a Terminal Server. Only on usersu2019
    workstations.
    Thank you
    Edited by: Mihai Olaru on Nov 1, 2008 2:43 AM

    Hi Shiva,
    Some styles for font of rich text aren't be kept when I copy the content from Word 2013 and paste into a wiki page from SharePoint 2010/2013(even SharePoint 2007 like this
    post) site as same as yours, it looks like a limitation.
    As a workaround, we can publish the Word content as a Blog article in SharePoint site, then copy the content from the blog page to the needed SharePoint page, it will keep the rich text content format, you can have a try.
    http://plexhosted.com/billing/knowledgebase/274/How-to-publish-a-SharePoint-blog-article-via-Microsoft-Word-2013-SharePoint-2013.html
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Rolling credits - Copy/paste from Word - straight line

    We create our rolling credits in Word, sometimes there are 100-200 student names. We create it in Word, centered, looking great and when we copy and paste it into the Text-rolling credits, it comes out as one line. We then have to manually place a return between names. Is there something I can do in Word, or somewhere that will make it so we don't have to do this tedious task.
    Thanks so much in advance.

    The only way I've ever been able to get text looking even close to the way I want it to look is to type it directly into the window in the text generators in Final Cut. Simple centered lines of text shouldn't be a problem - I'm curious as to why you do this in Word first instead of typing right into the generator.
    I have had overall better success with text using Title 3D except that it's completely incompetent for 2-column centered text like you see in most scrolling credits.
    w/r/t Word, try saving your document as plain text, then open it in Text Editor to do your copy/paste. (Or just use Text Editor in the first place.) I suspect the problem you are seeing is coming from Word's DOC format.

  • Formatting issues in sharepoint 2013 when copy/paste from word document

    Hi, 
    When we copy/paste content(rich text, tables, styles) from a word document to SharePoint site whole formatting is messed up.
    is this the limitation of SharePoint 2013?
    Thanks, 
    Shiva.

    Hi Shiva,
    Some styles for font of rich text aren't be kept when I copy the content from Word 2013 and paste into a wiki page from SharePoint 2010/2013(even SharePoint 2007 like this
    post) site as same as yours, it looks like a limitation.
    As a workaround, we can publish the Word content as a Blog article in SharePoint site, then copy the content from the blog page to the needed SharePoint page, it will keep the rich text content format, you can have a try.
    http://plexhosted.com/billing/knowledgebase/274/How-to-publish-a-SharePoint-blog-article-via-Microsoft-Word-2013-SharePoint-2013.html
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Cannot copy and paste from Word into Mail

    I cannot copy and paste from Word into Mail. Neither from using the keyboard shortcuts, or using the Menu function. I can copy and paste from other applications into Mail- but for some reason, text copied from a Word document (both in .txt and .doc formats) will not paste into an open email. Anyone else have this issue? It's a new issue. I used to be able to do this easily.

    I had similar issues starting about the same time or within the past week. However, I can copy and paste, it just takes considerably longer than it used to before. Copying something from a web page into Word could take up to 30 seconds now on my computer but it shows a busy mouse pointer while it is loading, then clicks/pops when it loads into the Word document, but then actually takes about another 5 to 10 seconds to appear in the Word document. I have no idea why it is delaying now when it did not do it before, but since it is still going into the document I am living with it for now. Are you waiting long enough to see if it appears?

  • Extract All Embedded Files in All Folders and Save Each? Copy/Paste from PDF to Word?

    I have most of what I need here, but I’m missing 2 important pieces. 
    #1)  I want to copy/paste from all PDF files in a folder and paste the copied data into a single Word file. 
    It works fine if I have ONLY Word docs in my folder.  When I have PDF files and Word files, the contents of the Word files are copied in fine, but the contents of the PDF files seem to come in as Chinese, and there is no Chinese in
    the PDF, so I have no idea where that’s coming from.
    #2)  I want to extract all embedded files (in all my Word files) and save the extracted/opened file into the folder.  Some embedded files are PDFs and some are Excel files.
    Here the code that I’m working with now.
    Sub Foo()
    Dim i As Long
    Dim MyName As String, MyPath As String
    Application.ScreenUpdating = False
    Documents.Add
    MyPath = "C:\Users\001\Desktop\Test\" ' <= change this as necessary
    MyName = Dir$(MyPath & "*.*") ' not *.* if you just want doc files
    On Error Resume Next
    Do While MyName <> ""
    If InStr(MyName, "~") = 0 Then
    Selection.InsertFile _
    FileName:="""" & MyPath & MyName & """", _
    ConfirmConversions:=False, Link:=False, _
    Attachment:=False
    Dim Myshape As InlineShape
    Dim IndexCount As Integer
    IndexCount = 1
    For Each Myshape In ActiveDocument.InlineShapes
    If Myshape.AlternativeText = PDFname Then
    ActiveDocument.InlineShapes(IndexCount).OLEFormat.Activate
    End If
    IndexCount = IndexCount + 1
    Next
    Selection.InsertBreak Type:=wdPageBreak
    End If
    On Error Resume Next
    Debug.Print MyName
    MyName = Dir ' gets the next doc file in the directory
    Loop
    End Sub
    If this has to be done using 2 Macros, that’s fine. 
    If I can do it in 1, that’s great too.
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    Hi ryguy72,
    >>When I have PDF files and Word files, the contents of the Word files are copied in fine, but the contents of the PDF files seem to come in as Chinese, and there is no Chinese in the PDF, so I have no idea where that’s coming from.<<
    Based on the code, you were insert the file via the code Selection.InsertFile. I am trying to reproduce this issue however failed. I suggest that you insert the PDF file manually to see whether this issue relative to the specific file. You can insert PDF
    file via Insert->Text->Object->Text from file.
    If this issue also could reproduced manually, I would suggest that you reopen a new thread in forum to narrow down whether this issue relative to the specific PDF file or Word application.
    >> I want to extract all embedded files (in all my Word files) and save the extracted/opened file into the folder.  Some embedded files are PDFs and some are Excel files.<<
    We can save the embedded spreadsheet via Excel object model. Here is an example that check the whether the inlineshape is an embedded workbook and save it to the disk for you reference:
    If Application.ActiveDocument.InlineShapes(1).OLEFormat.ClassType = "Excel.Sheet.12" Then
    Application.ActiveDocument.InlineShapes(1).OLEFormat.DoVerb xlPrimary
    Application.ActiveDocument.InlineShapes(1).OLEFormat.Object.SaveAs "C:\workbook1.xlsx"
    Application.ActiveDocument.InlineShapes(1).OLEFormat.Object.Close
    End If
    And since the Word object model doesn't provide API to save the embedded PDF, I would suggest that you get more effective response from PDF support forum to see whether it supports automation. If yes, we can export the PDF as embedded spreadsheet like code
    absolve.
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When I copy and paste from Word to my e-mail using Firefox it changes the font and spacing to single and 10pt. It just started doing this a month ago. It does not do it when I am on my laptop or using Explorer. Help, I hate explorer.

    When I copy and paste from Word to my e-mail using Firefox it changes the font and spacing to single space and 10pt.
    It just started doing this a month ago.
    It does not do it when I am on my laptop or using Explorer.
    Help, I hate explorer.

    If this were a project that I was involved in, I would recapture the media at the correct frame rate and rebuild the sequences correctly.
    Moving from production, to post production, to delivery is a series of steps, and the success of any particular step is based on having all the preceding steps done correctly.
    Shortcuts and workarounds tend to create awkward and difficult problems, that often only surface late in the process.
    MtD

  • I can't copy paste from pdf to word due to Unicode character problem.

    I was able to copy paste from a pdf document on word and all of a sudden it won't let me paste anymore. Well, I can paste the text but it come up as 'square' thingy. The spanner icon lights up and says This document contains unicode characters that might not display correctly in the earlier version of the office. I'm using Office/Word 2008 on my Mac book air..
    I just dont understand why all of a suddent it wont past from the same pdf I was using to copy text from.
    Thanks.

    If you don't get an answer here, there's a forum devoted entirely to Word problems at
    http://answers.microsoft.com/en-us/mac/forum/macword

  • Special characters pasted from Word doc not rendering in Adobe Reader

    We have recuiters who have copy/pasted special characters from MS-Word into a new eRecruiting requisition (the text contained square bullets from a bulleted list).  When pasted into the requsition, the Adobe pdf displays those characters as "-,," to the recruiter.  When end users then display the PDF, the results are inconsistent.  Some desktops render the text without displaying bullets, and others show an Adobe Reader popup: "The Japanese Language Support Package is required to display this page properly".
    I am wondering what device settings are causing these differences and if there is a solution to display the special characters.
    Thank you.

    Hello Tim,
    to make things short, although this is probably not very satisfying, you should prevent all your end users from copying text from word into an e-recruting application. Word contains tons of non-printable characters and as SAP uses completly other code-pages than windows everything can happen when these characters are loaded into sap.
    Be aware that this is not only effecting the formating. It took me 2 weeks last year to find out that a single posting was not found in the job search as one of the "spaces" in a posting text was in real a special character which made the TREX abort indexing on this publication documents.
    If you like bullet point lists in your publications there are ways to work with escape characters, we usally use the # character. So the recruiter types flow text and if he likes bullet points he just starts his paragraphs with # and then the publication transforms them automatically into bullet points. If you are quite familiar with smartforms adding this takes perhaps a day. If you want I can link some customer publication example and add some guidance how to build this.
    Best Regards
    Roman

  • Cut and paste from Word into Mail

    I have an earlier post where I thought I had solved this problem, but now it's back with a twist:
    I can cut and paste from Word, but after a few cut and pastes, it seems as if I can only paste the last successful section of text: copying new text from word seems to work, but when pasting into Mail, only the previous section of cut and pasted text appears.
    I have checked the preferences within Mail, and they are set for plain text... so there should be no problem, yes?
    I also tried quitting and then restarting Mail, but had the same problem...
    Any advice?

    Thanks, aqua*star -
    I just checked the "archiving" and "back-up" suggestions in the Mail "Help" window and got the following info:
    Mail preferences and messages
    Your Mail accounts, rules, signatures, and Smart Mailboxes preference settings can easily be backed up. Tip: All Mail-related preference files should be backed up or restored as a group.
    To back up:
    Note: These steps back up Mail preferences, but do not back up Mail messages (emails), although you can do that with the .Mac Backup utility. See below if you want to manually back up Mail messages (mailboxes).
    Create a uniquely-named folder on your desktop (or other favorite location). For example, you might call it "Mail Prefs Backups May152005" (adding a date is a good idea).
    Quit Mail if it's running.
    In the Finder choose Home from the Go menu.
    Open the Library folder.
    Open the Preferences folder.
    Copy the "com.apple.mail.plist" file to the folder you made in step 1 by Option-dragging the file. Don't remove the original file from its current location (this file contains your Mail accounts information).
    Close the Preferences folder.
    Open the Mail folder.
    Copy the "MessageRules.plist" file to the folder you made in step 1 by Option-dragging the file (this file contains your Mail rules).
    Copy the "SmartMailboxes.plist" file to the folder you made in step 1 by Option-dragging the file (you guessed it, this file contains Smart Mailboxes information).
    Finally, copy the Signatures folder to the folder you made in step 1 by Option-dragging the folder. (Your custom signatures, if you use them, are stored here.)
    To restore: Just move all of the copies of the files and folders from your uniquely-named folder to the original locations from which they came, as listed above.
    It looks like I can save and restore the Mail rules separately from the plist...

  • How can i Copy paste from e-mail to Notebook or textbook

    How can i Copy pasta from some Content of e-mail to the notepad or textbook or word?

    hold your finger down in the body of the mail - the part you want to copy. a blue box will comeup and offer to 'select/select all' or something like that. choose the appropriate choice. If you only want part of it that bubble will have two handles that allow you to drag out the selection box.
    then hold your finger down again and another bubble will come up offering to cut/copy the words. choose copy
    then navigate to your notes app (not sure about the textbook, depends on whether or not it support it) and hold your finger down in an empty text area. you'll get another blue bubble offering to paste it. choose that and the words should appear. then save as appropriate.

  • I'm composing an e-mail, and I copy/paste from a web page.

    Let's suppose I copy / paste from a web document. For the sake of argument I'm using Mail.  A black box appears around the pasted part (with a "X" in the corner).
    But, if I do a second paste, the new text is always inside the old box, therefore screwing up the indent.
    I can't get the curser to start outside the box. How can I get rid of the box while composing?
    Yes, the box disappears when I click outside it, but re-appears if I go for a new line below it.
    Here's an example of how it looks.
    #1. The fox.
           The quick brown fox jumped over the i-mac.
            #2.  I'm frustrated that I can't paste or type where the first line started, indent wise.
    Once the curser is after the word i-mac, and I try to move it down, the next line always goes to the indent of "The" and not #1.

    I take you are trying to write an email within Safari, try this open Safari and click on the Safari menu and select reset Safari. 

  • How to paste from Word and retain formating

    My co-worker and I are both running Dreamweaver. However for
    some reason I can copy and paste from Word into Dreamweaver and
    retain the formatting (bold/italic etc) but she can not. I've done
    searches on this board and online in general but haven't found
    anything about this issue. Keep in mind that we are not importing
    HTML from word, just basic cutting and pasting. The paragraph
    returns are retained but the bold/italic formatting is lost. We
    don't need the styles to come through (and would rather they not
    -they tend to corrupt the html-it get's all wonky) just the
    formatting.
    I'm sure it's something silly like a preference in Word or
    Dreamweaver but we can't seem to find it, or any one else who is
    having the same issue.
    Our next step is to reinstall Dreamweaver to see if that may
    clear the issue...
    Any thoughts?

    In DW 8 try PASTE SPECIAL. It gives you options for how much
    or how little
    formatting you want to retain when you paste.
    MD
    Scimino wrote:
    > My co-worker and I are both running Dreamweaver. However
    for some
    > reason I can copy and paste from Word into Dreamweaver
    and retain the
    > formatting (bold/italic etc) but she can not. I've done
    searches on
    > this board and online in general but haven't found
    anything about
    > this issue. Keep in mind that we are not importing HTML
    from word,
    > just basic cutting and pasting. The paragraph returns
    are retained
    > but the bold/italic formatting is lost. We don't need
    the styles to
    > come through (and would rather they not -they tend to
    corrupt the
    > html-it get's all wonky) just the formatting.
    >
    > I'm sure it's something silly like a preference in Word
    or
    > Dreamweaver but we can't seem to find it, or any one
    else who is
    > having the same issue.
    >
    > Our next step is to reinstall Dreamweaver to see if that
    may clear
    > the issue...
    >
    > Any thoughts?

  • Copy text from Word '03 into RH9

    I need to copy text from Word into RH in a way that does not bring in the Word codes.  I can obviously copy the text into notepad and then into RH, but I am wondering if there is a way to do it that would be similar to the "Paste Special / Unformatted Text" command in Word? 
    We cannot have the word codes in RH because we translate our user manuals and then use the translated UM text to gain discounts when we translated the html help files.  These codes throw off the matching and cause us to gain hardly any discounts.  Even simple formatting, like a bolded word puts in the word codes into the html code. I made the mistake of thinking if I unbold the word in RH then everything is fine, but little did I know the Word code was still in the HTML. 
    I appreciate your help.
    Also, I am open to suggestions on a better way to get my Word text into RH to be help.  I've started looking into Importing and Linking, but haven't figured out if they would be all that beneficial to us.

    Hi there
    Try the link below:
    http://www.grainge.org/pages/authoring/importing/about_importing_linking.htm
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • How can I install Windows 7 on a Retina MBP with no optical drive?

    I'd like to install Windows 7 on a Retina MacBook Pro via Boot Camp. However, the only distribution of Windows I'm aware of is on a physical disk. My MBP doesn't have an optical drive. It can't read disks like that. I'm hoping there's some kind of wo

  • I HAVE FOUND THE SOLUTION FOR THE FIRMWARE UPDA

    I'm sure most all of you have had this same problem I <strike>had:</strike> When you try to install the firmware update it says 'Plug in your player'!!? A very frusterating message mainly when your player is CLEARLY plugged in. So here's how I came a

  • How to reprint a check after reversing partial line items in F110

    Hi,    I have run the payment process by using F110, for one vendor. The proposal and payment made for 2 open items. After the cheque print, we have realised that we need to make payment for one line item only. First I have voided the cheque, then th

  • Give me information on user mapping in EP

    Hi we are using Ep7.0 with backend ECC 6.0 and we have LDAP server for SSO. Here my question is:         Is there any automated process for mapping EP user with backend user. Note: our ume datasource is config as LDAP readonly and DB. rgds..

  • Error in Sending spool list in background !!!

    Hello Gurus, I am trying to create a distribution list and as a requirement have to send the spool list out of the batch job to different users. I have created in SPAD a device type POST2 and specified the spool server. In Access method I have put HO