Tools to work with stored procedures in Oracle, in a team?

后端 未结 9 746
梦毁少年i
梦毁少年i 2020-12-31 09:18

What tools do you use to develop Oracle stored procedures, in a team :

  • To automatically \"lock\" the current procedure you are working with, so nobody else in
9条回答
  •  Happy的楠姐
    2020-12-31 09:56

    Using Source Control for Oracle you get a lot of what you're looking for.

    Stored procedures (as well as packages, functions, tables etc.) can be locked manually using the interface, not automatically, but this does prevent others making changes.

    The new SQL to create the object can then be checked into SVN or TFS (no CVS support unfortunately).

    The tool is not free but has a free 28-day trial.

提交回复
热议问题