Viewing 15 posts - 241 through 255 (of 267 total)
I've fixed this issue by setting Protection level to DontSaveSensitive on ALL Packages
Then re-deploying
November 5, 2015 at 2:45 am
Hi
Thanks for the replies
Basically, MDF, LDF and TempDB are all on the same disk, on the same drive (E)
I am aware this is not optimal and I am going to...
November 5, 2015 at 2:42 am
Thanks for the response Gianluca
In this instance, I need to know the code that causes the issue
Is there a way of establishing the impact of each component part of code...
November 3, 2015 at 6:07 am
Thanks, a clustered index worked a little quicker although not as fast as I would expect
I do have a number of tables that are much larger and structured in a...
October 16, 2015 at 3:26 am
Hi
Just realised there are no indexes on this table so this is what I have:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[E_DIM_POLICY_HOLDER](
[POLICY_HOLDER_BKEY] [varchar](255) NULL,
[POLICY_HOLDER_NAME] [varchar](255) NULL,
[POLICY_HOLDER_SHORTNAME] [char](255) NULL,
[POLICY_HOLDER_TYPE] [varchar](255)...
October 15, 2015 at 6:10 am
Ah, looks like POLICY_TRANSACTION_BKEY wasn't unique
This table now has an identity surrogate key on it
Using that worked perfectly
Thanks
October 14, 2015 at 8:19 am
ok, so I am very nearly there using this:
SELECT TOP (0) IDENTITY(int,1 ,1) as ID, POLICY_TRANSACTION_BKEY
INTO #TEMP
FROM [F_POLICY_TRANSACTION]
-- Create a clustered index for efficiency
CREATE CLUSTERED INDEX TEMP__CL ON #TEMP (...
October 14, 2015 at 2:53 am
Thanks
That's runs through a lot quicker - less than a minute!
Interested to know why though
Why would the introduction of a temp table (with a join) for comparison run though faster...
October 13, 2015 at 9:33 am
Thanks Martin, I will give this a go
Damian.
September 22, 2015 at 7:05 am
So, in this instance, create 2 versions of the product Dim (say DimProduct and DimProductHistory)
DimProduct would really be SCD1 and be referenced by my Fact
DimProductHistory would be SCD2 and used...
September 22, 2015 at 2:30 am
Thanks for the response
Profiler doesn't quite give the answer
sys.dm_exec_requests for the session_id is useful
If I look at the start and end offset (then divide by 2 to get characters), it's...
September 15, 2015 at 3:06 am
Thanks Wayne
Exactly what I needed
September 8, 2015 at 3:04 am
Thanks
I've used the post deployment source and destination method
That works well
Thanks
Damian.
September 7, 2015 at 3:34 am
Viewing 15 posts - 241 through 255 (of 267 total)