Domande taggate «sql-server-2008-r2»

SQL Server 2008 R2 (versione build principale 10.50.xxxx). Taggare anche con sql-server.









2
COME usa l'indice, CHARINDEX no?
Questa domanda è collegata alla mia vecchia domanda . La query di seguito impiegava da 10 a 15 secondi per l'esecuzione: SELECT [customer].[Customer name],[customer].[Sl_No],[customer].[Id] FROM [company].dbo.[customer] WHERE (Charindex('123456789',CAST([company].dbo.[customer].[Phone no] AS VARCHAR(MAX)))>0) In alcuni articoli ho visto che l'utilizzo CASTe CHARINDEXnon trarrà beneficio dall'indicizzazione. Ci sono anche alcuni articoli che affermano …

4
Unire la dichiarazione deadlock stesso
Ho la seguente procedura (SQL Server 2008 R2): create procedure usp_SaveCompanyUserData @companyId bigint, @userId bigint, @dataTable tt_CoUserdata readonly as begin set nocount, xact_abort on; merge CompanyUser with (holdlock) as r using ( select @companyId as CompanyId, @userId as UserId, MyKey, MyValue from @dataTable) as newData on r.CompanyId = newData.CompanyId and …





3
ORDINE Gerarchico Albero Genitore-Figlio
Devo seguire i dati in SQL Server 2008 R2. SQLFiddle Schema: CREATE TABLE [dbo]. [ICFilters] ( [ICFilterID] [int] IDENTITY (1,1) NOT NULL, [ParentID] [int] NOT NULL DEFAULT 0, [FilterDesc] [varchar] (50) NOT NULL, [Attivo] [tinyint] NOT NULL DEFAULT 1, VINCITORE [PK_ICFilters] CHIAVE PRIMARIA CLUSTERATA ([ICFilterID] ASC) CON PAD_INDEX = OFF, …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.