CORSO DI SQL SERVER 7 Amministrazione

Dimensione: px
Iniziare la visualizzazioe della pagina:

Download "CORSO DI SQL SERVER 7 Amministrazione"

Transcript

1 CORSO DI SQL SERVER 7 Amministrazione Ing. Andrea Bulgarelli

2 INDICE L AMMINISTRAZIONE DI SQL SERVER...3 AVVIARE E FERMARE I SERVIZI DI SQL SERVER...3 LA GESTIONE DEI SERVER...4 Registrare ed eliminare un server o un gruppo...4 Altre azioni possibili con i server e i gruppi...5 Starting, Pausing, and Stopping SQL Server...5 Le proprietà del server...6 LA STRUTTURA DI SQL SERVER...7 INTERFACCE CLIENT...7 OLE DB...7 ODBC...7 Application...7 Driver...7 Data source...7 RDO...7 ADO...7 DB-Library...7 LA STRUTTURA DI COMUNICAZIONE...8 Net-Library e le utility correlate...8 ODS (Open Data Services)...9 LOGIN, USER, ROLE E GROUP...11 Creazione di un login...11 Comprendere i ruoli...11 Aggiungere uno user Server role, database role, login e user...13 PROCEDURE DI AMMINISTRAZIONE PRINCIPALI...14 AUTOMATING ADMINISTRATIVE TASKS...14 What is Automated Administration?...14 What are the Components of Automatic Administration?...14 SQLSERVERAGENT...15 Defining Jobs...15 DATABASE MAINTENANCE PLAN WIZARD...16 Update Data Optimization Information...17 Database Integrity Check...18 Specify the Database Backup Plan...18 Specify Backup Disk Directory...19 Maintenance History... 20

3 L AMMINISTRAZIONE DI SQL SERVER Microsoft SQL Server administration applications, and the accompanying services, are designed to assist the system administrator with all administrative tasks related to maintaining and monitoring server performance and activities. Molte delle attività che saranno qui descritte possono essere svolte mediante l Enterprise Manager (EM) di SQL Server. SQL Server Enterprise Manager is a graphical tool that allows for easy, enterprise-wide configuration and management of Microsoft SQL Server and SQL Server objects. SQL Server Enterprise Manager provides: A scheduling engine. Administrator alert capability. Drag-and-drop control operations across multiple servers. A built-in replication management interface. You can also use SQL Server Enterprise Manager to: Manage logins, permissions, and users. Create scripts. Manage devices and databases. Back up databases and transaction logs. Manage tables, views, stored procedures, triggers, indexes, rules, defaults, and user-defined data types. Avviare e fermare i servizi di SQL Server SQL Server può essere avviato automaticamente ogni volta che viene avviato Windows. Sotto Windows 9x è possibile avviare e fermare i servizi con il Server Service Manager, mentre sotto Windows NT è anche possibile gestire l avvio di SQL Server direttamente dal Pannello di Controllo/Services. In entrambi i modo è possibile effettuare l avvio automatico (alla partenza del Sistema Operativo) o quello manuale. I servizi principali sono i seguenti: MSSQLServer: il motore principale di SQL Server SQLServerAgent: il servizio per la gestione automatica di SQL Server. MSDTC: per il coordinamento delle transazioni distribuite You can pause SQL Server before stopping the server. Pausing SQL Server prevents new users from logging in and gives you time to send a message to current users asking them to complete their work and log out before you stop the server. If you stop SQL Server without pausing it, all server processes are terminated immediately. Stopping SQL Server prevents new connections and disconnects current users.

4 La gestione dei server Registrare ed eliminare un server o un gruppo Prima di poter utilizzare e amministrare un server locale o remoto SQL Server è necessario registrarlo. Per registrare un server utilizzando EM (Enterprise Manager) è necessario per prima cosa scegliere il gruppo al quale assegnare il server, e se non è presente, è necessario crearlo premendo il tasto destro del mouse in EM su SQL Server Group. Allo stesso modo si procede per registrare il server, e viene avviato un Wizard che chiede nell ordine: 1. il nome del server 2. l autentication mode 3. il gruppo al quale assegnare il server Figura 1: Wizard per la registrazione del server In modo analogo è possibile procedere per eliminare un server o un gruppo. Nella figura seguente è possibile vedere come con il tasto destro del mouse sia possibile effettuare tutte le azioni sui server e sui gruppi:

5 Figura 2: azioni che è possibile svolgere sui server registrati Altre azioni possibili con i server e i gruppi Tra le azioni possibili, quelle più importanti sono: eliminare il server connettere e disconnettere il server fermare (stop), mettere in pausa (pause) e riavviare il server (start). When you pause Microsoft SQL Server, users who are connected to the server can finish tasks, but new connections are not allowed. For example, you can pause SQL Server for a few minutes and send a shutdown message to connected users before shutting it down. You can also resume a SQL Server service. Starting, Pausing, and Stopping SQL Server Before you log in to Microsoft SQL Server, you need to know how to start, pause, and stop SQL Server. After you are logged in, you can perform various tasks such as administering the server or querying a database. Because SQL Server is integrated with the Microsoft Windows NT Service Control Manager, it can be started and stopped as a Windows NT service (MSSQLServer), either locally or remotely.

6 SQL Server can be started automatically as a service each time Windows NT starts. This option can be specified during installation by using SQL Server Setup, and after installation by using SQL Server Enterprise Manager or the Services application in Control Panel. You can log off from the Windows NT network without shutting down SQL Server. When you start SQL Server, you are starting the SQL Server service (MSSQLServer); SQL Server Agent runs as a service named SQLServerAgent. If the MSSQLServer and SQLServerAgent services are not configured to start automatically, you must start them manually. After you start the MSSQLServer service, users can establish new connections to the server. After you start the SQLServerAgent service, you can use SQL Server s scheduling features. You can pause SQL Server before stopping the server. Pausing SQL Server prevents new users from logging in and gives you time to send a message to current users asking them to complete their work and log out before you stop the server. If you stop SQL Server without pausing it, all server processes are terminated immediately. Stopping SQL Server prevents new connections and disconnects current users. Le proprietà del server Selezionando dal menu di Figura 2 la voce Properties è possibile modificare le impostazioni del server (che quindi, come detto in precedenza, può essere amministrato in remoto mediante EM).

7 LA STRUTTURA DI SQL SERVER Interfacce client OLE DB OLE DB is an API that allows COM applications to consume data from OLE DB data sources. OLE DB data sources include data stored in many different formats, not just SQL databases. An application uses an OLE DB provider to access an OLE DB data source. An OLE DB provider is a COM component that accepts calls to the OLE DB API and does whatever is necessary to process that request against the data source. Microsoft SQL Server version 7.0 introduces a native Microsoft OLE DB Provider for SQL Server that can be used by OLE DB applications to access the data in SQL Server. ODBC ODBC è un API per l accesso ai db che rappresenta uno standard industriale. E una delle interfacce più utilizzate per l accesso ai db ed è anche riconosciuta come standard. SQL Server dispone di una interfaccia ODBC nativa. ODBC architecture has four components that perform the following functions. Component Function Application Calls ODBC functions to communicate with an ODBC data source, submits SQL statements, and processes result sets. Driver Manager Manages communication between an application and all ODBC drivers used by the application. Driver Processes all ODBC function calls from the application, connects to a data source, passes SQL statements from the application to the data source, and returns results to the application. If necessary, the driver translates ODBC SQL from the application to native SQL used by the data source. Data source Contains all information a driver needs to access a specificinstanceofdatainadbms. RDO Remote Data Object. Interfaccia ad oggetti strettamente legata ad ODBC in quanto rende facilmente accessibili le funzionalità di ODBC. ADO ActiveX Data Object. Interfaccia ad oggetti a più alto livello basata su OLE DB DB-Library API specifica di SQL Server che mette a disposizione delle applicazioni tutte le macro e le funzioni necessarie per stabilire connessioni, formattare query, inviarle al server e restituire i risultati. E l interfaccia originaria di SQL Server.

