Products table in the Northwind database. Aspnet_regsql-S localhost-U sa-P sa-d Northwind-t Products-dt Note:Disable the cache dependency function for the Products table in the Northwind database. This method enables the cache dependency function for one or more tables in a database. After the cache dependency function is enabled for the database and table, you can find that an AspNet_SqlCacheTablesForChangeNotification table is added to the Northwind database, indicating that the configuration
the Name of the current Language.
Select @ lock_timeout; -- returns the current lock timeout setting for the current session (MS)
Select @ max_connections; -- returns the maximum number of user connections allowed by the SQL Server instance at the same time.
Select @ MAX_PRECISION AS 'max Precision '; -- returns the Precision level used by the decimal and numeric data types.
Select @ SERVERNAME; -- Name of
Source: http://www.cnblogs.com/doosmile/archive/2012/03/16/2400646.html--Connect remote SQL or insert data with OPENROWSET--if it's just temporary access, you can use OPENROWSET directly--query ExampleSELECT * FROM OPENROWSET (' SQLOLEDB ', ' SQL Server name '; ' User name '; ' Password, database name. dbo. Table name)
If you want to query Index Server through SQL Server, you must use the OPENQUERY function. The syntax structure is as follows.
OPENQUERY (pai_server, 'query ')
The linked_server parameter indicates the connection name. The query p
Label:Write in front: This is the first T-SQL query Advanced series article. But the T-SQL query step-up series is far from finished. This topic is advanced and I think it is because this topic requires some advanced knowledge as the basis. If there is any mistake in the article, please do not hesitate to correct me. T
problem Description: high-version SQL backup in low version SQL restore problem (the media cluster is not structurally correct)
Analysis reason: SQL version compatibility issue, SQL Server compatibility level is used for backwa
SQL Server database degraded from high version to low version instance
Because of the widespread use of SQLServer2000, many companies want to use new SQL Server to directly "detach/append" or "Backup/restore" databases and store them in different versions. The problem of ve
"Guide" This article focuses on SQL Server 2000, which describes how to use SQL Server log transfer to implement high availability of a database.
Clustering is an effective solution for achieving high availability, sometimes coun
Enable AD Hoc distributed Queries: ' Show advanced Options ', 1
Reconfigure
' Ad Hoc distributed Queries ', 1
Reconfigure
When you are finished using, close ad Hoc distributed Queries:' Ad Hoc distributed Queries ', 0
Reconfigure
' Show advanced Options ', 0
Reconfigure
Operation:
' SQLOLEDB ' ' SQL Server name ' ' User name ' ' Password '
' SQLOLEDB ' ' S
AD HOC Paging:
It means to request a separate page with the number of pages and the size of the page. Here is an example.
DECLARE @pagesize as int, @pagenum as int;
SET @pagesize = 5;
SET @pagenum = 2;
With Salescte as
(
SELECT row_number ()-qty, Empid) as RowNum,
empid, Mgrid, qty from
dbo. Sales
)
SELECT rownum, Empid, Mgrid, qty from
salescte
WHERE rownum > @pagesize * (@pagenum-1) and
rownum
Description: In the last example, in fact,
groupedSuch as:-The total number of girls and boys receivedSelect Sex,count (*) from Student GROUP by sexOrder of Query statements:Select from where the group by has an order byNote: Where is the filter for the source data. It can only use columns that are referred to in the table following the fromAn aggregate function cannot be used after a where condition, and an error will be made if usedHavingIf you are filtering the result set after grouping, t
Tags: index solution based on keyword har results in SQL Server failure efficiencyProblem: There's a lot of data on both tables. The A1 field in a table needs to be associated with the B table primary key query A1 field stores multiple B table primary keys The format is: Format 1:B1,B2,B3 Format 2:B4 Format 3:b5,b6 Comma-delimited minority This leads to the use o
Before: This is the first T-SQL query advanced seriesArticleBut the advanced series of T-SQL query is far from finished. I think this topic needs some advanced knowledge as the foundation. If there are errors in this article, please do not correct it. The content of this article requires the indexing knowledge as the b
Label: CREATE VIEW View_1--Create a new view name as--functions for building viewsSelectStudent.sno,sname,cno,degree fromStudent join score on student.sno=Score.sno GoSelect* fromView_1wheresno='1'
Select* from
(SelectStudent.sno,sname,cno,degree fromStudent join score on STUDENT.SNO=SCORE.SNO) asTable2 wheresno='101'--define as a temporary table with AS and then query the results from the table.
is also a sub-qu
by the executor (query Executor) through OLE as an interface to the access method (Access Methods). access Method (Access Methods) The access method is to provide a storage structure for your data and indexes, as well as a batch of code to modify the interface through data retrieval or data. It contains all the code that retrieves the data itself without performing an action, which passes the request to the buffer manager. Suppose our SELECT statemen
query speed, the faster(Of course, don't look for an example with only a few hundred records to counter me.).
Let's go further: OK. Now let's take a look at it again. Let's change the SQL statement to see how MSSQL executes this SQL statement?Now remove the index: drop index t_userinfo.index_useridNow open [show statement execution details]: Set showplan_all on
number for the T-SQLSelect @ procid;8. Configure FunctionsSet datefirst 7; -- set the first day of each week, indicating SundaySelect @ datefirst as 'Day of the Week', datepart (dw, getDate () AS 'Today is Week ';Select @ dbts; -- returns the unique timestamp of the current database.Set language 'Italian ';Select @ langId as 'language id'; -- returns the Language ID.Select @ language as 'language name'; -- returns the Name of the current Language.Select @ lock_timeout; -- returns the current lo
Method 1:When the publisher filter condition is NULL, how do you write SQL?1 DECLARE @publishers VARCHAR (50);2 SELECT * FROM dbo. Book WHERE Publishers=isnull (@publishers, publishers)Method 2:DECLARE @cinv varchar (50)SELECT * from inventory where 1=1 and ([email protected] or @cinv is null)Method 3:DECLARE @name VARCHAR (+), @page INT =1SET @name = ' Zhang San 'DECLARE @sql VARCHAR (1000)SET @
letter, and the Q-drive is used as the quorum disk for the cluster. Here is the first disk named Q disk as the quorum disk for the cluster After all configuration is complete sql-cl01 (HSR 50) such as (L SQL log disk, q quorum disk, S SQL data disk) After Sql-cl01 (HSR 50) is set up, we need to do the same iSCSI
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.