Will pay for support

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Will pay for support

    I am an above average SQL Programmer with a high (nearly expert) skill in Cold
    Fusion. There is no peer around me that I can ask a question and get an
    answer. I posted a question the other day, and still have not heard back. Are
    there any Cold Fusion and/or SQL (preferably SQL, because that is my biggest
    hurdle) Experts that I can pay to give me top level support. It can be on a
    per instance or monthly basis.

    Please advise.

    HugoSchmidt Guest

  2. Similar Questions and Discussions

    1. Does FMS 2 support UDP?
      Hello all, I'm looking for some clarification here - I'm a Director developer and sending info across the network with UDP instead of a reliable...
    2. Does FMS support JSP?
      JSP, Servlet or J2EE?:confused;
    3. UTF support in SWF
      Hi, I have a question. Do we have UTF support in Flash MX 2004 Or in Flex 2? Like I want to type language in Arabic and want to see in SWF....
    4. CSS support in DW
      I'm just wondering if there is a way to hide certain CSS rules from dreamweaver. I'm using a few hacks to compensate for bugs in different...
    5. UTF-8 Support
      I'm using FileIO to import a text file, after which I process it in certain ways and use FileIO to export the text to a new text file. This works...
  3. #2

    Default Re: Will pay for support

    Let's start for free. What was your question ? If it's very dificult I'll charge you a fee.. 8-)

    Regards
    Sojovi Guest

  4. #3

    Default Re: Will pay for support

    I like your style. I think you can feel my frustration.

    Ok, so here goes, a user is uploading a text file (via a form post), the file
    then needs to be put into an NTEXT field. It used to work great, but now that
    the files are getting bigger (54kb) it is truncating the info. I have heard
    that there is a limit to the amount of text in a genergic INSERT statement. So
    my question is this, is there a way to "open" up that restriction to allow more
    characters using the INSERT statement? I have tried using the BULK INSERT and
    the BCP commands, and they all truncate what I am inserting.

    Once inserted, how can I make sure that what went in, is all of it. From what
    I undestand, if I do a SELECT myText FROM Table1 then it may not return the
    WHOLE content.

    HugoSchmidt Guest

  5. #4

    Default Re: Will pay for support

    (NB comments are MSSQL-specific)

    Apparently even WRITETEXT has a 120KB limitation. If you're brave you can
    write some DB-Library stuff using dbwritetext, which is limited to 2GB input.

    Check BOL for more info.

    Good luck.

    philh Guest

  6. #5

    Default Re: Will pay for support

    What is BOL?
    HugoSchmidt Guest

  7. #6

    Default Re: Will pay for support

    I don0t know what dB you are using, but supposing MS SQL server.
    You don't have limitations in the qty of bytes you can insert in a
    insert/update statement in a NTEXT/TEXT/IMAGE column (the limitations is the
    size 2 GB).
    The posibilities to insert a big chunk of text can be INSERT, BULK INSERT,
    DTS, each one has it's advantages and disadvantages.

    The problem cames when you want to retrieve the content of a NTEXT. If the
    size is small, no problem. If the size is bigger, it depends in the API (odbc,
    oledb). I.E., in CF, when you create a datasource and you'll use BLOB fields,
    you have to check an option that says smoething like "enable retrieve large
    fields..." don't remember exactly and you'll fix the problem about it.
    In ASP the solution is putting the BLOBL field in the last position of the
    select columns, and so on..

    I think you believe that SQL is truncating when you insert because you can't
    retrieve the content, but check the option in the datasource in the CF admin.

    Well, nothing more I can remember by now.

    Regards

    Sojovi Guest

  8. #7

    Default Re: Will pay for support

    HugoSchmidt wrote:
    > What is BOL?
    Books-on-Line, you're very best resource for sql server. it comes free w/the db.
    install it, use it & you won't need any sql server peers.

    did you turn on the CLOB/BLOB settings for that dsn (under the "advanced" menu)?
    i've stuffed monster-thumping big files into sql server via cf & returned them ok.
    PaulH *ACE* Guest

  9. #8

    Default Re: Will pay for support

    Sojovi, YOU ROCK!!!!

    That was it. Silly me for thinking that something like that would default to
    "no" I am sure it is to speed up some performance. Anyway, I turned both on,
    ran my select statement and TA-DA it was done.

    philh,
    When I have some spare time in my already overloaded life, I'll read throught
    BOL. For now, I am going to take blatent advantage of all of your knowledge!
    :-D

    Thanks!

    HugoSchmidt 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