scripts/multiple queries in one CF Query block in Oracle

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

  1. #1

    Default scripts/multiple queries in one CF Query block in Oracle

    Greetings:

    I am primarily an MS SQL programmer and I am wondering how to run multiple
    query statements inside a single cfquery block. For example, on MS SQL I can do
    multiple delete statements, or an update and select within one cfquery block,
    but I get an error whenever I try to do this on ORACLE. Is there a way to
    accomplish this on ORACLE?

    thanks!

    acsdirect Guest

  2. Similar Questions and Discussions

    1. Query of Queries on query New type query
      In CF5 we have a page that creates a query, using queryNew and querySetCell and the like, we then used dbtype="query" and gave it's name so we could...
    2. Slow Queries with Linux/Oracle
      I have a query in CF7 hitting a Linux/Oracle server that takes 80,000 milliseconds to run, while the same query run in TOAD take 37 milliseconds....
    3. long running Oracle queries in MX 6.1 Enterprise
      Hi All, I have a few queries (some of which are very simple - return one varchar value from a table with 50 rows, for example) that occassionally...
    4. oracle indexes and scripts
      Oracle indexes & analyze question. I have four queries I am running against three tables. I have created some indexes on the tables. After...
    5. find physical blocks/disks, mapped from Oracle file# and block#, block corruption
      Hello "lopera" <prlopera@techie.com> schrieb im Newsbeitrag news:3E1C7C00.9090402@techie.com... I think that we need a bit more data here....
  3. #2

    Default Re: scripts/multiple queries in one CF Query block inOracle

    No there isn't
    Dan Bracuk Guest

  4. #3

    Default Re: scripts/multiple queries in one CF Query block inOracle

    Your best bet would be to use multiple CFQUERY tags within CFTRANSACTION tags
    if you want them all to be handled in a "block" or "session". Or, put all of
    your SQL statements in a PL/SQL stored procedure.

    Phil

    paross1 Guest

  5. #4

    Default Re: scripts/multiple queries in one CF Query block inOracle

    ok, thanks a lot.
    acsdirect 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