8 La struttura di comunicazione Net-Library e le utility correlate Affinche due SQL Server (oppure un client e un SQL Server) siano in grado di comunicare tra loro è necessario che sia sul client che sul server siano installate le Net-Libraries 1. Esistono Net- Libraries per diversi protocolli, tra cui il TCP/IP, inoltre alcune Net-Libraries come le Named Pipe o Multiprotocol supportano diversi protocolli. Solitamente le Net-Liraries sono installate durante il setup di SQL Server, e possono essere gestite mediante le seguenti utility: SQL Server Network Utility: This application allows you to activate, deactivate, and reconfigure server Net-Libraries to listen for clients on their corresponding network protocols. Se si utilizza Windows 9x, è necessario limitarsi al TCP/IP o Multiprotocol. SQL Server Client Network Utility: questa applicazione consente di effettuare una nuova configurazione per connettersi con uno specifico server oppure modificare la Net-Libraries di default E ovvio che l utilizzo di un particolare protocollo di comunicazione per SQL Server è possibile solamente se questo è installato sotto Windows. Grazie a queste librerie è ora possibile la comunicazioni tra client e server. Microsoft SQL Server supports several methods of communicating between client applications and the server. When the application is on the same computer as SQL Server, Windows Interprocess Communication (IPC) components, such as local named pipes or shared memory, are used. When the application is on a separate client, a network IPC is used to communicate with SQL Server. Un IPC ha due componenti: Una API Un protocollo 1 A library of functions for managing network connections and routing. Each Net-Library allows SQL Server to use a particular network protocol. Le Net-Library sono le interface di rete di SQL Server

9 Figura 3: comunicazione in rete tra un client e un server In Figura 3 è riportato lo schema di comunicazione tra un client ed n server SQL. Il caso più tipico è quello di una applicazione che utilizza OLE DB (magari mediante interfaccia ADO). L OLE DB Application utilizza OLE DB Provider per SQL Server, il quale a sua volta per accedere all SQL Server in rete utilizza le Net-Library opportune. La comunicazione viene poi stabilita utilizzando l opportuno protocollo di rete e le Net-Library del server, fino ad arrivare all SQL Server. Durante le procedure di testing interne a Microsoft la Net-Library TCP/IP Socket è risultata essere la soluzione di rete più veloce. Il numero di porta predefinito per questo protocollo è il If SQL Server is running on a Microsoft Windows NT computer, the Named Pipes Net-Library is used for local communications. For local connections with no network card, Windows NT uses the file subsystem to implement a named pipe connection. Inoltre, per la comunicazione di rete, le Named Pipes ricorrono a meccanismo di IPC indipendenti dal protocollo, per cui è possible utilizzare un qualsiasi protocollo sottostante. Tuttavia, dal punto di vista delle prestazioni non risulta essere la migliore scelta, pertanto è consigliabile utilizzare TCP/IP, anche se non bisogna rimuovere Named Pipes perché viene utilizzata per le comunicazioni locali. ODS (Open Data Services) Si tratta di un interfaccia tra la Net-Library del server e il server stesso. Il suo scopo principale è quello di gestire la rete: Resta in attesa di nuove connessioni Annulla le connessioni non riuscite Accetta l annullamento dei comandi Coordina i servizi di threading di SQL Server

10 Restituisce al client i risultati e i messaggi Open Data Services functions as an interface between server Net-Libraries and server-based applications, such as Microsoft SQL Server and extended stored procedure DLLs. The client and server communicate through a proprietary data protocol known as tabular data stream (TDS), with Net-Libraries transporting TDS between the client and server. Open Data Services transforms the TDS protocol into an API, and provides a function library for packaging and unpackaging client requests and server responses through TDS.

11 LOGIN, USER, ROLE E GROUP Logins, users, roles e gruppi sono i concetti fondamentali per la gestione dei meccanismi di sicurezza si SQL Server. Infatti, gli utenti che si vogliono connettere a SQL Server devono possedere un login ID. A questo login ID sono assegnati dei permessi ai vari oggetti del database (table, view, stored procedure, ecc.). Il login può essere lo stesso login utilizzato dagli utenti per accedere ad SQL Server (e questo semplifica la gestione dei login da parte degli amministratori di sistema) oppure è un login specificato direttamente all interno di SQL Server. Creazione di un login Per la creazione di un login premere il tasto destro del mouse sulla cartella Security\Logins e selezionare New Login Impostare il login ID (name), la password, il database al quale deve accedere il login che si sta creando ed eventualmente il linguaggio di default. Può anche essere necessario associare un login ad uno o più server roles. Comprendere i ruoli I meccanismi di sicurezza di SQL Server 7 includono dei ruoli predefiniti con associati diversi tipi di diritti. In tal modo, se dobbiamo registrare degli utenti che svolgono particolari attività, è possibile associarli direttamente a specifici ruoli. I ruoli si suddividono in Server roles e in Database roles. Il primo tipo includono tutte le azioni a livello di server, e quindi esterni ai singoli database. Ogni utente che appartiene ad un server role può aggiungere altri utenti. Fixed server role sysadmin serveradmin setupadmin securityadmin processadmin dbcreator diskadmin Description Performs any activity in SQL Server. Configures server-wide settings. Adds/removes linked servers, and execute some system stored procedures, such as sp_serveroption. Manages server logins. Manages processes running in SQL Server. Creates and alters databases. Manages disk files. The permissions of the sysadmin fixed server role span all of the other fixed server roles. Non è possibile creare nuovi server role. Il secondo tipo di ruoli sono i database role. Questi sono definiti a livello di database e riguardano tutte le attività che uno user può effettuare. In particolare, sono specificati tutti i diritti di un utente sugli oggetti del database. Ogni membro di un determinato database role può aggiungere altri utenti al ruolo. I ruoli possono essere creati, ma ne esistono alcuni predefiniti, come i seguenti: Fixed database role Description db_owner Performs the activities of all database roles, as well as other maintenance and configuration

12 activities in the database. db_accessadmin Adds or removes Windows NT groups, Windows NT users, and SQL Server users in the database. db_datareader Sees all data from all user tables in the database. db_datawriter Adds, changes, or deletes data from all user tables in the database. db_ddladmin Adds, modifies, or drops objects in the database. db_securityadmin Manages roles and members of SQL Server database roles, and can manage statement and object permissions in the database. db_backupoperator Backs up the database. db_denydatareader Sees no data in the database. db_denydatawriter Changes no data in the database. The permissions of the db_owner fixed database role span all of the other fixed database roles. In aggiunta ai ruoli precedente, viene creato anche il ruolo public. The public role is a special database role to which every database user belongs. The public role: Captures all default permissions for users in a database. Cannot have users, groups, or roles assigned to it because they belong to the role by default. Is contained in every database, including master, msdb, tempdb, model, and all user databases. Cannot be dropped. Per creare un nuovo database role è sufficiente portarsi nella cartella roles del database, premere il tasto destro del mouse sulla cartella (o nella parte destra della finestra dell Enterprise Manager) e selezionare New database role. Compare una finestra nella quale è possibile specificare il nome del ruole e gli utenti associati al ruolo. Una volta creato il ruolo, selezionando Properties (sempre con il tasto destro del mouse) è possibile selezionare i diritti (grant) per quel ruolo mediante il pulsante Permissions. Aggiungere uno user Per aggiungere uno user si procede in modo analogo a quanto fatto per l aggiunta di un database role. Premendo il pulsante destro del mouse sulla cartella Users del database su cui si sta lavorando e selezionando New database user compare una finestra nella quale è possibile specificare il login (tra quelli non ancora associati al database), il nome dell utente (che può essere uguale al login) e i database role da associare all utente. Di default ogni nuovo utente è associato al ruolo Public. guest User The guest user account allows a login without a user account to access a database. A login assumes the identity of the guest user when all of the following conditions are met: The login has access to Microsoft SQL Server, but does not have access to the database through his or her own user account. The database contains a guest user account.

13 Permissions can be applied to the guest user as if it were any other user account. The guest user can be deleted and added to all databases except master and tempdb, where it must always exist. By default, a guest user account does not exist in newly created databases. For example, to add a guest user account to a database named Accounts, execute from SQL Server Query Analyzer: USE Accounts GO EXECUTE sp_grantdbaccess guest, guest Server role, database role, login e user Quando si crea uno user lo si associa ad un particolare login. I diritti dello user sono la somma dei diritti del login con quelli aggiuntivi dello user. In particolare, i diritti di uno user sono una combinazione dei diritti: associati al server role per quanto riguarda il login (uno user è associato ad un solo login mentre un login può essere associato a più server role) sono la somma dei diritti di tutti i database role associati allo user (infatti uno user può essere associato a più database role) a questi vanno aggiunti i diritti particolari che è possibile associare al singolo user (mediante il pulsante Permissions delle proprietà dell utente). Inoltre è possibile che uno user che non ha diritto di accesso ad un database (perché questo diritto non è stato impostato per il login associato) possa comunque accedere al database ed avere tutti i diritti associati al database role public se nel database è presente l utente guest. Per cambiare database è possibile utilizzare il comando USE da Query Analyzer.

