|
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 are the various enhancements to the straight relational data model by PostgreSQL?
Added on Fri, Jan 8, 2010
There are various enhancements provided to the straight relational data model by postgre SQl they are support for arrays which includes multiple values, inheritance, functions and extensibility. Jargon differs because of its object oriented nature... Read More
Explain about functions in PostgreSQL?
Added on Fri, Jan 8, 2010
Functions are important because they help the code to be executed on the server. Some of the languages which can program functions for efficient use are PL/pgSQL which is the native language of PostgreSQL. Scripting languages are supported by... Read More
Explain about pgadmin?
Added on Fri, Jan 8, 2010
Pgadmin forms a graphical front end administration tool. This feature is available under free software released under Artistic License. Pgadmin iii is the new database administration tool released under artistic license. Read More
State some of the advanced features of PostgreSQL?
Added on Fri, Jan 8, 2010
These are the following features which are present in PostgreSQL they are 1) Object relational database 2) Extensibility and support for SQL 3) Database validation and flexible API 4) Procedural languages and MVCC 5) Client server and WAL. Read More
Explain about Multi version concurrency control?
Added on Fri, Jan 8, 2010
Multi version concurrency control or MVCC is used to avoid unnecessary locking of the database. This removes the time lag for the user to log into his database. This feature or time lag occurs when some one else is on the content. All the... Read More
What are the languages which PostgreSQL supports?
Added on Fri, Jan 8, 2010
Some of the languages which PostgreSQL supports are as follows: - It supports a language of its own known as PL/pgSQL and it supports internal procedural languages. Pl/pgSQL can be compared to oracle, PL/SQL, etc. Languages such as Perl, Python, TCL... Read More
Explain about the command enable debug?
Added on Fri, Jan 8, 2010
This command is used for enabling compilation of all libraries and applications. This process generally slows down the system and it also increases the binary file size. Debugging symbols are present which can assist developers in noticing bugs and... Read More
Explain about indices of PostgreSQL?
Added on Fri, Jan 8, 2010
There are built in functions such as B-tree, hash table, and GIST indices can be used or users can define their own indices. PostgreSQL can scan the index backwards. Expression index could be created with the result of an expression. Partial index... Read More
What are the different data types supported by PostgreSQL?
Added on Fri, Jan 8, 2010
There are different data types which are supported they are: - 1) Arbitrary precision numeric?s 2) Geometric primitives 3) Arrays 4) XML etc Users can create their own indexes and make them indexed. Read More
Explain about database administration tools?
Added on Fri, Jan 8, 2010
There are various data administration tools they are 1) Psql 2) Pgadmin 3) Phppgadmin Most of these tools are front end administration tools and web based interfaces. Out of these phppgadmin is the most popular one. Read More
How do you create a data base with postgreSQL?
Added on Fri, Jan 8, 2010
Creating a database is the primary step in creating a database. A command $createdb newdatabasedb CREATE DATABASE This creates a new database and a message displays CREATE DATABASE which indicates that the creation of the database was successful... Read More
Explain about tokens?
Added on Fri, Jan 8, 2010
Tokens are also known to contain several special character symbols. It can be considered as keyword, constant, identifier and quoted identifier. Keywords include pre defined SQL meanings and SQL commands. Variable names such as tables, columns, etc... Read More
Explain about string constants
Added on Fri, Jan 8, 2010
String constant contains a sequence of characters bound by single quotes. This feature is used during insertion of a character or passing character to database objects. PostgreSQL allows the usage of single quotes but embedded by a C style backslash.... Read More
Explain what is PostgreSQL?
Added on Fri, Jan 8, 2010
This is regarded as one of the most successful open source database in the world. This is also used to create advanced applications. This relies on Object relational database management system. Familiarity with UNIX and Linux can be an added... Read More
Explain about Write Ahead logging?
Added on Fri, Jan 8, 2010
This feature increases the reliability of the database by logging changes before any changes or updations to the data base. This provides log of database incase of a database crash. This helps to start the work from the point it was discontinued. Read More
Explain about Triggers
Added on Fri, Jan 8, 2010
By SQL query you can trigger an event. Triggers can be activated with the help of INSERT and UPDATE queries. These can be attached to tables. Triggers more than one can be triggered alphabetically. These triggers have the capability to invoke... Read More
Explain about concurreny with the help of MVCC?
Added on Fri, Jan 8, 2010
Multi version concurrency control is used to manage concurrency. This feature is very useful because changes made in the database will not be visible to other users until the transaction is completed. This removes the need for read locks. ACID... Read More
How do you change column names in SQL Server ?
Added on Fri, Jan 8, 2010
Using Query Analyzer you can see the structure of the table by following command. Use NorthWindGosp_columns [Categories]GoIn order to change the name of any column use the following commandsp_rename 'TableName.ColumnName', '... Read More
|