microsoft sql server database administration tutorial

Oracle Database Administration for Microsoft SQL Server DBAs part 2 pptx

Oracle Database Administration for Microsoft SQL Server DBAs part 2 pptx

... Definitions and Setup 73 Servers, Databases, Instances, and Schemas 74 SQL Server Setup Versus Oracle Setup 77 Creating Databases 79 Using the DBCA 79 Duplicating Databases with Templates ... Storage Management 107 Database Configuration 108 Oracle Scheduler 109 Statistics and Resource Management 109 vi Oracle Database Administration for Microsoft SQL Server DBAs Trang 2Security ... 169 7 Database Maintenance 171 Maintenance Tasks 172 Consistency Checks 173 Health Checks 174 Contents vii Trang 3viii Oracle Database Administration for Microsoft SQL Server DBAsUpdate

Ngày tải lên: 04/07/2014, 05:20

10 374 0
Oracle Database Administration for Microsoft SQL Server DBAs part 9 pdf

Oracle Database Administration for Microsoft SQL Server DBAs part 9 pdf

... to SQL Server’s mdf files, and the redo logs could be considered similar to the ldf files Also, if the database is not running, these files can be copied for a cold backup, similar to SQL Server ... taking a database offline or if the instance service has been stopped to take a copy of the mdf file and ldf files SQL Server databases typically have one mdf file and one ldf file per database ... removed Upgrading the Database As part of the installation, if an Oracle database already exists on the server, there will be an option to upgrade the database The Oracle Database Upgrade Assistant

Ngày tải lên: 04/07/2014, 05:20

10 352 0
Oracle Database Administration for Microsoft SQL Server DBAs part 10 docx

Oracle Database Administration for Microsoft SQL Server DBAs part 10 docx

... each database 74 Oracle Database Administration for Microsoft SQL Server DBAs Trang 4server, unlike with SQL Server, which has different layers of system objectsat the server level and the database ... server 76 Oracle Database Administration for Microsoft SQL Server DBAs Database Name Definitions The following are used to identify Oracle databases: ■ SID System identifier—database or instance ... The system databases are also created, with some of the defaults being set up in the model database for other databases SQL Server databases can be a different collation and a Name SQL Server Oracle

Ngày tải lên: 04/07/2014, 05:20

10 347 0
Oracle Database Administration for Microsoft SQL Server DBAs part 11 pot

Oracle Database Administration for Microsoft SQL Server DBAs part 11 pot

... views sqlplus> %ORACLE_HOME%\rdbms\admin\catalog.sql sqlplus> %ORACLE_HOME%\rdbms\admin\catproc.sql sqlplus> %ORACLE_HOME%\sqlplus\admin\pupbld.sql ## Create server parameter file sqlplus> ... model database However, only one database is created for an Oracle server; there is no need for templates to be used over and over again to create the databases, as the model database is used in SQL ... for the character set of the database For SQL Server, collations are available at the server level and can be configured down to the column level of a table The SQL Server collations are not only

Ngày tải lên: 04/07/2014, 05:20

10 411 0
Oracle Database Administration for Microsoft SQL Server DBAs part 12 docx

Oracle Database Administration for Microsoft SQL Server DBAs part 12 docx

... be needed for SQL Server database owners compared to Oracle schema owners Database Owners In SQL Server, if you are the database owner, you have permissions to everything in the database, but ... log into the database via sqlplus and shutdown database and startup in restrict mode SQL>shutdown immediate; SQL>startup restrict SQL> alter system set aq_tm_processes=0; SQL> alter ... permissions to create the different objects in the database As we discussed, a database in SQL Server is similar to the schema in Oracle, so the SQL Server database owner is similar to the Oracle schema

Ngày tải lên: 04/07/2014, 05:20

10 461 0
Oracle Database Administration for Microsoft SQL Server DBAs part 13 pot

Oracle Database Administration for Microsoft SQL Server DBAs part 13 pot

