Viewing 15 posts - 496 through 510 (of 1,170 total)
Question is good, but why would someone use a join with different collations?
July 23, 2014 at 9:13 am
Jay Paolucci-371454 (7/22/2014)
select [Measures].[Is Exited] on 0,
([Facility].[Close...
July 23, 2014 at 3:53 am
Post your query, so someone may help you easier.
July 22, 2014 at 1:49 pm
cmoy (7/20/2014)
July 21, 2014 at 12:59 am
Jeff Moden (7/16/2014)
Igor Micev (7/14/2014)
--Extend this index to make it coverable for the query:CREATE UNIQUE NONCLUSTERED INDEX [UIX_did_uid_sid] ON [Dim].[UserDevice]
(
[DeviceID] ASC,
[UserID] ASC,
[SubscriberID] ASC
)
INCLUDE(
Locale,[LastUsedDate]
)
--Create this index
CREATE UNIQUE NONCLUSTERED INDEX [UIX_NCSTransaction_IDs] ON...
July 16, 2014 at 3:22 pm
Design has always been interesting.
My suggestion is to use integer primary keys with identity property.
Example:
create table dbo.HouseTypes(
Id int identity(1,1),
[Description] varchar(500)
--add more columns by require
)
alter table HouseTypes
add constraint [PK_HouseTypes] primary key(Id)
--create...
July 16, 2014 at 2:02 pm
Igor Micev (7/15/2014)
New Born DBA (7/15/2014)
Keep an eye on a good maintenance as well: Statistics update, control of fragmentation, low wait stats and etc...
How often you think I should update...
July 15, 2014 at 11:15 am
New Born DBA (7/15/2014)
Keep an eye on a good maintenance as well: Statistics update, control of fragmentation, low wait stats and etc...
How often you think I should update statistics? Do...
July 15, 2014 at 11:11 am
New Born DBA (7/15/2014)
It seems that you have a clustered index on B270.C1. Do you? you didn't post the indexes and tables definitions.
You could probably reduce the logical reads by...
July 15, 2014 at 9:43 am
GilaMonster (7/9/2014)
Jack Corbett (7/9/2014)
July 15, 2014 at 7:35 am
New Born DBA (7/14/2014)
Igor Micev (7/14/2014)
We don't know what indexes...
July 15, 2014 at 3:09 am
Include the Actual Execution Plan for the query and find the most costly node? Did you do that for the query?
We don't know what indexes you have added, and what...
July 14, 2014 at 2:43 pm
--Extend this index to make it coverable for the query:
CREATE UNIQUE NONCLUSTERED INDEX [UIX_did_uid_sid] ON [Dim].[UserDevice]
(
[DeviceID] ASC,
[UserID] ASC,
[SubscriberID] ASC
)
INCLUDE(
Locale,[LastUsedDate]
)
--Create this index
CREATE UNIQUE NONCLUSTERED INDEX [UIX_NCSTransaction_IDs] ON [Ext].[NCSTransaction]
(
[SubscriberID],[UserID],[DeviceID]
)
INCLUDE ([Locale],location,[TransactionStartDateTime])
If the "select"...
July 14, 2014 at 1:17 pm
97% of the total query cost goes for Table scan and Sort, in the most right-upper part of the execution plan.
Can you additionally post the tables structure...
July 14, 2014 at 12:52 pm
Check the account under which the job is running and check its permissions. I'd had cases when it had been an issue.
July 14, 2014 at 12:43 pm
Viewing 15 posts - 496 through 510 (of 1,170 total)