Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bschechter

  1. bschechter

    Dropping an index in SYBASE ASE

    We definitely could create a stored procedure for this work. The problem is that we do not seem to be able to come up with a syntax for the drop index statement that works even if the user is dba. If you know of a set of stored procedure commands that would work for our situation, it would...
  2. bschechter

    Dropping index in SYBASE ASE 12.0

    If we create the index using syntax, CREATE INDEX index1 on dba.table1 We can not drop the index using if we are connected as dba: DROP INDEX table1.index1 It works if we leave the dba out when creating the table. It appears that the table is then created as dbo owner.
  3. bschechter

    Dropping index in SYBASE ASE 12.0

    Yes. We have only one connection to DBMS (SQLCA) that we are using for all the SQL. Brian
  4. bschechter

    Dropping index in SYBASE ASE 12.0

    Starg, Yes SYBASE does not like the syntax if we use: DROP INDEX dba.table1.index1 And SYBASE can not find the object if we use: DROP INDEX table1.index1 Regards, Brian
  5. bschechter

    Dropping an index in SYBASE ASE

    SYBASE ASE only requires index names to be unique for a particular table. In fact, many tables in our schema have the same index name, so we need to indicate which table.
  6. bschechter

    Dropping index in SYBASE ASE 12.0

    Ladies and Gentlemen, We want to drop and recreate indexes via PowerBuilder powerscript using SYBASE ASE 12.0, but we are having problems with the drop side. We can create them using: ls_sql = "CREATE INDEX index1 on dba.table1" EXECUTE IMMEDIATE :ls_sql; However the drop SQL does...
  7. bschechter

    Dropping an index in SYBASE ASE

    Ladies and Gentlemen, We want to drop and recreate indexes in powerscript using SYBASE ASE 12.0, but we are having problems with the drop side. We can create them using: ls_sql = "CREATE INDEX index1 on dba.table1" EXECUTE IMMEDIATE :ls_sql; However the drop SQL does not work...
  8. bschechter

    Print Options from Library Painter

    I select a datawindow object on the library painter. This brings up the print options dialog. I select only the 4 script options and hit print. However I allows get all the sections (pictures, attributes, etc)? How can I eliminate these sections?

Part and Inventory Search

Back
Top