Viewing 15 posts - 616 through 630 (of 1,170 total)
Hi
The total space of
CREATE INDEX IX_1
ON 123 (A)
INCLUDE (B,C,D)
and
CREATE INDEX IX_2
ON 123 (A)
INCLUDE (E,F,G,H)
will take more space than
CREATE INDEX IX_1
ON 123 (A)
INCLUDE (B,C,D,E,F,G,H)
The selectivity of each index is same. You...
February 25, 2014 at 4:29 pm
Seems the err msg is simple.
Conversion failed because the data value overflowed the specified type
Is the source column the same type as the destination column?
February 25, 2014 at 3:57 pm
The change of a unique to non-unique index means changing the business logic, so make a double check if you're going with this.
February 25, 2014 at 3:51 pm
The active directory group(s) to which a sql server login belongs to in the OS, is maybe (obviously from your query) not added in sql server, so how could you...
February 25, 2014 at 11:38 am
What if the login belongs to multiple windows groups?
I think this is yours sys-admin question.
Regards,
Igor
February 25, 2014 at 11:03 am
What about if you can put a subset-rows from PART_LIST into a temp table and make a LEFT OUTER JOIN with it. You can put a necessary index on the...
February 25, 2014 at 5:33 am
Search for "could not load file or assembly microsoft sqlserver sqm version" and you'll find some useful links like this one hopefully:
February 25, 2014 at 5:20 am
george sibbald (2/23/2014)
TomThomson (2/21/2014)
February 23, 2014 at 3:18 pm
Didn't know that, :^)
Thanks, interesting question anyway.
February 23, 2014 at 2:42 am
Hm, interesting.
Did you fulfill the full-text index?
The columns should have the same "Language for Word Breaker".
February 22, 2014 at 5:23 pm
Hi,
Try this
select t1.Transport,t2.[Order],t2.Size,t1.Service,
(select tx.Weight from Table1 tx where tx.type = 'Car') as Car,
(select tx.Weight from Table1 tx where tx.type = 'Bus') as Bus,
(select tx.Weight from Table1 tx where tx.type =...
February 22, 2014 at 4:49 pm
Hi,
This is one simple solution (didn't count on the performance):
create table CustInfo
(UniqId int identity(1,1),
UniqClient int,
PhoneNumber varchar(20),
EmailWeb varchar(50)
)
insert into CustInfo (UniqClient,PhoneNumber,EmailWeb)
values(66,'4164445555',''),(66,'','fstest1@test.com')
select top(1) t.UniqClient,
(select...
February 22, 2014 at 4:17 pm
The question is trivial.
To ensure myself, I read this reference http://technet.microsoft.com/en-us/library/ms186388.aspx and I didn't see any correlation of the model's read_only property to the same for the restoring database. I...
February 21, 2014 at 5:38 am
Interesting question!
Only the SQL Server reserved keywords cannot be used directly as a database name, anything else can - http://technet.microsoft.com/en-us/library/ms189822.aspx
You can use [] :-), anyway.
Thanks
February 20, 2014 at 2:44 am
What about trying by using a ";" as the statement terminator?
February 19, 2014 at 9:13 am
Viewing 15 posts - 616 through 630 (of 1,170 total)