What are the advantages and disadvantages, compared to the
standard SQL and SQL*plus ?
Answer Posted / chandrika
•Applications that involve extensive business logic and
processing could place an excessive load on the server if
the logic was implemented entirely in stored procedures.
Examples of this type of processing include data transfers,
data traversals, data transformations and intensive
computational operations. You should move this type of
processing to business process or data access logic
components, which are a more scalable resource than your
database server.
•Do not put all of your business logic into stored
procedures. Maintenance and the agility of your application
becomes an issue when you must modify business logic in T-
SQL. For example, ISV applications that support multiple
RDBMS should not need to maintain separate stored
procedures for each system.
•Writing and maintaining stored procedures is most often a
specialized skill set that not all developers possess. This
situation may introduce bottlenecks in the project
development schedule.
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is a data definition language?
How can a function retun more than one value in oracle with proper example?
what is 'mysqld'? : Sql dba
What is difference between pls_integer and integer?
Why functions are used in sql?
Does access use sql?
What is trigger in sql? Explain
What is left inner join in sql?
What are the most important ddl statements in sql?
What is the difference between a procedure and a function?
How do sql triggers work?
when is the use of update_statistics command? : Sql dba
What is sql procedures and functions?
discuss about myisam key cache. : Sql dba
How to select random rows from a table?