14 PROCEDURE DI AMMINISTRAZIONE PRINCIPALI Automating Administrative Tasks What is Automated Administration? Automated administration is the programmed response to a predictable administrative responsibility or server event. Administrators, application writers, and analysts operating data warehouses can benefit from task automation. To automate administration: Establish which administrative responsibilities or server events occur regularly and can be administered programmatically. Define a set of jobs and alerts. Run the SQL Server Agent service. What are the Components of Automatic Administration? Jobs, operators, and alerts are the three main components of automatic administration. Jobs You can use jobs to define an administrative task that can be executed one or more times and monitored for success or failure each time it executes. Jobs can be: Executed on one local server or on multiple remote servers. Executed according to one or more schedules. Executed by one or more alerts. Made up of one or more job steps. Job steps can be executable programs, Windows NT commands, Transact-SQL statements, Microsoft ActiveX Script, or replication agents. Operators An operator is an individual responsible for the maintenance of one or more computers running SQL Server. In some enterprises, operator responsibilities are assigned to one individual. In larger enterprises with multiple servers, many individuals share operator responsibilities. Operators are notified in one or more ways: Pager (through ) net send You can choose to define an operator s alias as an alias assigned to a group of individuals. In this way, all members of that alias can be notified at the same time. Alerts An alert is a definition that matches one or more SQL Server events and a response, should those events occur. In general, an administrator cannot control the occurrence of events but can control the response to those events with alerts. Alerts can be defined to respond to SQL Server events by: Notifying one or more operators. Forwarding the event to another server.

15 Executing a job. SQLServerAgent SQLServerAgent is a Microsoft Windows NT service that executes jobs, monitors Microsoft SQL Server, and fires alerts. SQLServerAgent is the service that allows you to automate some administrative tasks. As such, you must start the SQLServerAgent service before your local or multiserver administrative tasks can run automatically. SQL Server Agent is also supported on Windows 95/98 platforms Defining Jobs The first step in implementing a job is to define it. The primary attributes of a job are: Name Category Owner Description Job steps Schedules Notifications Job Name Every job must have a name. Job names must be unique only if they originate from the same server. For example, if SQL Server is set up to run on a target server, a locally created job and a downloaded job from a master server can share the same name. A job name can be no more than 128 characters. Job Category Job categories allow you to organize your jobs for easy filtering and grouping. For example, you can organize jobs in to categories that correspond to company departments, such as payroll, human resources, or finance. During installation, SQL Server creates these local job categories within SQL Server Agent: [Uncategorized (Local)] Database Maintenance Full-Text Jobs from MSX REPL - Alert Response REPL - Checkup REPL - Distribution REPL - Distribution Cleanup REPL - History Cleanup REPL - LogReader REPL - Merge

16 REPL - Snapshot REPL - Subscription Cleanup Web Assistant By default, local jobs are assigned to the [Uncategorized (Local)] job category. There is also one default master server job category: [Uncategorized (Multi-Server)]. Multiserver categories exist only on a master server. When a multiserver job is downloaded, its category is changed to Jobs from MSX at the target server. Job Owner The job owner is the individual who creates a job or for whom the job is created. By default, SQL Server Agent populates the owner information with the SQL Server login ID of the job creator. Only members of the sysadmin role can give ownership of a job to another user or can alter the attributes of a job owned by another user. Job Description A job can be run by other users on both the local and remote computers running SQL Server. By writing a description at the time a job is created, the job owner can ensure that other users will understand quickly the purpose of the job. A job description must not exceed 512 characters. Job Steps A job step is an action that the job takes on a database or a server. Every job must have at least one job step. Job steps can be operating system commands, Transact-SQL statements, Microsoft ActiveX Script, or replication tasks. Database Maintenance Plan Wizard The Database Maintenance Plan Wizard can be used to help you set up the core maintenance tasks that are necessary to ensure that your database performs well, is regularly backed up in case of system failure, and is checked for inconsistencies. The Database Maintenance Plan Wizard creates a Microsoft SQL Server job that performs these maintenance tasks automatically at scheduled intervals. The maintenance tasks that can be scheduled to run automatically are: Reorganizing the data on the data and index pages by rebuilding indexes with a new fill factor. This ensures that database pages contain an equally distributed amount of data and free space, which allows future growth to be faster. Compressing data files by removing empty database pages. Updating index statistics to ensure the query optimizer has up-to-date information regarding the distribution of data values in the tables. This allows the query optimizer to make better judgements about the best way to access data because it has more information about the data stored in the database. Although index statistics are automatically updated by SQL Server periodically, this option can force the statistics to be updated immediately. Performing internal consistency checks of the data and data pages within the database to ensure that a system or software problem has not damaged data. Backing up the database and transaction log files. Database and log backups can be retained for a specified period. This allows you to create a history of backups to be used in the event that you need to restore the database to a time earlier than the last database backup.

17 The results generated by the maintenance tasks can be written as a report to a text file, HTML file, or the sysdbmaintplan_history tables in the msdb database. The report can also be ed to an operator. Update Data Optimization Information This table shows the options and their functions that are available in the Update Data Optimization Information dialog box. Reorganize data and index pages Cause the indexes on the tables in the database to be dropped and re-created with a new FILLFACTOR. The FILLFACTOR determines how much empty space to leave on each page in the index, thereby reserving a percentage of free space on each data page of the index to accommodate future expansion. As data is added to the table, the free space fills because the FILLFACTOR is not maintained. Reorganizing data and index pages can reestablish the free space. Reorganize pages with the original amount of free space Change free space per page percentage to Update statistics used by query optimizer. Cause the indexes on the tables in the database to be dropped and re-created with the original FILLFACTOR that was specified when the indexes were created. Cause the indexes on the tables in the database to be dropped and re-created with a new automatically calculated FILLFACTOR, thereby reserving the specified amount of free space on the index pages. The higher the percentage, the more free space is reserved on the index pages and the larger the index grows. Valid values are from 0 through 100. Cause the distribution statistics of each index created on user tables in the database to be resampled. The distribution statistics are used by Microsoft SQL Server to optimize navigation through tables during the processing of Transact-SQL statements. To build the distribution statistics automatically, SQL Server periodically samples a percentage of the data in the corresponding table for each index. This percentage is based on the number of rows in the table and the frequency of data modification. Use this option to perform an additional sampling using the specified percentage of data in the tables. Sample % of the database Generate distribution statistics by sampling the percentage of data in the tables. The higher the percentage, the more accurate the statistics, but the longer the sampling takes. If the specified value does not generate a sufficient sample, SQL Server determines an adequate sample size automatically. Valid values are from 1 through 100. Remove unused space from Remove any unused space from the database, thereby database files allowing the size of the data files to be reduced. When it grows beyond Remove unused space from the database only if the database exceeds the specified size (in MB).

18 Amount of free space to remain after shrink Determine the amount of unused space to remain in the database after the database is shrunk (the larger the percentage, the less the database can shrink). The value is based on the percentage of the actual data in the database. For example, a 100-MB database containing 60 MB of data and 40 MB of free space, with a free space percentage of 50 percent, would result in 60 MB of data and 30 MB of free space (because 50 percent of 60 MB is 30 MB). Only excess space in the database is eliminated. Valid values are from 0 through 100. Schedule Set the frequency that the data optimization tasks (scheduled using SQL Server Agent) are executed. The default is every Sunday at midnight. Change... Change the default schedule. Database Integrity Check This table shows the options and their functions that are available in the Database Integrity Check dialog box. Usethis Check database integrity Include indexes Attempt to repair any minor problems Exclude indexes Perform these tests before doing backups Schedule Change... Todothis Check the allocation and structural integrity of user and system tables, and indexes in the database, by running the DBCC CHECKDB Transact-SQL statement. This ensures that any integrity problems with the database are reported, thereby allowing them to be addressed later by a system administrator or database owner. Check the data and index pages in the database during the integrity tests. Attempt to correct any minor problems detected during the database integrity tests automatically. It is recommended that this option be selected. Check only the data pages in the database during integrity tests. This does not check indexes. This option executes faster than selecting Include indexes because fewer pages in the database are checked. Cause the database and/or internal data integrity tests to be executed before backing up the database or transaction log. If the integrity tests detect inconsistencies, any subsequent database or transaction log backup is not backed up. Set the frequency that the data integrity tasks (scheduled using SQL Server Agent) are executed. The default is every Sunday at midnight. Change the default schedule. Specify the Database Backup Plan This table shows the options and their functions available in the Specify the Database Backup Plan dialog box.

