"Importing" table-comments into an existinting server model with a text file

Hello
i have redesigned a database with the "capture design" tool - server model and
server model diagramm is ok.
Now, i want add many table- and column-comments into the server model.
I wrote these comments with the "comment on table..." and "comment on column...."-command (in uppercase mode)
into a scriptfile and tried, to "import" this scriptfile with the "capture design" ==> "server model" ==> "DDL-Files".
The designer said "Processing Complete: 0 error(s), 0 warning(s)". But if i look in the server model or in the
server model diagramm....nothing happened.
Has anyone an idea?
regards

Aha, we're onto something here + I've just been reading the thread with +75 replies that's currently on the front screen which seems to be related though not entirely.
OK the original filename was Renting Checklist.txt with a space, I deleted the space and renamed it Renting_Checklist.txt, made it the only attachment to a new email and sent from my ISP email account to my gmail account and it went fine.
So that's why then but it's strange that it went when it was attached on an email with another attachment (whose filename didn't contain spaces or special characters). Does this sound tied in with the similar problems that others are having? It ought to be worthy of a fix, I can't tell when this problem started because I haven't had cause to send an email with a text attachment that had spaces in the filename.

Similar Messages

  • How to Import Spotlight Comments into iPhoto

    Is there a way to import Spotlight Comments into iPhoto at the same time I bring in the image?

    Afraid not. You will need something to convert those comments into standard photo metadata like Exif or IPTC.
    Regards
    TD

  • I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    First-off, this seems to be a general problem with 10.4 (across all the operating systems of which I am aware).  Unfortunately, I cannot provide a permanent solution but, if you need a quick fix, this will (hopefully) work for you.
    For some inexplicable reason, iTunes no longer recognises standard Windows paths.  For example:
    Y:\Music\Buddy Holly\Buddy Holly - Rave On.mp3
    The end result is that it will import a playlist with no content. 
    It will, however, recognise the equivalent Apple paths which look like this:
    file://localhost/Y:/Buddy Holly/Buddy Holly - Rave On.mp3
    It is possible to convert your existing playlists using a few basic replace commands in something like Notepad.  In my case, I made some code changes in my music manager and now generate two sets of playslists (one standard and one to accommodate iTunes).
    Forgive me foir stating the obvious but please remember to make sure that the disk / path containing your music is accessible when doing the import otherwise you will probably get a blank result.  Note that you can do a bulk import by selecting all the (revised) playlists and dragging them onto the iTunes sidebar.
    I am sorry that this is not a "clean" solution but it will work if you are in a bind.  The only alternative of which I am aware is to wait for Apple to fix the problem.

  • Having trouble importing .xml comments into Captivate 7 project.

    I'm trying to import comments made in the Captivate Reviewer program.  I exported the comments to my desktop and now when I try to import them into the the project, I get this error.
    Does anyone have any advice?  Thanks.

    Hard luck there! I guess you opened the Captivate source file after you sent for review and saved it again (with or without modification).
    When you send a Captivate review project (CREV) file for review, it uses some kind of identifier that maps the incoming XML files with the source file. If you open/ edit the source file and save it after sending it for review, a new identifier is created, which results in this kind of mismatch. Hence this issue.
    AFAIK, there is no way to import the files. You have to open the XML separately and address the comments manually.
    Sreekanth

  • Importing MDaemon email into OSX Leopard Server

    I currently use MDaemon email server software on a Win2K server computer to manage my company email. Can Email Services on OSX Leopard import all my old emails from MDaemon? I really want to make the change and dump Win2K forever....but I can't throw away 8 years of carefully organized emails and their subfolders. Is this a problem? Thanks in advance.

    Just looking to move about 4 years worth of archived emails for about 12 email accounts. I'm hoping I can merge all our old emails into Leopard Email Service. They are ".msg" files.
    Message was edited by: Brian Cunneff
    Message was edited by: Brian Cunneff

  • Import Spotlight comments into Bridge CS3?

    Has anyone figured out a way to do this yet?
    Thx

    Has anyone figured out a way to do this yet?
    This sounds like a request after an earlier post but I don't know what you
    exactly want or to what post you are referring to. As I rarely use Spotlight
    I saw an option to place a comment but never used it in my workflow nor have
    I heard anyone else about it.
    Bridge uses metadata according to IPTC, if you need to copy text to those
    fields you might try the scripting forum elsewhere on this site.
    Maybe you can specify a bit more what you want to do and what your goal is.
    Meanwhile you could already start to use a workflow with adding text to the
    metadata fields in Bridge itself. You can select multiple files that need
    same info and you only have to fill in once for those selected files to fill
    them all in one go.
    BTW, the current version is CS5 and needless to say you are a little behind
    with upgrading, especially Bridge CS3 was not the best version. CS6 will be
    your last chance to an upgrade after this you will have to get a complete
    new version.

  • Application Server Download - Tab Delimited Text File

    Hi,
    I am trying to create a tab delimited text file in application server. Is there any option should i use with the Open Dataset / Transfer statements? My requirement is to download the file (Text - Tab Delimited) into Excel for further analysis. Can you please suggest me a suitable solution for this?
    Thanks,
    Kannan.

    Hi,
    You can use transactions CG3Y and CG3Z. Its very simple.
    Refer sample code:
    constants: c_split TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
    c_path TYPE VALUE char100 '/local/data/interface/A28/DM/OUT'.
    *& Form f1001_browse_appl_file
    Pick up the file path for the file in the application server
    FORM f1001_browse_appl_file .
    DATA: lcl_directory TYPE char128.
    lcl_directory = p_direct.
    CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
    EXPORTING
    directory = lcl_directory
    filemask = c_mask
    IMPORTING
    serverfile = p_f2
    EXCEPTIONS
    canceled_by_user = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE s000 WITH text-039.
    EXIT.
    ENDIF.
    ENDFORM. " f1001_browse_appl_file
    *& Form f1004_app_file
    upload the file from the application server
    FORM f1004_app_file .
    REFRESH: i_input.
    OPEN DATASET p_f2 IN TEXT MODE ENCODING DEFAULT FOR INPUT.
    IF sy-subrc EQ 0.
    DO.
    READ DATASET p_f2 INTO wa_input_rec.
    IF sy-subrc 0.
    MESSAGE s000 WITH text-030.
    EXIT.
    ENDIF.
    o
    + Split The CSV record into Work Area
    PERFORM f0025_record_split.
    o
    + Populate internal table.
    APPEND wa_input TO i_input.
    CLEAR wa_input.
    ENDDO.
    ENDIF.
    ENDFORM. " f1004_app_file
    *& Form f0025_record_split
    Move the assembly layer file into the work area
    FORM f0025_record_split .
    CLEAR wa_input.
    SPLIT wa_input_rec AT c_split INTO
    wa_input-legacykey
    wa_input-profile_role
    wa_input-read_date.
    ENDFORM. " f0025_record_split
    DO your manipulation with the data records here.
    Popualte data into final internal table and write it back to application server at the desired path.
    *& Form f0020_write_application
    Write error log to application Server
    FORM f0020_write_application .
    IF p_f1 IS NOT INITIAL.
    CONCATENATE p_direct p_obj sy-datum text-037 INTO p_f2.
    ELSEIF p_f2 IS NOT INITIAL.
    REPLACE text-036 IN p_f2 WITH text-037.
    ENDIF.
    OPEN DATASET p_f2 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc 0.
    EXIT.
    ENDIF.
    LOOP AT i_error INTO wa_error.
    TRANSFER wa_error TO p_f2.
    IF sy-subrc 0.
    EXIT.
    ENDIF.
    CLEAR wa_error.
    ENDLOOP.
    CLOSE DATASET p_f2.
    ENDFORM. " f0020_write_application
    HTH,
    Regards,
    Dhruv Shah

  • Want to change the SQL Server Agent Job History Text Files Location

    We have SQL Server 2014 installed on a couple servers, but they were not consistent on directory paths during the installs. I am trying to get the servers to all match.
    On one server, SQL Server the Agent Log and Job History files were being written to [H:\Data Root Directory\MSSQL12.MSSQLSERVER\MSSQL\Log].
    I want to change that to [H:\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\Log] to match the other server.
    I have ALREADY gone into SSMS - [SQL Server Agent] - [Properties] and changed the "Error Log " "Fle Name" to [H:\Microsoft SQL Server\MSSQL12.MSSQLSERVER\MSSQL\Log\SQLAGENT.OUT].  And that is working great.
    In [SQL Server Configuration Manager] - [SQL Server (MSSQLSERVER)] - [Properties] - Startup Parameters entries have been changed to the new path (-d, -e, and -l), and under [Advanced] both Data Path and Dump Directory are pointing to the new path. 
    In [SQL Server Configuration Manager] - [SQL Server Agent (MSSQLSERVER)] - [Properties] - [Advanced] Dump Directory is pointing to the new path. 
    However, the job's History text files are still being written to the old path.
    There is no setting in the Jobs or the Maintenance Plans that controls the history file location.
    I have searched the registry and changed three settings from the old path to the new path.  The registry does NOT contain any more references to the old path.
    I rebooted the server, but when the jobs run their history text files are still be written to the old path.
    Does anybody have any ideas??   Thanks

    I checked the [Job] - [Step] - [Advanced ] - "Output File", and the field is blank.
    I then reviewed all the tabs and left menu items in the Job...I cannot find any where the references the old path.
    I then went to the Maintenance Plan and checked every thing there.  Still cannot find what is referencing this old path.
    SQL Server is also still writing xel files to this old path...if that offers any clues.
    The text file being generated is the recap of the Job run.  Starts with this:
    Microsoft(R) Server Maintenance Utility (Unicode) Version 12.0.2430
    Report was generated on "xxxxxxxxxxxxxxx".
    Maintenance Plan: SQL_Backups_Log
    Duration: 00:00:03
    Status: Succeeded.
    Details:
    Thanks for the ideas....

  • How to store data into database by reading sql statements from text file

    how to write java program for storing data into database by reading sql statements from text file

    Step 1: Create a property file to add various queries.
    Step 2: Read the properties file using ResourceBundle
    Step 3: Use the jdbc to execute the query read from the property file.
    So in future if you need to change query no need do any modifications in java program. But depends on how you use the property file.

  • Still having trouble with reading text file into array

    Hi, This is from another post, I have tried one of the solutions that were provided, but got the following error at runtime:
    C:\j24work>java Test7
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException
    at java.lang.StringBuffer.deleteCharAt(StringBuffer.java:681)
    at Test7.main(Test7.java:26)
    My code is attached. My text file reads as follows:
    7 5.5 15 5.35 30 6.5
    The first , third and fifth numbers should ultimately be int values representing the term of a mortgage. The second, fourth and sixth numbers ultimately need to be doubles representing the rate on a mortgage. Do I need a 2d array??
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.text.*;
    public class Test7 {
        public static void main(String[] args) throws Exception {
            String line        = null;
            int count   = 0;
            StringBuffer Term  = new StringBuffer();
            StringBuffer Rate  = new StringBuffer();
            BufferedReader input = new BufferedReader (new FileReader ("MortgageValues.txt"));
            while ((line = input.readLine()) != null) {
                if(count%2 == 0) Term.append(line).append(",");
                else        Rate.append(line).append(",");
                count++;
            Term.deleteCharAt(Term.length() -1);
            Rate.deleteCharAt(Rate.length() -1);
            System.out.println("Term>>>" +Term);
            System.out.println("Rate>>>" +Rate);
           // input.close ();
        }

    Okay, modify the code as below:
    import java.io.*;
    import java.util.*;
    public class Test7 {
        public static void main(String[] args) throws Exception {
            String line             = null;
            StringTokenizer strTok  = null;
            int count          = 0;
            StringBuffer term  = new StringBuffer();
            StringBuffer rate  = new StringBuffer();
            BufferedReader input = new BufferedReader (new FileReader ("MortgageValues.txt"));
            while ((line = input.readLine()) != null) {
                strTok = new StringTokenizer(line);
                while(strTok.hasMoreTokens()) {
                    if(count%2 == 0)    term.append(strTok.nextToken()).append(",");
                    else                rate.append(strTok.nextToken()).append(",");
                    count++;
            term.deleteCharAt(term.length() -1);
            rate.deleteCharAt(rate.length() -1);
            System.out.println("term>>>" +term);
            System.out.println("rate>>>" +rate);
           input.close ();
    }Cheers!
    ***Annie***

  • Server folder with lots of files hangs Finder and Terminal

    I work remotely from home, and connect to my company's PC network using VPN software and Finder's Go -> Connect to Server...
    Pre-Tiger, this worked fine. I could browse remote folders in the Finder, no matter how many files and other folders were contained in these folders...
    Ever since I loaded Tiger, when I connect to a server and navigate to a folder with "lots of" files (I don't know what the number is, but I do know that one of the folders that is a problem for me has 130 folders in it), the Finder hangs up and has to be relaunched...
    The same goes if I open a Terminal window and "cd" to the same directory... if I do an "ls", it hangs.
    I repeat, I never had this problem pre-Tiger, and the folders have not grown in size.
    Please help?
    Thank you!

    I think I solved it!!! After trying all sorts of copying from backups etc.... with no good result, I resorted to Cocktail and used the function in the second page called... System, under the Tab called Database 'Rebuild launch services database', though don't tick the box.
    This fixed things for me!! Hope it works for you too.

  • Issue while importing table from oracle to sql server using import and export wizard

    Hi All,
    I am trying to populate oracle table to sql server using import export wizard  and i am getting the below error.the table is allready present in the database but still it throwing error like table doesn't exists.
    Could not connect source component.
    Error 0xc0202009: Source - JOB_ACTION_HISTORY [1]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    Error 0xc02020e8: Source - JOB_ACTION_HISTORY [1]: Opening a rowset for ""FLXUSER"."JOB_ACTION_HISTORY"" failed. Check that the object exists in the database.
     (SQL Server Import and Export Wizard)
    Kindly help me out
    Thanks in advance

    Hi Snehasis,
    Please check whether the table name in the Oracle database has lower case letters. The table name should be exactly correct. 
    In addition, the issue might be related to the Oracle driver. What provider/driver do you use? If you use Microsoft OLE DB Provider for Oracle, you can try the
    Oracle OLE DB Provider. If you use Enterprise or Developer edition of SSIS 2008 or higher, you can also try the
    Microsoft Connectors for Oracle by Attunity. The  Oracle OLE DB Provider and Microsoft Connectors for Oracle are proved to have better performance.
    Regards,
    Mike Yin
    TechNet Community Support

  • Need help--cannot import hotel.dmp into chinese characterset server

    I'm from china.Because my oracle8i use
    chinese characterset, so I cannot import
    this file into my oracle.
    Has anybody can help me?
    Thanks you very much!!

    I seem to recall that SQL*Loader was capable of doing these kinds of language translations for you. You needed to account for machine language, character set, and datatype all of which could be manipulated either via FTP parameters when a file was transferred (tell ftp not to convert between machine languages, tell sqlloader the machine language being used, tell it the character set, etc.) I found examples of this by scouring the internet for sqlloader examples, but unfortunately I no long have then handy.
    Good luck.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by potian:
    I'm from china.Because my oracle8i use
    chinese characterset, so I cannot import
    this file into my oracle.
    Has anybody can help me?
    Thanks you very much!!<HR></BLOCKQUOTE>
    null

  • Importing MS Word into PDF adds extra page with document info

    I am still evaluating Acrobat Pro, including Life Cycle Designer to create Forms, currently testing converting existing forms made in MS Word to PDF. There is someting that I do not know how to resolve is when I import files from MS Word, an extra page with details info about the document is copied as well. It contains info such as number of pages, author, date of creation etc....20 lines of info.
    This becomes akward when inserting the document into an existing pdf...or just create a new form from the Word document....adds the extra page ..
    Is there a setup somewhere that I could modify to not have the extra info? or how do I delete it? I try to select the text but cannot (within life cycle)
    Thank you

    If you are importing into Designer, you should ask in that forum. If in Acrobat, then you might try printing the WORD document to a PDF first and importing the PDF. However, with Acrobat you will not get the form fields that you are preserving with Designer.

  • Importing Flex project into Flash CS5 for use with iPhone packager? Please Help.

    Hi all,
    I have been developing an application in Flex builder for the iPhone using the iPhone packager, where I've been using the Flex framework.
    Now I'm stuck at trying to use my existing libraries in Flash. It seems I can't add the UI components I used in Flex (class VideoExample) to the default Flash container. I need someone's help who has experience with that.
    I have created a .SWC file, but when I'm trying to add the container in Flash using addChild(new VideoExample) it doesn't work. I can't load the .SWF externally using loader.load() at runtime, because the application is for iPhone. Any solutions how could I import the project to Flash?
    I was thinking about changing the UI components classes from mx.* to fl.*, but I would have to change many code and I'm not sure if it would even work, and I don't want to loose compatibility with mxml.
    Please respond, help would be very much appreciated!
    Here's my mxml wrapper, from which I start the main application:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="EntryPoint.main()">
    </mx:Application>
    Then I have a class which creates the main container:
    package {
    import mx.core.*;
    public class EntryPoint {
        public static function main():void {
            var client:VideoExample = new VideoExample();
            var mxmlApp:Application = Application(Application.application);
            mxmlApp.addChild(client);
    Here is the main class VideoExample:
    package {
    import mx.controls.*;
    import mx.containers.*;
    public class VideoExample extends Canvas {
        public function VideoExample() {
            super();
            init();
            private function init():void {
            loadImage();
            loadText();
                    loadDisplay();
                    startConnection();

    This forum is for Flash Media Server Developers so most likely you migth get much traction here. I would recommend you to post your query on Flash Builder forum: http://forums.adobe.com/community/flash_builder/using_flash_builder
    Also you can try posting here:
    Flash Platform Services For Promotion - http://forums.adobe.com/community/promotion
    Flash : http://forums.adobe.com/community/flash/flash_general

Maybe you are looking for

  • Error when discarding an invoice line

    Hi , when i am trying to discard line in a validated invoice to correct its default account i get the following error "Cannot Discard the invoice line because a required call to tax calculation failed due to : &REASON" will someone tell me what could

  • Condition type not flown(not determined) into the sales order

    Hello Experts, There is one discount condition type which is having proper condition records, validity date.However, it is not getting determined properly and is not flown into the sales order. the user wants to know why this may happen.I tried to re

  • ALV tree editable

    Hi all,   I have a requirement to display the Data in ALV tree format with some fields as editable.I have to display data in 3 levels,which are of differents structures. To achieve editable in ALV tree display,I have used ALV GRID along with Tree dis

  • Mutliple fact tables

    Hi, I have a requirement to build a universe having 12 fact tables and 13 dimension tables. Can anyone suggest me how to build the universe whether to go with one universe or multiple universes. Coming to contexts can we have 10 contexts for 12 fact

  • Linux - We need this....

    Hello Adobe, With Linux support in the making I can't express how important it is for AIR to allow developers to execute other applications from an AIR app. It should even allow the developer to interact with the command line. Meaning that a develope