|
What is 1000Projects
'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc
how it works?
Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!
Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!
Category Articles
What is the difference between "IS" and "AS" while creating procedure. Ex:- create procedure IS or AS
Added on Wed, Jan 13, 2010
Both are equivalent .. Just replacement of DECLARE keyword in declarative section. Read More
What is stored procedure?
Added on Wed, Jan 13, 2010
A stored procedure is a group of SQL statements that form a logical unit and perform a particular task. Stored procedures are used to encapsulate a set of operations or queries to execute on a database server. For example, operations on an employee... Read More
What is the difference between stored procedures and stored functions in ORACLE
Added on Wed, Jan 13, 2010
Both(functions and Procedures) are the Oracle Objects that work explicitly towards database objects like Tables,Views. The diff. b/t Stored Procedures and Functions 1) The procedures doesn't return values. whereas the function returns... Read More
What are external procedures ? Why and when they are used?
Added on Wed, Jan 13, 2010
External procedures are Extended stored procedures only. They let you create your own external routines in a programming language such as C. Extended stored procedures are DLLs that an instance of Microsoft SQL Server can dynamically load and run... Read More
What are the uses of stored procedure?
Added on Wed, Jan 13, 2010
Stored procedures are often used for data validation and as access control mechanism. Logic applied in applications can be centralized and stored in applications. Complex procedures and functionalities which require huge amount of data processing and... Read More
What is the difference between a user defined function and a Stored procedure?
Added on Wed, Jan 13, 2010
A user defined function and stored procedures are almost similar but there exists a difference between their implementation procedures in the code. Stored procedure needs to be invoked whereas a UDF can be used like any other statement. Read More
Explain about the implementation of stored procedures?
Added on Wed, Jan 13, 2010
Implementation of stored procedure varies for different databases and vendors. Stored procedures are very flexible and they can be implemented in variety of languages. Stored procedures written in non SQL languages may have a very little... Read More
Does storing of data in stored procedures increase the access time? Explain?
Added on Wed, Jan 13, 2010
Data stored in stored procedures can be retrieved much faster than the data stored in SQL database. Data can be precompiled and stored in Stored procedures. This reduces the time gap between query and compiling as the data has been precompiled and... Read More
Explain about the difficulties faced by the database developer in implementing pre compiled statements?
Added on Wed, Jan 13, 2010
There are many difficulties for implementing pre compiled statements because it should have all the arguments provided to it during compile time. It also depends upon the database and configuration. Performance also varies and it largely depends... Read More
Explain about the implementation of business logic in Stored procedures?
Added on Wed, Jan 13, 2010
Stored procedures implement business logic into the database. It is embedded as API and this reduces the implementation of Logic code again explicitly. Implementation of business logic internally reduces the chances of data becoming corrupt. Read More
Explain about recursive stored procedures?
Added on Wed, Jan 13, 2010
Recursive stored procedures are used for performing repetitive tasks. Recursive feature is disabled by default but can be activated by using the following command on the server max_sp_recursion_depth, also don?t forget to rename the system variable... Read More
Explain the benefits of running stored procedure on a database engine?
Added on Wed, Jan 13, 2010
Stored procedures can run directly run on a data base engine. In industries where automation is the key a stored procedure can run entirely on the data base provided to it and this runs on a specialized data base server. Network communication can... Read More
What is cursors
Added on Wed, Jan 13, 2010
Cursors are supported by procedures, functions and triggers. Syntax of the cursors is embedded in SQL. Cursor should be declared before declaring handles. Before declaring cursors it is imperative to declare variables and conditions. Read More
How can we call stored procedures inside store procedures?
Added on Wed, Jan 13, 2010
Alter procedure CallAnotherProcedure as exec sp_helptext CallAnotherProcedure Read More
what is the Difference between View and Stored Procedure
Added on Wed, Jan 13, 2010
What is the difference between View and Stored Procedure? Can views accept input parameters as stored procedure? If yes,how could I do that? I am new to database and working on MS SQL,if someone could suggest me good reference websites then that... Read More
State the different extensions for stored procedures?
Added on Wed, Jan 13, 2010
Most of the database systems have proprietary and vendor based extensions. Microsoft allows procedures to be written using Transact-SQL. Oracle calls its extension as PL/SQL. DB2 has its extension as PL/SQL. PL/pgSQL is the extension used by... Read More
State about the security aspects of stored procedures?
Added on Wed, Jan 13, 2010
Stored procedures should be written very carefully because they store complex and logical data. Security permissions should be very finely applied and this is possible by carefully written code. Permissions for client data should be set in such a... Read More
Explain about the process which takes place to execute a Stored routine
Added on Wed, Jan 13, 2010
CREATE PROCEDURE and CREATE FUNCTION statement are used to create stored routine. It can act as a function or a procedure. A procedure can be called by using a call statement and pass output with the help of output variables. It can call other Stored... Read More
Explain about the RETURN statement
Added on Wed, Jan 13, 2010
A RETURN statement is used to terminate the execution of a stored function. This inturn returns a value of expr to the function caller. In a stored function there should be at least a single return statement. If there exists multiple functions it can... Read More
|