... Tools for Typical Database Tasks Table 5-1 shows the main tools in SQL Server and Oracle for performing some common DBA tasks 104 Oracle Database Administration for Microsoft SQL Server DBAs Get ... overview of objects and database activity SQL Server Management Studio Oracle Enterprise Manager Run queries SQL Server Management Studio, Query Analyzer SQL Developer, SQL*Plus, SQL Worksheet Trace ... replay of the database activity to test a patch rollout, upgrade, or new deployment of configurations 106 Oracle Database Administration for Microsoft SQL Server DBAs Trang 6In SQL Server, after

Ngày tải lên: 04/07/2014, 05:20

10 404 0
Oracle Database Administration for Microsoft SQL Server DBAs part 15 pps

Oracle Database Administration for Microsoft SQL Server DBAs part 15 pps

... restoring Oracle databases should look familiar to SQL Server DBAs Let’s start with the SQL Server command to back up a database: backup database customer_db to disk ='E:\mssql\bkups\customer_db_02022010.bak' ... Backup, Restore, and Recovery 129 Trang 9Here is the SQL Server command to restore a database:restore database customer_db from disk ='E:\mssql\bkups\customer_db_02022010.bak' The Oracle RMAN ... for Oracle databases A database alias can be set up in the tnsnames.ora file DB_ALIAS = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = oraserver1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED)

Ngày tải lên: 04/07/2014, 05:20

10 391 0
Oracle Database Administration for Microsoft SQL Server DBAs part 16 potx

Oracle Database Administration for Microsoft SQL Server DBAs part 16 potx

... 5In SQL Server, the system databases, as well as master, msdb, and model, need to be backed up Similarly, in Oracle, the control files, system datafiles, and parameter files for the Oracle database ... with differential Backup incremental level 1 cumulative database; Backup incremental level 1 database; TABLE 6-1. Backup Options in SQL Server and Oracle Trang 6include the control files to make ... catalog rman/rmanpswd connected to recovery catalog database RMAN> create catalog recovery catalog created RMAN> register database; database registered in recovery catalog starting full

Ngày tải lên: 04/07/2014, 05:20

10 334 0
Oracle Database Administration for Microsoft SQL Server DBAs part 17 docx

Oracle Database Administration for Microsoft SQL Server DBAs part 17 docx

... Oracle RMAN recover database command can bring the database to a point in time, to a change number, or to a specific archive log. 144 Oracle Database Administration for Microsoft SQL Server DBAs How ... target database to PROD02 from active database spfile PARAMETER_VALUE_CONVERT '/u01/oracle/oradata/PROD01/','+DG_DATA01' 150 Oracle Database Administration for Microsoft SQL Server ... (Seg) : 0 Total Pages Empty : 531 Total Pages Marked Corrupt : 0 146 Oracle Database Administration for Microsoft SQL Server DBAs Total Pages Influx : 0 Total Pages Encrypted : 0 Highest block

Ngày tải lên: 04/07/2014, 05:20

10 368 0
Oracle Database Administration for Microsoft SQL Server DBAs part 18 pps

Oracle Database Administration for Microsoft SQL Server DBAs part 18 pps

... against one of the database servers or multiple databases (from the RMAN catalog) Purging Obsolete Files Keeping the catalog a manageable size is part of backup maintenance In SQL Server, you can ... multiple databases, so a report can be run for all of the databases in the catalog The data dictionary view v$backup_set has the same details, but it is valid for only the database server, not ... Backing Up and Restoring Objects With SQL Server, it is typical to restore a database to get a copy of just the objects that are needed With Oracle, restoring the database is normally to restore the

Ngày tải lên: 04/07/2014, 05:20

10 355 0
Oracle Database Administration for Microsoft SQL Server DBAs part 20 potx

Oracle Database Administration for Microsoft SQL Server DBAs part 20 potx