19 Usethis Todothis Back up the database as part of Cause the entire database to be backed up as part of the the maintenance plan maintenance tasks. Backing up the database is important in case of system or hardware failure (or user errors) that cause the database to be damaged in some way, thus requiring a backed-up copy to be restored. Verify the integrity of the Check that the backup set is complete and all volumes are backup on completion of the accessible by executing the RESTORE VERIFYONLY backup Transact-SQL statement. Tape Back up the database to the specified tape device. The tape device is attached to the computer containing the Microsoft SQL Server database that is being backed up. Disk Back up the database to the disk that is located on the computer containing the SQL Server database that is being backed up. See Specify Backup Disk Directory to specify the location of the database backup. Schedule Set the frequency that the database backup tasks (scheduled using SQL Server Agent) are executed. The default is every Sunday at midnight. Change... Change the default schedule. Specify Backup Disk Directory This table shows the options and their functions that are available in the Specify Backup Disk Directory dialog box. Usethis Todothis Use the default backup directory Back up the database to the \Mssql7\Backup disk directory located on the computer containing the Microsoft SQL Server database that is being backed up. Use this directory Back up the database to the specified disk directory located on the computer containing the SQL Server database that is being backed up. (...) Change the default disk directory used to back up the database. Only drives on the computer containing the SQL Server database that is being backed up can be selected. Create a subdirectory for each database Remove files older than Backup file extension Create a subdirectory under the specified disk directory containing the database backup for each database that is being backed up as part of the maintenance plan. Delete database backups automatically that are older than the specified period. A history of database backups should be maintained in the event that the database needs to be restored to a point in time earlier than the last performed backup. Retain as many backups as disk space allows and as far in the past as is necessary. Define the file name extension used for each file that contains the database backup. The default file extension is

20 BAK. Maintenance History This table shows the options and their functions that are available in the Maintenance History dialog box. Usethis Todothis Write history to the Write the report as rows to this table on the server upon msdb.dbo.sysdbmaintplan_history which the maintenance plan was executed. The report table on the local server contains the steps executed by the maintenance plan, including database name, activity, date, result (success or failure), and any error information. It includes one row for each activity, per database, per execution date. Write history to the server Write the report as rows to the msdb.dbo.sysdbmaintplan_history table on a remote server. Windows NT Authentication is used to connect to the remote server. The report contains the steps executed by the maintenance plan, including database name, activity, date, result (success or failure), and any error information. It includes one row for each activity, per database, per execution date. (...) Change the remote server to which the report is written. Only computers running SQL Server can be selected. Limit rows in the table to Specify the maximum number of rows in the table that represent history for this plan only. If the number of history rows in the table for this plan exceeds this value, older rows for this plan (representing the earliest recorded history) are deleted. Setting this value can prevent the table from becoming too large and filling the msdb database (if auto-grow is not permitted). The default is

User Guide Guglielmo SmartClient

User Guide Guglielmo SmartClient User Guide Guglielmo SmartClient User Guide - Guglielmo SmartClient Version: 1.0 Guglielmo All rights reserved. All trademarks and logos referenced herein belong to their respective companies. -2- 1. Introduction

Dettagli

Copyright 2012 Binary System srl 29122 Piacenza ITALIA Via Coppalati, 6 P.IVA 01614510335 - info@binarysystem.eu http://www.binarysystem.

Copyright 2012 Binary System srl 29122 Piacenza ITALIA Via Coppalati, 6 P.IVA 01614510335 - info@binarysystem.eu http://www.binarysystem. CRWM CRWM (Web Content Relationship Management) has the main features for managing customer relationships from the first contact to after sales. The main functions of the application include: managing

Dettagli

API e socket per lo sviluppo di applicazioni Web Based

API e socket per lo sviluppo di applicazioni Web Based API e socket per lo sviluppo di applicazioni Web Based Cosa sono le API? Consideriamo il problema di un programmatore che voglia sviluppare un applicativo che faccia uso dei servizi messi a disposizione

Dettagli

CONFIGURATION MANUAL

CONFIGURATION MANUAL RELAY PROTOCOL CONFIGURATION TYPE CONFIGURATION MANUAL Copyright 2010 Data 18.06.2013 Rev. 1 Pag. 1 of 15 1. ENG General connection information for the IEC 61850 board 3 2. ENG Steps to retrieve and connect

Dettagli

Add workstations to domain. Adjust memory quotas for a process. Bypass traverse checking. Change the system time. Create a token object

Add workstations to domain. Adjust memory quotas for a process. Bypass traverse checking. Change the system time. Create a token object SeTcb Act as part of the operating system Consente ad un processo di assumere l identità di un qualsiasi utente ottenere così l accesso alle risorse per cui è autorizzato tale utente SeMachineAccount SeIncreaseQuota

Dettagli

RenderCAD S.r.l. Formazione

RenderCAD S.r.l. Formazione Descrizione Il corso affronta le caratteristiche di Oracle9i e Oracle9i Release 2. In questo corso, rivolto ai database administrator (DBA) Oracle, vengono descritte in modo approfondito le attività di

Dettagli

INSTALLARE PALLADIO USB DATA CABLE IN WINDOWS XP/ME/2000/98

INSTALLARE PALLADIO USB DATA CABLE IN WINDOWS XP/ME/2000/98 rev. 1.0-02/2002 Palladio USB Data Cable INSTALLARE PALLADIO USB DATA CABLE IN WINDOWS XP/ME/2000/98 (tutti i KIT, escluso KIT MOTOROLA V6x-T280) La procedura di installazione del Palladio USB Data Cable

Dettagli

Portale Materiali Grafiche Tamburini. Grafiche Tamburini Materials Portal

Portale Materiali Grafiche Tamburini. Grafiche Tamburini Materials Portal Portale Materiali Grafiche Tamburini Documentazione utente italiano pag. 2 Grafiche Tamburini Materials Portal English user guide page 6 pag. 1 Introduzione Il Portale Materiali è il Sistema Web di Grafiche

Dettagli

Database support Prerequisites Architecture Driver features Setup Stored procedures Where to use. Contents

Database support Prerequisites Architecture Driver features Setup Stored procedures Where to use. Contents VEGA ODBC DRIVER Database support Prerequisites Architecture Driver features Setup Stored procedures Where to use Contents Database support CA-IDMS/SQL including table procedures CA-IDMS/DML via stored

Dettagli

Installazione interfaccia e software di controllo mediante PC Installing the PC communication interface and control software

Installazione interfaccia e software di controllo mediante PC Installing the PC communication interface and control software Windows 7 Installazione interfaccia e software di controllo mediante PC Installing the PC communication interface and control software Contenuto del kit cod. 20046946: - Interfaccia PC-scheda (comprensiva

Dettagli

Introduzione Kerberos. Orazio Battaglia

Introduzione Kerberos. Orazio Battaglia Orazio Battaglia Il protocollo Kerberos è stato sviluppato dal MIT (Massachusetts Institute of Tecnology) Iniziato a sviluppare negli anni 80 è stato rilasciato come Open Source nel 1987 ed è diventato

Dettagli

Installazione di Filenet Content Services 5.3 di Emanuele Mattei (emanuele.mattei[at]email.it)

Installazione di Filenet Content Services 5.3 di Emanuele Mattei (emanuele.mattei[at]email.it) Installazione di Filenet Content Services 5.3 di Emanuele Mattei (emanuele.mattei[at]email.it) INTRODUZIONE Il presente documento ha il compito di illustrare i passi per l installazione di Filenet Cs verione

Dettagli

GstarCAD 2010 Features

GstarCAD 2010 Features GstarCAD 2010 Features Unrivaled Compatibility with AutoCAD-Without data loss&re-learning cost Support AutoCAD R2.5~2010 GstarCAD 2010 uses the latest ODA library and can open AutoCAD R2.5~2010 DWG file.

Dettagli

4-441-095-52 (1) Network Camera

4-441-095-52 (1) Network Camera 4-441-095-52 (1) Network Camera Guida SNC easy IP setup Versione software 1.0 Prima di utilizzare l apparecchio, leggere attentamente le istruzioni e conservarle come riferimento futuro. 2012 Sony Corporation

Dettagli

Laboratorio di Amministrazione di Sistema (CT0157) parte A : domande a risposta multipla

Laboratorio di Amministrazione di Sistema (CT0157) parte A : domande a risposta multipla Laboratorio di Amministrazione di Sistema (CT0157) parte A : domande a risposta multipla 1. Which are three reasons a company may choose Linux over Windows as an operating system? (Choose three.)? a) It

