What are the advantages and disadvantages, compared to the
standard SQL and SQL*plus ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / shaik
Hi,
1.sql is structured quiery language 1.sql plus is an
interfacing tool or medium through
sql statements will be passed to the oracle server.
2.Sql keywords cannot be abbreviated 2.sql plus cannot be
abbreviated.
thanks
Shaik
Is This Answer Correct ? | 5 Yes | 7 No |
what are rollup and cube in t-sql? : Transact sql
When can we use the where clause and the having clause?
Are sql views compiled?
Explain what is a column in a table?
what does myisamchk do? : Sql dba
Why self join is used in sql?
What is character functions?
Is sql a scripting language?
Which tcp/ip port does sql server run on? How can it be changed? : Sql dba
Why are indexes and views important to an organization?
How many types of cursors supported in pl/sql?
When is the update_statistics command used?