Sql Stored Procedure Quotes

We've searched our database for all the quotes and captions related to Sql Stored Procedure. Here they are! All 2 of them:

Stored procedures can offer huge performance advantages for huge architectural costs. You may avoid streaming thousands of rows to a client application, but you have also bound your application code to this database. The decision to use stored procedures should not be arrived at lightly.
Eric Redmond (Seven Databases in Seven Weeks: A Guide to Modern Databases and the NoSQL Movement)
The way xp_ cmdshell works is very simple: It takes a single string argument and then executes that as a command-line call. For example, the call would perform a directory listing of the server’s C drive. Again, at this point the damage is limited only by the attacker’s imagination, and exploiting this through SQL injection is absolutely trivial: If you’re running SQL Server, we strongly recommend disabling or removing the xp_cmdshell stored procedure. You can disable it through use of the sp_configure stored procedure, like so:
Bryan Sullivan (Web Application Security, A Beginner's Guide)