... the database objects and data is used by the database servers to figure out indexes and execution plans for queries In both SQL Server and Oracle, statistics are updated by default In SQL Server, ... must for SQL Server 2000 might still need to be run in SQL Server 2008, but not as frequently because it’s not as crucial Oracle versions make a difference as well, especially if your database ... problems about to happen Maintenance Tasks As a SQL Server DBA, you’ve planned database monitoring and set up maintenance jobs With various versions of SQL Server, some tasks may be more important than

Ngày tải lên: 04/07/2014, 05:20

10 387 0
Oracle Database Administration for Microsoft SQL Server DBAs part 21 ppt

Oracle Database Administration for Microsoft SQL Server DBAs part 21 ppt

... tablespace sqlplus> alter table emp_info move; can specify a tablespace to move to another tablespace or keep it in the same one 186 Oracle Database Administration for Microsoft SQL Server ... object Sqlplus> select 'alter '|| object_type|| ' ' || owner || '.' || object_name || ' compile;' from dba_objects where status='INVALID'; 188 Oracle Database Administration for Microsoft SQL Server ... qualify the table 190 Oracle Database Administration for Microsoft SQL Server DBAs Trang 10As you’ve seen so far, object maintenance in Oracle has several pieces.After database changes are rolled

Ngày tải lên: 04/07/2014, 05:20

10 361 0
Oracle Database Administration for Microsoft SQL Server DBAs part 22 doc

Oracle Database Administration for Microsoft SQL Server DBAs part 22 doc

... Trang 1SQL Server OracleSQL Server Agent Job slave processes (parameter MAX_ JOB_SLAVE_PROCESSES) History and logs History and logs in dba_scheduler_* views Jobs inside and outside the database ... inside and outside the database Used for maintenance tasks Used for maintenance tasks Manage in SQL Server Management Studio Manage in OEM or with DBMS_ SCHEDULER Permissions: SQLAgentUserRolein ... DBMS_AUTO_TASK_ADMIN.sqlplus> exec dbms_auto_task_admin.disable(client_name=>'sql tuning advisor',operation=> NULL,window_name=>NULL); PL/SQL procedure successfully completed. sqlplus>

Ngày tải lên: 04/07/2014, 05:20

10 256 0
Oracle Database Administration for Microsoft SQL Server DBAs part 24 docx

Oracle Database Administration for Microsoft SQL Server DBAs part 24 docx

... to re-create it SQLPLUS> alter index idx_prod_date invisible; Index altered. SQLPLUS> select index_name, visibility from dba_indexes where index_name='IDX_PROD_DATE'; - SQLPLUS> alter ... and 8-3 summarize the lock types available in SQL Server and Oracle Reads through regular SELECT statements are least likely to interfere with other SQL statements INSERT, UPDATE, and DELETE statements ... the information in the view, but there might be a need for an index for selecting from the view SQL Server has indexed views—you create a view, and then create an index on the view Oracle has materialized

Ngày tải lên: 04/07/2014, 05:20

10 370 0
Tài liệu To create a Microsoft SQL Server database for OPN Systemô XT Server pptx

Tài liệu To create a Microsoft SQL Server database for OPN Systemô XT Server pptx

... a Microsoft SQL Server database for the OPN System™ XT Server? 3 Step 3: Run the opn_mssql .sql on Microsoft SQL Server 1. Start Aqua Data Studio, and connect to the Microsoft SQL ... to create a Microsoft SQL Server database for OPN System™ XT Server? Introduction The OPN System supports McKoi, Microsoft SQL Server, MySQL and Oracle databases. You select the database during ... file Microsoft SQL Server opn_mssql .sql My SQL opn_mysql .sql Oracle opn_oracle .sql How to create a Microsoft SQL Server database for the OPN System™ XT Server? 4 The Query...

Ngày tải lên: 20/12/2013, 23:15

10 580 0
Microsoft SQL Server 2008 Administration with Windows PowerShell docx

Microsoft SQL Server 2008 Administration with Windows PowerShell docx