Dettagli

MOC10775 Administering Microsoft SQL Server 2012 Databases

MOC10775 Administering Microsoft SQL Server 2012 Databases Tel. +39 02 365738 info@overneteducation.it www.overneteducation.it MOC10775 Administering Microsoft SQL Server 2012 Databases Durata: 4.5 gg Descrizione Questo corso trasmette agli allievi le conoscenze

Dettagli

Nautilus Installazione Aggiornato a versione 2.4.1092

Nautilus Installazione Aggiornato a versione 2.4.1092 Nautilus Installazione Aggiornato a versione 2.4.1092 IMPORTANTE: NON INSERIRE LA CHIAVE USB DI LICENZA FINO A QUANDO RICHIESTO NOTA: se sul vostro computer è già installato Nautilus 2.4, è consigliabile

Dettagli

Customer Centric/Inquiry/E-bill. Tanya Enzminger

Customer Centric/Inquiry/E-bill. Tanya Enzminger Customer Centric/Inquiry/E-bill Tanya Enzminger Customer Centric E-bill On-line Electronic Billing system Real-time viewing of customer data including statement, payment, toll usage and other information

Dettagli

Aggiornamento dispositivo di firma digitale

Aggiornamento dispositivo di firma digitale Aggiornamento dispositivo di firma digitale Updating digital signature device Questo documento ha il compito di descrivere, passo per passo, il processo di aggiornamento manuale del dispositivo di firma

Dettagli

Nuvola It Data Space Easy Tutorial per l Amministratore. Telecom Italia Business/Marketing Top Clients Marketing ICT services

Nuvola It Data Space Easy Tutorial per l Amministratore. Telecom Italia Business/Marketing Top Clients Marketing ICT services Easy Tutorial per l Amministratore Telecom Italia Business/Marketing Top Clients Marketing ICT services Contents Introduzione Profilo Ammistratore Portale di gestione: Team Portal Il cliente che sottoscrive

Dettagli

Guida alla configurazione Configuration Guide

Guida alla configurazione Configuration Guide Guida alla configurazione Configuration Guide Configurazione telecamere IP con DVR analogici, compatibili IP IP cameras configuration with analog DVR, IP compatible Menu principale: Fare clic con il pulsante

Dettagli

Nuvola It Data Space Easy Reseller Tutorial per l Amministratore. Top Clients Marketing ICT services

Nuvola It Data Space Easy Reseller Tutorial per l Amministratore. Top Clients Marketing ICT services Tutorial per l Amministratore Telecom Italia Business/Marketing Top Clients Marketing ICT services Portale di gestione: Reseller Portal Il cliente che sottoscrive il profilo di servizio può utilizzare

Dettagli

SHAREPOINT INCOMING E-MAIL. Configurazione base

SHAREPOINT INCOMING E-MAIL. Configurazione base SHAREPOINT INCOMING E-MAIL Configurazione base Versione 1.0 14/11/2011 Green Team Società Cooperativa Via della Liberazione 6/c 40128 Bologna tel 051 199 351 50 fax 051 05 440 38 Documento redatto da:

Dettagli

sdforexcontest2009 Tool

sdforexcontest2009 Tool sdforexcontest2009 Tool Guida all istallazione e rimozione. Per scaricare il tool del campionato occorre visitare il sito dell organizzatore http://www.sdstudiodainesi.com e selezionare il link ForexContest

Dettagli

Biotrends - Istruzioni per il Setup

Biotrends - Istruzioni per il Setup Biotrends - Istruzioni per il Setup Procedura Operativa Standard Autore Data Firma Francesco Izzo 22.08.2009 Approvato da Data Firma Mauro Pedrazzoli Storia delle edizioni Ed Descrizione Autore Dipartimento/Servizio

Dettagli

Il BACKUP è disponibile in http://www.dbgroup.unimo.it/sia/esercizio_21_novembre_2013/esercizio_21_novembre_2013.bak

Il BACKUP è disponibile in http://www.dbgroup.unimo.it/sia/esercizio_21_novembre_2013/esercizio_21_novembre_2013.bak ESEMPIO DELLE VENDITE: MISURE ED AGGREGABILITA E l esempio discusso nelle dispense è Dispense : http://www.dbgroup.unimo.it/sia/sia_2014_progettazionediundw_misure.pdf esteso e dettagliato. Il BACKUP è

Dettagli

http://bcloud.brennercom.it/it/brennercom-b-cloud/applicazioni/26-0.html

http://bcloud.brennercom.it/it/brennercom-b-cloud/applicazioni/26-0.html b.backup Manuale Windows Questo manuale descrive le funzionalità di base del client b.backup illustra le operazioni necessarie per installare e attivare l applicazione, e spiega come eseguire un backup

Dettagli

REGISTRATION GUIDE TO RESHELL SOFTWARE

REGISTRATION GUIDE TO RESHELL SOFTWARE REGISTRATION GUIDE TO RESHELL SOFTWARE INDEX: 1. GENERAL INFORMATION 2. REGISTRATION GUIDE 1. GENERAL INFORMATION This guide contains the correct procedure for entering the software page http://software.roenest.com/

Dettagli

STATO IMPLEMENTAZIONE ONVIF SU TELECAMERE MUNDUS SECURUS

STATO IMPLEMENTAZIONE ONVIF SU TELECAMERE MUNDUS SECURUS IMPLEMENTAZIONE ONVIF SU TELECAMERE MUNDUS SECURUS 1. Ambiente di sviluppo Sono stati analizzati diversi linguaggi e framework differenti utilizzabili per implementare i WebServices ONVIF. Il risultato

Dettagli

GE Fanuc Automation. Page 1/12

GE Fanuc Automation. Page 1/12 GE FANUC Data Server FTP Server - Configurazione - Page 1/12 Revision History Version Date Author Notes 1.00 05-Jun-2002 M. Bianchi First release Summary 1 Introduzione... 3 1.1 Riferimenti... 3 2 Configurazione

Dettagli

www.aylook.com -Fig.1-

www.aylook.com -Fig.1- 1. RAGGIUNGIBILITA DI AYLOOK DA REMOTO La raggiungibilità da remoto di Aylook è gestibile in modo efficace attraverso una normale connessione ADSL. Si presentano, però, almeno due casi: 1.1 Aylook che

Dettagli

Introduzione all ambiente di sviluppo

Introduzione all ambiente di sviluppo Laboratorio II Raffaella Brighi, a.a. 2005/06 Corso di Laboratorio II. A.A. 2006-07 CdL Operatore Informatico Giuridico. Introduzione all ambiente di sviluppo Raffaella Brighi, a.a. 2005/06 Corso di Laboratorio

Dettagli

How to use the WPA2 encrypted connection

How to use the WPA2 encrypted connection How to use the WPA2 encrypted connection At every Alohawifi hotspot you can use the WPA2 Enterprise encrypted connection (the highest security standard for wireless networks nowadays available) simply

Dettagli

IBM Software Demos Tivoli Identity Manager e Tivoli Directory Integrator

IBM Software Demos Tivoli Identity Manager e Tivoli Directory Integrator Tivoli_Identity_Manager_Directory_Integrator_Integration_D_Dec05 1a 0:13 Le soluzioni per la gestione della sicurezza IBM Tivoli affrontano due sfide dell'e-business: la gestione delle identità automatizzata

Dettagli

GERARCHIE RICORSIVE - SQL SERVER 2008

GERARCHIE RICORSIVE - SQL SERVER 2008 GERARCHIE RICORSIVE - SQL SERVER 2008 DISPENSE http://dbgroup.unimo.it/sia/gerarchiericorsive/ L obiettivo è quello di realizzare la tabella di navigazione tramite una query ricorsiva utilizzando SQL SERVER

Dettagli

Installazione di GFI Network Server Monitor

Installazione di GFI Network Server Monitor Installazione di GFI Network Server Monitor Requisiti di sistema I computer che eseguono GFI Network Server Monitor richiedono: i sistemi operativi Windows 2000 (SP4 o superiore), 2003 o XP Pro Windows

