Viewing 15 posts - 1 through 15 (of 19 total)
Yes, it is a cluster index scan of PK_Tab2.
The DDL of the two tables:
CREATE TABLE [Tab1]
(
[ClientContextID] INT IDENTITY (1, 1)NOT NULL,
[ClientID]...
October 29, 2012 at 6:01 am
In fact, I only need to script out the users, database roles and the mapping between users and logins.
December 14, 2011 at 7:43 am
Sorry, for putting wrong sample data. The data should be between 1 and 31 August.
October 5, 2011 at 12:23 am
It is a nice solution.
Thank you,
ioani
October 24, 2010 at 11:53 pm
I have following tables:
CREATE TABLE Item
(
ItemID INT,
Name VARCHAR(60) ,
CategoryID TINYINT,
Subcategory
)
CategoryID from Item is a foreign key to...
October 22, 2010 at 8:02 am
The solution I found for the problem:
-- Input data--
IF OBJECT_ID('#Params') IS NOT NULL
DROP TABLE #Params
CREATE TABLE #Params
(
ParameterID NVARCHAR(8) NOT NULL,
ParameterValue SQL_VARIANT NOT...
September 7, 2010 at 11:57 pm
Sorry, I have a little error in may sample data. P5 should have only one '20100803' ParameterTimestamp value. The ParameterID should have distinct ParameterTimestamp (the ParameterID and ParamterTimestamp form the...
September 7, 2010 at 12:20 am
Thanks Mike01
You have answered my question.
September 2, 2010 at 2:41 am
I have a table that map the tables to be joined to the tables where the result of the join is put in:
----------------------------------------------
TableToJoin TableResult...
January 13, 2010 at 2:31 am
Viewing 15 posts - 1 through 15 (of 19 total)