1/113
Looks like no tags are added yet.
SQL Server instances Databases
Schemas Database
What are the entities in involved SQL Server architecture
Databases
A container of objects such as tables, views, stored procedures, and so on.
Each instance of SQL Server can contain multiple databases.
MySQL Server Edition
Enterprise Edition -Standard Edition
Workgroup Edition -Web Edition
Compact Edition
Express Edition
Enterprise Edition
High end edition with the advanced performance and availability features required to support thousands of connections and databases measured by terabytes.
This edition includes all the right features, including Integration Services, Analysis Services, Web Services, database mirroring, and failover clustering.
Standard Edition
Perfectly suited for medium-size businesses that need all the primary features and can live without the very high-end high availability features of Enterprise Edition
This edition includes all the right features, including Integration Services, Analysis Services, Web Services, database mirroring, and failover clustering.
SQL Server Management Studio
1.Solution Explorer
2.Properties Window
3.Object Explorer
4.Query Editor (T-SQL)
Naive or parametric end users
make up a sizable portion of dbase end users. Their main job function revolves around constantly querying and updating the dbase.
Example: Bank tellers, reservation clerks for airlines, hotels.
RDBMS
A collection of interrelated information that is organized into tables.
We store data in each table by rows, and the data is arranged into columns.
We store tables in database schemas.
Schema is a logical container for the database objects that the user creates
In relational databases, we can grant permissions to other users so that they can access our tables or the other users can grant us permission to access their tables.
Attribute
Refers to the characteristic or basic fact or field of an Entity or Relationship
For example a Student entity could have the following attributes: ID Number, Last Name, First Name, Address, Birth Date, etc.