Memo Field vs. OLE Obj

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Re: Memo Field vs. OLE Obj

    > is there any appreciable difference between using a field
    > of type Memo or an OLE object (say, an .rtf file)?
    If it's just TEXT, use Memo (or better yet, store the RTF file in the file
    system). Storing an OLE object requires much more overhead, and wastes
    valuable space inside the database -- which is much cheaper and faster on
    the file system.


    Aaron Bertrand - MVP Guest

  2. Similar Questions and Discussions

    1. Memo Field with Access
      Hopefully someone can help me with this. I have a memo field in Access, I type for example into the text box on the webpage: (ignore the >) *...
    2. Detecting MEMO field
      Hi all, i'd like to know if there is some way to detect whether a field is of type MEMO (i'm using MS Access) so to behave accordingly placing a...
    3. memo -field-urgent
      hi .. i am using memo field in a field which has to take long data. when i do the insert its now givng me error: Error Type: Microsoft OLE DB...
    4. Working with a Memo Field
      Here is what I am trying to do filecont = objRS("contents") filecont = replace(filecont,vbLF,",") if i use the objRS instead of the filecont...
    5. Memo field behavior
      Hello, In one application I can hit ctrl enter and get a new paragraph and in the second application I cannot. Both are memo fields. The only...
  3. #2

    Default Re: Memo Field vs. OLE Obj

    Actually, I don't have all that much control on the server
    file system as it is. And yes, it is just text. Thanks for
    the input.

    >-----Original Message-----
    >> is there any appreciable difference between using a
    field
    >> of type Memo or an OLE object (say, an .rtf file)?
    >
    >If it's just TEXT, use Memo (or better yet, store the RTF
    file in the file
    >system). Storing an OLE object requires much more
    overhead, and wastes
    >valuable space inside the database -- which is much
    cheaper and faster on
    >the file system.
    >
    >
    >.
    >
    MDW Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139