InterviewSolution
Saved Bookmarks
| 1. |
What Are The Three Build Options Available When Building A Table From A Record? |
|
Answer» BUILD SCRIPT FILE: which generates a sql script that can be run against the desired database to build the table. EXECUTE SQL: which builds the table in the database. Execute and build script: which both build the table and generates a sql script. Build script file: which generates a sql script that can be run against the desired database to build the table. Execute SQL: which builds the table in the database. Execute and build script: which both build the table and generates a sql script. |
|