... 401 SQL Server Performance Data Collection 401 SQL Server Host Performance Data Collection 408 Summary 417 Chapter 18: Monitoring SQL Server 419 Pinging SQL Server Hosts 420 Checking SQL Server related ... 283 Working with SQL Server using SMO 290 Methods and Properties 291 Getting Version Information 291 SQL Server SPID Information 292 SQL Server Server-Related Information 293 SQL Server Database- Related ... 233 Monitoring Databases 235 Monitoring Database Objects 236 Summary 239 Chapter 11: Windows PowerShell in SQL Server 2008 Environment, SQL Server PowerShell Provider 241 sqlps Utility 241 SQLSERVER:...

Ngày tải lên: 05/03/2014, 20:20

580 915 1
Beginning Microsoft SQL Server 2008 Administration pptx

Beginning Microsoft SQL Server 2008 Administration pptx

... of the database application on a single computer. SQL Server 2008 can also coexist with SQL Server 2000 and SQL Server 2005 instances installed on the same server. Depending on the edition of SQL Server 6 www.it-ebooks.info ... to denote that this service is associated with SQL Server 2008, or SQL Server 10.0. MSSQLServerOLAPService (SQL Server Analysis Services) MSSQLServerOLAPService is the service that Analysis Services ... support all of SQL Server 2008’s OLAP needs, as well as the Data Mining engine included with SQL Server 2008. SQLBrowser (SQL Server Browser) The SQLBrowser Service is used by SQL Server for named...

Ngày tải lên: 06/03/2014, 08:21

820 719 1
Professional Microsoft SQL Server 2008 Administration ppt

Professional Microsoft SQL Server 2008 Administration ppt

... Microsoft  SQL Server  2008 Administration Introduction xxix Chapter 1: SQL Server 2008 Architecture 1 Chapter 2: SQL Server 2008 Installation Best Practices 35 Chapter 3: Upgrading SQL Server ... Information Server, and Microsoft SQL Server. Brian, author of Start to Finish Guide to SQL Server Performance Monitoring and contributing author for How to Cheat at Securing SQL Server 2005, ... at SQLServerCentral.com focusing primarily on SQL Server security. He is also a frequent contributor for SQL Server Standard Magazine. Brian is a member of the Professional Association of SQL Server...

Ngày tải lên: 29/03/2014, 20:20

916 1,1K 1
Tài liệu Microsoft SQL Server and Oracle® Database: A Comparative Study on Total Cost of Administration (TCA) docx

Tài liệu Microsoft SQL Server and Oracle® Database: A Comparative Study on Total Cost of Administration (TCA) docx

... production Oracle Database servers. On average organizations had more Microsoft SQL Server production servers than Oracle Database; 107 Microsoft databases verses 87 Oracle databases per organization, ... of the two database platforms. On average there were twice as many users per server for the Oracle Databases as the Microsoft SQL Server databases; 716 average users per Oracle database, verses ... significantly more Microsoft SQL Server databases than Oracle Databases. On average Microsoft DBAs were able to manage 31.2 database systems per DBA, while Oracle DBAs could only manage 9.9 databases...

Ngày tải lên: 19/02/2014, 12:20

11 541 0
MCITP Exam 70-444 Optimizing and Maintaining A Database Administration Solution by Using Microsoft SQL Server 2005 pot

MCITP Exam 70-444 Optimizing and Maintaining A Database Administration Solution by Using Microsoft SQL Server 2005 pot

... SQL Server 2005 and SQL Server 2005 SP1. You can also use SQL Server Profiler to troubleshoot physical server performance. When you have identified the physical resource under pressure, SQL Server ... in either a comma-delimited text file or a SQL Server database file. 2. You administer a SQL Server 2005 server named SQLSRVA. Client applications that connect to SQLSRVA are responding slowly throughout ... allocation: ■ SQL Server: Access Methods: Workfiles Created /Sec ■ SQL Server: Access Methods: Worktables Created /Sec ■ SQL Server: Access Methods: Mixed Page Allocations /Sec ■ SQL Server: General...

Ngày tải lên: 28/03/2014, 19:20

775 3,5K 0

Bạn có muốn tìm thêm với từ khóa:

w