I am writing a script to reduce the size of our databases. It will copy out tables from database A to database B. The process uses bcp in and out. Database B is considerably smaller and will need to grow when necessary. So I do a check after each table to make sure that there is still enough space in database B. If the amount of space falls below a certain percentage I then increase the size of database B. After the the size is increased I move into a new sub routine that verifies that structure of the new table to be copied into is the same as the original table. This process fails as a result of not being able to execute a stored procedure. Giving the error that the proc is not found. I have verified the proc and it works fine. I believe that the reason it is failing is because it trys to run this proc while the alter database is still executing in the database. How can I make sure the process completes before I move into the next subroutine.

In reply to How to determine when sybase process complete by mnlight

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.