Dettagli

Posta elettronica per gli studenti Email for the students

Posta elettronica per gli studenti Email for the students http://www.uninettunouniverstiy.net Posta elettronica per gli studenti Email for the students Ver. 1.0 Ultimo aggiornamento (last update): 10/09/2008 13.47 Informazioni sul Documento / Information on the

Dettagli

TNCguide OEM Informativa sull introduzione di documentazione aggiuntiva nella TNCguide

TNCguide OEM Informativa sull introduzione di documentazione aggiuntiva nella TNCguide Newsletter Application 4/2007 OEM Informativa sull introduzione di documentazione aggiuntiva nella APPLICABILITÀ: CONTROLLO NUMERICO itnc 530 DA VERSIONE SOFTWARE 340 49x-03 REQUISITI HARDWARE: MC 420

Dettagli

Guida rapida di installazione

Guida rapida di installazione Configurazione 1) Collegare il Router Hamlet HRDSL108 Wireless ADSL2+ come mostrato in figura:. Router ADSL2+ Wireless Super G 108 Mbit Guida rapida di installazione Informiamo che il prodotto è stato

Dettagli

Downloading and Installing Software Socio TIS

Downloading and Installing Software Socio TIS Object: Downloading and Installing Software Socio TIS compiler: L.D. Date Revision Note April 17 th 2013 --- For SO XP; Win 7 / Vista step Operation: Image A1 Open RUN by clicking the Start button, and

Dettagli

CORSO MOC55133: PowerShell for System Center Configuration Manager Administrators. CEGEKA Education corsi di formazione professionale

CORSO MOC55133: PowerShell for System Center Configuration Manager Administrators. CEGEKA Education corsi di formazione professionale CORSO MOC55133: PowerShell for System Center Configuration Manager Administrators CEGEKA Education corsi di formazione professionale PowerShell for System Center Configuration Manager Administrators This

Dettagli

LA GESTIONE DELLE VISITE CLIENTI VIA WEB

LA GESTIONE DELLE VISITE CLIENTI VIA WEB LA GESTIONE DELLE VISITE CLIENTI VIA WEB L applicazione realizzata ha lo scopo di consentire agli agenti l inserimento via web dei dati relativi alle visite effettuate alla clientela. I requisiti informatici

Dettagli

Hosting Applicativo Upgrade Web Client

Hosting Applicativo Upgrade Web Client Hosting Applicativo Upgrade Web Client guida all upgrade dei client di connessione Marzo 2012 Hosting Applicativo Installazione Web Client Introduzione Il personale Cineca effettua regolarmente dei controlli

Dettagli

MS WINDOWS SERVER 2008 - CONFIGURING, MANAGING AND MAINTAINING SERVERS

MS WINDOWS SERVER 2008 - CONFIGURING, MANAGING AND MAINTAINING SERVERS MS WINDOWS SERVER 2008 - CONFIGURING, MANAGING AND MAINTAINING SERVERS UN BUON MOTIVO PER [cod. E103] Questo corso combina i contenuti di tre corsi: Network Infrastructure Technology Specialist, Active

Dettagli

Compatibilità del Portale Piaggio con Internet Explorer 10 e 11. Internet Explorer 10

Compatibilità del Portale Piaggio con Internet Explorer 10 e 11. Internet Explorer 10 Italiano: Explorer 10 pagina 1, Explorer 11 pagina 2 English: Explorer 10 page 3 and 4, Explorer 11 page 5. Compatibilità del Portale Piaggio con Internet Explorer 10 e 11 Internet Explorer 10 Con l introduzione

Dettagli

Come Installare SQL Server 2008 R2 Express Edition With Tools

Come Installare SQL Server 2008 R2 Express Edition With Tools Come Installare SQL Server 2008 R2 Express Edition With Tools Circolare CT-1010-0087, del 28/10/2010. Come Installare SQL Server 2008 R2 Express Edition sul server... 2 Introduzione... 2 Installazione

Dettagli

WELCOME. Go to the link of the official University of Palermo web site www.unipa.it; Click on the box on the right side Login unico

WELCOME. Go to the link of the official University of Palermo web site www.unipa.it; Click on the box on the right side Login unico WELCOME This is a Step by Step Guide that will help you to register as an Exchange for study student to the University of Palermo. Please, read carefully this guide and prepare all required data and documents.

Dettagli

Installazione di GFI Network Server Monitor

Installazione di GFI Network Server Monitor Installazione di GFI Network Server Monitor Requisiti di Sistema Le macchine che eseguono GFI Network Server Monitor richiedono: I sistemi operativi Windows 2000 (SP4 o superiore), 2003 o XP Pro. Windows

Dettagli

Servizio di backup dei dati mediante sincronizzazione

Servizio di backup dei dati mediante sincronizzazione Servizio di backup dei dati mediante sincronizzazione Indice del documento Descrizione del servizio... 1 Istruzioni per l installazione... 2 Installazione di Microsoft SyncToy... 2 Installazione di NetDrive...

Dettagli

MOC10982 Supporting and Troubleshooting Windows 10

MOC10982 Supporting and Troubleshooting Windows 10 Tel. +39 02 365738 info@overneteducation.it www.overnet.azurewebsites.net MOC10982 Supporting and Troubleshooting Windows 10 Durata: 4.5 gg Descrizione Questo corso è progettato per fornire agli studenti

Dettagli

Procedura di Aggiornamento TO.M.M.YS. SQL 2005 e 2008

Procedura di Aggiornamento TO.M.M.YS. SQL 2005 e 2008 Questa procedura illustra passo passo gli step da compiere per aggiornare il programma TO.M.M.YS. che è stato installato con il supporto di Microsoft SQL 2005. ATTENZIONE: La presente procedura DEVE essere

Dettagli

Installazione di GFI MailArchiver

