Introduction Audit is a feature after SQL Server 2008 that tells you "who did what when?" Specifically, auditing an instance of the SQL Server database engine or a separate database involves tracking and documenting events that occur in the database engine. Its bottom-level is based on extended events (Extented event), so its performance and flexibility are relatively good. Audit data can be exported to aud
Label:Next: T-SQL Dynamic Query (3)--Static SQLObjective: There's a lot of talk about dynamic queries, and this article describes some of the ways to use dynamic SQL to solve dynamic queries.Why use Dynamic sql: in many projects, dynamic SQL is widely used and even misused, and in many cases, dynamic
Comparison of functions between Visual Basic for Applications and SQL Server Transact-SQL (ADP)Note that the information in this topic applies only to the Microsoft Access Project (. ADP ).
The following table compares common functions in Microsoft Visual Basic for Applications (VBA) and Microsoft SQL Server Transact-SQL
1. view the database version
Select @ version
2. view the operating system parameters of the machine where the database is locatedExec master .. xp_msver
3. view database startup parametersSp_configure
4. view the database startup timeSelect convert (varchar (30), login_time, 120) from Master .. sysprocesses where spid = 1
View database server name and Instance namePrint 'server name ...... + convert (varchar (30), @ servername)Print 'instance ......: '+ convert (varchar (30), @ servicename)5.
1. View the version of the database
SELECT @ @version
2. View the machine operating system parameters of the database
EXEC master.. xp_msver
3. View Database Startup Parameters
sp_configure
4. View Database Startup time
Select CONVERT (varchar, login_time,120) from master. sysprocesses where spid=1
To view the database server name and instance name
print ' Server Name ... ...: ' + CONVERT (varchar (), @ @SERVERNAME), ".
print ' Instance ....: ' + CONVERT (varchar), @ @SERVICENAME. @)., d..
5
such as unloader to export data to a file. However, we can use SQL * Plus's select and format data to output to a file:Set echo off Newpage 0 space 0 pagesize 0 feed off head off trimspool onSpool oradata.txtSelect col1 | ',' | col2 | ',' | col3From tab1Where col2 = 'xyz ';Spool offYou can also use utl_file PL/SQL package for processing:Rem remember to update initsid. ora, utl_file_dir = 'C:/oradata 'Param
Tags: migrating local SQL Server database to Windows Azure SQL database via SSMs toolMigrate local SQL Server database to Windows Azure SQL database via the SSMs toolMicrosoft's product updates are getting faster, almost every year there are product updates, today, we mainly introduce how to migrate the local
Tags: Microsoft CTI object Complex problem: Lis use parameter BinThis article belongs to theUnderstand the mysteries of performance-slow in applications, fast in SSMS"seriesNext: Understanding the Mysteries of performance-application slow, SSMs fast (5)--case: How to deal with parameter sniffing We put aside the argument sniffing topic and went back to the original point of concern in this series: Why is the statement slow in the application, but fast in ssms? So far, it's all about the stored p
Chapter 1 Basic SQL statements (Basic SQL statements) and Chapter 1 Basic SQL statements
1. query the database system time, which is usually displayed in the default format of the server (depending on the character set of the database );Note: dual is a virtual table in the database and belongs to the Administrator sys user, but all users can access it. It has no
Connect to the SQL server lock mechanism (I)-Overview (lock type and scope)
Ii. Complete lock compatibility matrix (see)
Correct Code Description: see.
III. The following table lists the resources that can be locked by the database engine.
Name
Resources
Abbreviations
Encoding
Specifies the method to describe the resource when a lock is presented.
Description
Data row
RID
RID
9
File No.: Page No.: Slot
Java. SQL. SQLException: ORA-00604: recursive SQL Level 1 error, recursive SQL Level 1 error
The following error is reported in the background:
Caused by: java. SQL. SQLException: ORA-00604: recursive SQL Level 1 error
ORA-01000: exceeds the maximum number of opened cursors
Tags: User bar implicit conversion first location assignment set size getWhat is a cursor The result set, which is the collection of all row data returned after the select query. Cursors are a mechanism for working with result sets, which can locate a row in the result set, read or write multiple data, or move the cursor to navigate to the rows you want to manipulate the data. Generally complex stored procedures, there will be the appearance of cursors, his main use is:
Navigates to a
Original: SQL Drip 38-sql Server 2008 and SQL Server R2 options for exporting data are slightly differentDescriptionpreviously, to export data from a table as a script, only with stored procedures. A new feature is now added in SQL Server 2008, which supports exporting data from tables to scripts in addition to the def
Sharing the SQL area, private SQL area, and game Benchmark 1. Sharing the SQL area is another way to name the handle of the cursor object in Librarycace and the data of the Child heap. Ii. Concept of private SQL zone is stored in PGA in dedicated server mode. (Review the concept of PGA: PGA is allocated on the server s
above code, V_jobnum is the job number that the job returns (the task number), followed by the start and end times, so the salary_upt process will perform a salary_upt program every 30 days to achieve the purpose of periodic updates.
If you want to prevent the job from continuing, you can execute the following command:
Dbms_job.remove (: V_jobnum);
The use of Dbms_job packages to implement task scheduling is easy to integrate with applications, and is sometimes easier to
Label:Originally using SQL Server 2000 databases, the DTS tool makes it easy to import and export data between SQL Server and DBF files, and now, after installing SQL Server2005, discovers the SQL Server Import Export Wizard that it provides The data sources in the database are not rich in the original, and the DBF fil
SQL is required. Take notes. Chapter 2 describes advanced SQL features. SQL is required.22.1 Constraints
To correctly design a relational database, you need to ensure that only valid data is inserted in the table. For example, if the Orders table stores order information and the OrderItems table stores order details, ensure that any order IDs referenced in Orderi
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.