There are a number of things you can add to checklist while setting up DBMS and the checklist will depend on which kind of organisation is it. I am assuming you are a DBA setting up DBMS for software ...
For Indexes you can use :DBA_INDEXESALL_INDEXESUSER_INDEXESFor Constraint you can use :DBA_CONSTRAINTSALL_CONSTRAINTSUSER_CONSTRAINTSFor index upon which table and which column you can query on:DBA_CONS_COLUMNSALL_CONS_COLUMNSUSER_CONS_COLUMNS
A Hash index stores key value pairs based on a pseudo randomizing function called hash functionA B+- Tree is a balanced tree whose leaves contain a sequence of key pointer pairs.- Use a hash index for point queries only. Use a B- Tree if multipoint queries or range queries are used.
No, more then one query can not been run on same tables becasues if osme query fire a delete operation and the other query some how update the same row then it gives some error cause it may be po...
It is the property of the database to utilize the additional resources such as the memory and processors to meet the increased demand. By scaling performance is increased to a greater extend
Scalabilty is a database property by means of which the database utilizes the available additional resources such as the memory and the processors to meet the increasing demand.
There are restrictions on indexed views in SQL server such as the columns are not nullable.
Harsh Gupta
Apr 8th, 2006
Hi1) Sql Server 2000 and Oracle does have added the facility of indexed views. Prior to Sql Server 2000 indexed views were not there.2) Oracle call them as Materialized views and Sql Server 2000 call ...
in the task bar type (after the QMF returns your query results)-EXPORT REPORT TO filename.txt hit enter and the console will display the complete name of the data set to which your results have been e...
Other than those mentioned above the different indexes are1)ClusteredRequires the date to be sortedwe can create 1 clustered2)Non-Clustereddoesnt require the data to be sortedWe can create 249 non-clustered indexes
Types of IndexesThere are different types of indexes that can be created on tables in a database, all of which serve the same goal?to improve database performance by expediting data retrieval. Indexes...
There are a set of rules known as Codd's rules. In all there are 13 rules. 12 were defined by Codd & the 0th rule is interpreted by Subject experts. Altough there is no Database which is fully compliant with the Codd's rules and hence we do not have a perfect / accurate RDBMS as of now.
component based Arc:The database building structure depends upon to the component such as Kernel level.Advantage:The accessing speed will be more than other component.
SQL (Transact-SQL) is a set of programming extensions from Sybase and Microsoft that add several features to the Structured Query Language (SQL) including transaction control, exception and error hand...
Logical memory is based on schema design. but virtual memory is based on data access that means we want a data from hard disk(physical memory ) to main memory.
Latches are the seriliazation mechanisms to protect shared data structures in System Global Area. Example Latches protect the list of users presently accessing the database and protect the data struct...
Ans