Simple Stored Procedure Error

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

  1. #1

    Default Simple Stored Procedure Error

    CREATE PROCEDURE sp_magazine_sections

    @magazine_id INT, @magazine_section_id INT

    as


    IF @magazine_section_id is not null
    BEGIN
    SELECT TblMagazine_Sections.magazine_section_name,
    TblMagazine_Sections.magazine_section_id,
    TblMagazine_Sections_LK.magazine_section_id_fk,
    TblMagazine_Sections_LK.magazine_id_fk,
    TblMagazine_Sections_LK.magazine_section_photo ,
    TblMagazine_Sections_LK.magazine_section_desc
    FROM TblMagazine_Sections_LK INNER JOIN
    TblMagazine_Sections ON
    TblMagazine_Sections_LK.magazine_section_id_fk =
    TblMagazine_Sections.magazine_section_id
    WHERE TblMagazine_Sections_LK.magazine_id_fk = @magazine_id AND
    TblMagazine_Sections_LK.magazine_section_id_fk =@magazine_section_id
    ORDER BY magazine_section_order
    END

    ELSE
    BEGIN
    SELECT TblMagazine_Sections.magazine_section_name,
    TblMagazine_Sections.magazine_section_id,
    TblMagazine_Sections_LK.magazine_section_id_fk,
    TblMagazine_Sections_LK.magazine_id_fk,
    TblMagazine_Sections_LK.magazine_section_photo ,
    TblMagazine_Sections_LK.magazine_section_desc
    FROM TblMagazine_Sections_LK INNER JOIN
    TblMagazine_Sections ON
    TblMagazine_Sections_LK.magazine_section_id_fk =
    TblMagazine_Sections.magazine_section_id
    WHERE TblMagazine_Sections_LK.magazine_id_fk = @magazine_id
    ORDER BY magazine_section_order
    END

    ism Guest

  2. Similar Questions and Discussions

    1. Error while executing stored procedure
      I get the following error message when I am trying to execute a stored procedure. It runs fine on my dev server but giving error in production. ...
    2. Stored procedure error
      We are attempting to use a stored procedure to enter data into two tables and we are recieving this error: ADODB.Command error '800a0d5d' ...
    3. simple stored procedure
      Hi there!! I want to try stored proceudre that copies one field data from table1 to table2.. Can any one suggest how to write? I searched on net...
    4. Error in compiling stored procedure
      For -901 always call support. They are internal error-messages you should never see. When calling support ask them to open an APAR straight against...
    5. C stored procedure SQL error.
      I have a very basic C stored procedure written. It was working fine with some bogus/kludge SQL (just to get a DBRM created). I have now added...
  3. #2

    Default Re: Simple Stored Procedure Error

    What does your CFSTOREDPROC call look like in CF? (CFPROCPARAM for magazine_section_id, etc.)

    Phil
    paross1 Guest

  4. #3

    Default Re: Simple Stored Procedure Error

    And just as a practice, you may wish to consider renaming your stored
    procedures to not begin with sp_. Usually, sp_ stored procedures are system
    stored procedures and using an alternate naming convention will help in the
    long run. I agree with paross1 that it looks like the issue is in the
    CFSTOREDPROC call.

    sdwebguy99 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