Installazione di GFI MailArchiver Installazione di GFI MailArchiver Requisiti di sistema di GFI MailArchiver Windows 2000/2003 Server oppure Advanced Server. Microsoft Exchange Server 2000/2003 (il prodotto è installato sulla macchina

Dettagli

Basi di dati (3) Ing. Integrazione di Impresa A.A. 2007/08

Basi di dati (3) Ing. Integrazione di Impresa A.A. 2007/08 Università di Modena e Reggio Emilia Panoramica Basi di dati (3) Ing. Integrazione di Impresa A.A. 2007/08 Docente: andrea.bulgarelli@gmail.com Argomento: struttura SQL Server (1.0)! Componenti! Edizioni!

Dettagli

SOMMARIO... 2 Introduzione... 3 Configurazione Microsoft ISA Server... 4 Microsoft ISA Server 2004... 4 Microsoft ISA Server 2000...

SOMMARIO... 2 Introduzione... 3 Configurazione Microsoft ISA Server... 4 Microsoft ISA Server 2004... 4 Microsoft ISA Server 2000... SOMMARIO... 2 Introduzione... 3 Configurazione Microsoft ISA Server... 4 Microsoft ISA Server 2004... 4 Microsoft ISA Server 2000... 16 Configurazione di Atlas... 23 Server Atlas... 23 Configurazione di

Dettagli

ENPCOM European network for the promotion of the Covenant of Mayors

ENPCOM European network for the promotion of the Covenant of Mayors ENPCOM European network for the promotion of the Covenant of Mayors Censimento e monitoraggio dei consumi energetici e comportamento dei cittadini Controllo Energetico dei Consumi degli Edifici Monitoraggio

Dettagli

Installazione MS SQL Express e utilizzo con progetti PHMI

Installazione MS SQL Express e utilizzo con progetti PHMI Installazione MS SQL Express e utilizzo con progetti PHMI Introduzione La nota descrive l utilizzo del database Microsoft SQL Express 2008 in combinazione con progetti Premium HMI per sistemi Win32/64

Dettagli

ECVUSBO MANUALE DEL PRODOTTO DEVICE MANUAL

ECVUSBO MANUALE DEL PRODOTTO DEVICE MANUAL ECVUSBO MANUALE DEL PRODOTTO DEVICE MANUAL INDICE TABLE OF CONTENTS 1. Introduzione... pag. 3 1. Introduction... pag. 3 2. Requisiti di sistema... pag. 3 1. System requirements... pag. 3 3. Installazione...

Dettagli

AGENDA.. Mission. Componenti SMC. Security Environment. Report. Eventi. Update prodotti. Faq. Achab 2009 pagina 1

AGENDA.. Mission. Componenti SMC. Security Environment. Report. Eventi. Update prodotti. Faq. Achab 2009 pagina 1 AGENDA. Mission. Componenti SMC. Security Environment. Report. Eventi. Update prodotti. Faq Achab 2009 pagina 1 SMC Il problema da risolvere Gestire in modo centralizzato i prodotti Avira Antivir installati

Dettagli

Guida all installazione di Easy

Guida all installazione di Easy Guida all installazione di Easy ISTRUZIONI PER L INSTALLAZIONE DEL SOFTWARE EASY Requisiti di sistema Sistemi operativi supportati: Windows 2000 Service Pack 4; Windows Server 2003 SP2(consigliato per

Dettagli

CABIN CREW TRAINING COMMUNICATION

CABIN CREW TRAINING COMMUNICATION Gentili colleghi, pregasi prendere visione dei seguenti aggiornamenti training: CABIN CREW A: Cabin Crew Members CC: F.O.P.H., Crew Training P.H., Safety Manager, Compliance Monitoring Manager, Cabin Crew

Dettagli

Mac Application Manager 1.3 (SOLO PER TIGER)

Mac Application Manager 1.3 (SOLO PER TIGER) Mac Application Manager 1.3 (SOLO PER TIGER) MacApplicationManager ha lo scopo di raccogliere in maniera centralizzata le informazioni piu salienti dei nostri Mac in rete e di associare a ciascun Mac i

Dettagli

Resources and Tools for Bibliographic Research. Search & Find Using Library Catalogues

Resources and Tools for Bibliographic Research. Search & Find Using Library Catalogues Resources and Tools for Bibliographic Research Search & Find Using Library Catalogues November 28, 2011 Donata Pieri Index Definition University of Padova Library System Catalogue CaPerE E-journals Catalogue

Dettagli

Installazione e caratteristiche generali 1

Installazione e caratteristiche generali 1 Installazione e caratteristiche generali 1 Introduzione SIGLA Ultimate e SIGLA Start Edition possono essere utilizzati solo se sono soddisfatti i seguenti prerequisiti: Microsoft.Net Framework 3.5 (consigliato

Dettagli

ECCO LE ISTRUZIONI PER INSERIRE IL MATERIALE RICHIESTO DAL BANDO TEATRO SENZA FILO CONTEST:

ECCO LE ISTRUZIONI PER INSERIRE IL MATERIALE RICHIESTO DAL BANDO TEATRO SENZA FILO CONTEST: ECCO LE ISTRUZIONI PER INSERIRE IL MATERIALE RICHIESTO DAL BANDO TEATRO SENZA FILO CONTEST: 1) Registrati su www.circyouity.com e creati un profilo personale o del gruppo* (non con il nome del progetto!)

Dettagli

Utilizzare il NetBeans GUI Builder. Dott. Ing. M. Banci, PhD

Utilizzare il NetBeans GUI Builder. Dott. Ing. M. Banci, PhD Utilizzare il NetBeans GUI Builder Dott. Ing. M. Banci, PhD Lavorare con i Beans Queste slide ci guidano nel processo di creazione di un bean pattern nel progetto NetBeans 15 Giugno 2007 Esercitazione

Dettagli

Installazione di Sophos Antivirus 5.1 su piattaforma Windows XP

Installazione di Sophos Antivirus 5.1 su piattaforma Windows XP Servizio Calcolo e Reti 1 Febbraio 2006 Installazione di Sophos Antivirus 5.1 su piattaforma Windows XP A. Rappoldi 1 Premessa La presente guida descrive in modo conciso le fasi essenziali necessarie per

Dettagli

Printer Driver. Prima di procedere con l utilizzo del driver stampante, leggere il file Readme. Prima dell utilizzo del software 4-152-267-42(1)

Printer Driver. Prima di procedere con l utilizzo del driver stampante, leggere il file Readme. Prima dell utilizzo del software 4-152-267-42(1) 4-152-267-42(1) Printer Driver Guida per l installazione Questa guida descrive l installazione del driver stampante per Windows 7, Windows Vista, Windows XP e. Prima dell utilizzo del software Prima di

Dettagli

WELCOME UNIPA REGISTRATION:

WELCOME UNIPA REGISTRATION: WELCOME This is a Step by Step Guide that will help you to register as an Exchange for study student to the University of Palermo. Please, read carefully this guide and prepare all required data and documents.

Dettagli

Manuale per la configurazione di AziendaSoft in rete

Manuale per la configurazione di AziendaSoft in rete Manuale per la configurazione di AziendaSoft in rete Data del manuale: 7/5/2013 Aggiornamento del manuale: 2.0 del 10/2/2014 Immagini tratte da Windows 7 Versione di AziendaSoft 7 Sommario 1. Premessa...

Dettagli

CCTV DIVISION GUIDA RAPIDA PER LA CONFIGURAZIONE DELL IP STATICO SU SISTEMI TVCC QUICK GUIDE FOR STATIC IP CONFIGURATION ABOUT CCTV SYSTEM

CCTV DIVISION GUIDA RAPIDA PER LA CONFIGURAZIONE DELL IP STATICO SU SISTEMI TVCC QUICK GUIDE FOR STATIC IP CONFIGURATION ABOUT CCTV SYSTEM CCTV DIVISION GUIDA RAPIDA PER LA CONFIGURAZIONE DELL IP STATICO SU SISTEMI TVCC QUICK GUIDE FOR STATIC IP CONFIGURATION ABOUT CCTV SYSTEM ITALIANO Principali Step per la configurazione I dispositivi di

Dettagli

SOMMARIO COSA SERVE... 2 PRIMA DI INIZIARE... 2 COME PROCEDERE LATO SERVER... 3 COME PROCEDERE LATO CLIENT... 3

SOMMARIO COSA SERVE... 2 PRIMA DI INIZIARE... 2 COME PROCEDERE LATO SERVER... 3 COME PROCEDERE LATO CLIENT... 3 SOMMARIO COSA SERVE... 2 PRIMA DI INIZIARE... 2 COME PROCEDERE LATO SERVER... 3 COME PROCEDERE LATO CLIENT... 3 OPERAZIONE DI CONVERSIONE DEI NOMI LATO SERVER... 5 SYBASE... 6 MS SQL... 8 ESECUZIONE DEL

Dettagli

DICHIARAZIONE DI RESPONSABILITÀ

DICHIARAZIONE DI RESPONSABILITÀ - 0MNSWK0082LUA - - ITALIANO - DICHIARAZIONE DI RESPONSABILITÀ Il produttore non accetta responsabilità per la perdita di dati, produttività, dispositivi o qualunque altro danno o costo associato (diretto

Dettagli

http://technet.microsoft.com/itit/library/dd894353.aspx

http://technet.microsoft.com/itit/library/dd894353.aspx http://technet.microsoft.com/itit/library/dd894353.aspx Home Basic Home Premium Professional Enterprise / Ultimate Aero No Sì Sì Sì AppLocker No No No Sì Bitlocker No No No Sì Direct Access No No No

Dettagli

UNIVERSITÀ DEGLI STUDI DI TORINO

UNIVERSITÀ DEGLI STUDI DI TORINO STEP BY STEP INSTRUCTIONS FOR COMPLETING THE ONLINE APPLICATION FORM Enter the Unito homepage www.unito.it and click on Login on the right side of the page. - Tel. +39 011 6704425 - e-mail internationalexchange@unito.it

Dettagli

GateManager. 1 Indice. tecnico@gate-manager.it

GateManager. 1 Indice. tecnico@gate-manager.it 1 Indice 1 Indice... 1 2 Introduzione... 2 3 Cosa vi serve per cominciare... 2 4 La Console di amministrazione... 2 5 Avviare la Console di amministrazione... 3 6 Come connettersi alla Console... 3 7 Creare

Dettagli

Guida rapida di installazione e configurazione

Guida rapida di installazione e configurazione Outlook Connector for MDaemon Guida rapida di installazione e configurazione Abstract... 2 Dove scaricare il plug-in Outlook Connector for MDaemon... 2 Installazione del plug-in Outlook Connector for MDaemon...

Dettagli

9243045 Edizione 1 IT. Nokia e Nokia Connecting People sono marchi registrati di Nokia Corporation

9243045 Edizione 1 IT. Nokia e Nokia Connecting People sono marchi registrati di Nokia Corporation 9243045 Edizione 1 IT Nokia e Nokia Connecting People sono marchi registrati di Nokia Corporation Accedere a Zip Manager Pro. Nota: per ulteriori informazioni su funzionamento e manutenzione del Nokia

Dettagli

System Center Virtual Machine Manager Self-Service Portal

System Center Virtual Machine Manager Self-Service Portal System Center Virtual Machine Manager Self-Service Portal di Nicola Ferrini MCT MCSA MCSE MCTS MCITP System Center Virtual Machine Manager 2008 è la nuova release dello strumento della famiglia System

Dettagli

Introduzione ai Web Services Alberto Polzonetti

Introduzione ai Web Services Alberto Polzonetti PROGRAMMAZIONE di RETE A.A. 2003-2004 Corso di laurea in INFORMATICA Introduzione ai Web Services alberto.polzonetti@unicam.it Introduzione al problema della comunicazione fra applicazioni 2 1 Il Problema

Dettagli

Decomponibilità dei sistemi software

Decomponibilità dei sistemi software Decomponibilità dei sistemi software 1 Componenti di un Sistema Software Un sistema software può essere visto come composto da tre principali tipi di i Componenti dell Interfaccia utente ( s) - costituiti

Dettagli

Guida applicativa - Print Server. Rev: 2.0.0 1910010857

Guida applicativa - Print Server. Rev: 2.0.0 1910010857 Guida applicativa - Print Server Rev: 2.0.0 1910010857 Indice dei contenuti Introduzione... 1 Installazione su Windows 8/7/Vista/XP... 1 Utilizzo su Windows 8/7/Vista/XP... 6 Controller... 6 Stampa...

Dettagli

Sommario. Esempio di Modellazione mediante DASM: Grid OGSA. Grid secondo OGSA. Definizione Grid per OGSA. Stati di un Job e Requisiti DASM

Sommario. Esempio di Modellazione mediante DASM: Grid OGSA. Grid secondo OGSA. Definizione Grid per OGSA. Stati di un Job e Requisiti DASM Sommario Esempio di Modellazione mediante DASM: Grid Definizione Grid per OGSA Funzionalità JEMS Stati di un Job e Requisiti DASM DASM per Grid 1 DASM per Grid 2 OGSA Grid secondo OGSA OGSA = Open Grid

Dettagli

Guida utente User Manual made in Italy Rev0

Guida utente User Manual made in Italy Rev0 Guida utente User Manual Rev0 made in Italy Indice/Index Informazioni generali General Info... 3 Guida Rapida per messa in funzione Start Up procedure... 3 Login Login... 3 Significato dei tasti Botton

Dettagli

PROF. Filippo CAPUANI. Amministrazione di una rete con Active Directory

PROF. Filippo CAPUANI. Amministrazione di una rete con Active Directory PROF. Filippo CAPUANI Amministrazione di una rete con Active Directory Sommario Gli oggetti di Active Directory Utenti e User Account Diritti utente e permessi Tipi di User Account in un dominio Organizzazione

Dettagli

Code: GW-IMP-WEB-1. Datalogger web pulses counter. Version 6 inputs with Ethernet. MarCom

Code: GW-IMP-WEB-1. Datalogger web pulses counter. Version 6 inputs with Ethernet. MarCom Datalogger web pulses counter Code: GW-IMP-WEB-1 Version 6 inputs with Ethernet Datalogger web pulses counter The web datalogger pulses counter is able to count the pulses on digital inputs (2 by default

Dettagli

Contenuto del pacchetto

Contenuto del pacchetto Contenuto del pacchetto DWL-900AP Trasformatore AC Cavo USB CD d installazione Manuale utente Manuale rapido d installazione Se uno o più componenti dovessero risultare mancanti o danneggiati, contattare

Dettagli

Configurazione avanzata di IBM SPSS Modeler Entity Analytics

Configurazione avanzata di IBM SPSS Modeler Entity Analytics Configurazione avanzata di IBM SPSS Modeler Entity Analytics Introduzione I destinatari di questa guida sono gli amministratori di sistema che configurano IBM SPSS Modeler Entity Analytics (EA) in modo

Dettagli

SICR@WEB MSSQL2005 PER SICR@WEB. Il presente documento comprende la procedura di prima installazione di MSSQL (e altre nozioni di base).

SICR@WEB MSSQL2005 PER SICR@WEB. Il presente documento comprende la procedura di prima installazione di MSSQL (e altre nozioni di base). SICR@WEB MSSQL2005 PER SICR@WEB Il presente documento comprende la procedura di prima installazione di MSSQL (e altre nozioni di base). SICR@WEB PRIMA INSTALLAZIONE - MSSQL 2005 Revisioni Data Modifiche

Dettagli

Applicazione JobScheduler su DB SQL Milano, lì 14/09/2009

Applicazione JobScheduler su DB SQL Milano, lì 14/09/2009 Documentazione KING Applicazione JobScheduler su DB SQL Milano, lì 14/09/2009 Microsoft SQL Server dispone del servizio di Job Scheduler, o Schedulatore di attività: si tratta di un applicativo che consente

Dettagli

Configurazione modalità autenticazione utenti sui firewall D-Link Serie NetDefend (DFL-200, DFL-700, DFL-1100)

Configurazione modalità autenticazione utenti sui firewall D-Link Serie NetDefend (DFL-200, DFL-700, DFL-1100) Configurazione modalità autenticazione utenti sui firewall D-Link Serie NetDefend (DFL-200, DFL-700, DFL-1100) Pagina 1 di 10 Per abilitare la modalità di autenticazione degli utenti occorre, prima di

Dettagli

Manuale Intesa. Guida all apertura di un ticket di assistenza online

Manuale Intesa. Guida all apertura di un ticket di assistenza online Manuale Intesa Guida all apertura di un ticket di assistenza online 1 Indice Manuale Intesa L applicativo IBM - Intesa... 3 Accesso all applicativo... 3 Request Management Creare una nuova Request... 4

Dettagli

Administering Windows Server 2012 (MOC 20411)

Administering Windows Server 2012 (MOC 20411) Administering Windows Server 2012 (MOC 20411) Durata Il corso dura 4,5 giorni. Scopo Questo è un corso ufficiale Microsoft che prevede un docente approvato d Microsoft ed il manuale ufficiale Microsoft

Dettagli

Architetture software

Architetture software Sistemi Distribuiti Architetture software 1 Sistemi distribuiti: Architetture software Il software di gestione di un sistema distribuito ha funzionalità analoghe ad un sistema operativo Gestione delle

Dettagli

SATA HDD Docking Station Manuale Istruzioni

SATA HDD Docking Station Manuale Istruzioni SATA HDD Docking Station Manuale Istruzioni Importante Prima di connettere la Docking Station installare i Drivers contenuti nel CD nella cartella Backup-Software. Avvertenze ONE TOUCH BACKUP (OTB) Manuale

Dettagli

Replica di Active Directory. Orazio Battaglia

Replica di Active Directory. Orazio Battaglia Orazio Battaglia Active Directory è una base di dati distribuita che modella il mondo reale della organizzazione. Definisce gli utenti, i computer le unità organizzative che costituiscono l organizzazione.

Dettagli

Plugin Single Sign-On

Plugin Single Sign-On NEXT-GEN USG Plugin Single Sign-On Configurazione Agent SSO su AD Verificare di avere l ultima release del client SSO installato su Windows Server. AL momento di redigere la guida la più recente è la 1.0.3

Dettagli

Act: : un caso di gestione della conoscenza di processo. Tiziano Bertagna Responsabile SOX Office, RAS Group

Act: : un caso di gestione della conoscenza di processo. Tiziano Bertagna Responsabile SOX Office, RAS Group La conformità Sarbanes-Oxley Act: : un caso di gestione della conoscenza di processo Tiziano Bertagna Responsabile SOX Office, RAS Group Ras e il Sarbanes Oxley Act Il Gruppo Ras fa parte del Gruppo Allianz,

Dettagli

Requisiti per la Configurazione Internet

Requisiti per la Configurazione Internet Requisiti per la Configurazione Internet Per connettere l Access Point all AP Manager, sarà necessario utilizzare i successivi parametri per configurare le impostazioni TCP/IP del computer: Indirizzo IP:

Dettagli

CAMBIO DATI PERSONALI - Italy

CAMBIO DATI PERSONALI - Italy CAMBIO DATI PERSONALI - Italy Istruzioni Per La Compilazione Del Modulo / Instructions: : Questo modulo è utilizzato per modificare i dati personali. ATTENZIONE! Si prega di compilare esclusivamente la

Dettagli