Other News

Community

Debug Stored Procedures in VB.NET

by Dianne Siebold – Debugging is an integral part of writing an application. Visual Studio .NET provides numerous enhancements to the debugger, including a unified debugging interface, Web service debugging, and cross-language debugging. One of the debugger’s most useful new features is the ability

Community

Truncate tables using PL/SQL

By Kevin Shidler – This tip truncates data from tables using PL/SQL for Oracle8i. It first disables all foreign key constraints that would cause the “ORA-02266: unique/primary keys in table referenced by enabled foreign keys” error, truncates the tables, and then re-enables all the foreign keys.