Viewing 15 posts - 2,266 through 2,280 (of 6,677 total)
Without seeing everything that occurred - it would be almost impossible to determine why the process failed the first/second time. With that said - it is possible that another tlog...
June 15, 2019 at 4:54 pm
The security context is determine by the owner of the job - or the Run As for each step. You can setup a proxy to run specific types of job...
June 15, 2019 at 3:30 pm
This is a case where I would use C# in a script task to set variables - instead of trying to build it as an SSIS expression. The C# code...
June 15, 2019 at 3:14 pm
Do you think all the vendor application or application would support the new service packs? I guess the application would not break with service packs right?
That is...
June 13, 2019 at 5:27 pm
You could also do this:
Declare @firstOfYear date = dateadd(year, datediff(year, 0, getdate()), 0);
Select Case PeriodID
When...
June 12, 2019 at 6:22 pm
Yes I just created a sp as an example. If I keep views, I would need to put the DB1_QA and DB1_TEST onto a separate SQL Server. Yes only...
June 12, 2019 at 6:04 pm
Sorry - the wildcards should be '*' instead...but you can also try a few other methods:
=Lookup(IIf(Fields!RunStatus.Value.Contains("(Failed)") , "Failed", Fields!RunStatus.Value), Fields!Status.Value, Fields!Colour.Value, "StatusColour")
=Lookup(IIf(InStr(Fields!RunStatus.Value, "(Failed)") > 0, "Failed", Fields!RunStatus.Value), Fields!Status.Value, Fields!Colour.Value, "StatusColour")
=Lookup(IIf(Fields!RunStatus.Value.IndexOf("(Failed)")...
June 8, 2019 at 3:59 pm
The performance is going to be based on the query performance - and that will be dependent on the indexes available and how the query is written.
I would not say...
June 8, 2019 at 3:49 pm
Instead of moving the log file - why don't you add a secondary log file in the new location. Once the migration process is completed you can then remove the...
June 8, 2019 at 3:45 pm
What does that mean?
June 7, 2019 at 7:09 pm
Something like this?
=Lookup(IIf(Fields!RunStatus.Value Like "%(Failed)%", "Failed", Fields!RunStatus.Value), Fields!Status.Value, Fields!Colour.Value, "StatusColour")
June 7, 2019 at 5:07 pm
Great Idea! Thanks Phil. This would work if they were loading a full set of data each day, but unfortunately its an incremental load, meaning 24 hr of data...
June 6, 2019 at 6:59 pm
Another option would be to use 2 sources in the data flow - add a merge or merge join and output the results to the destination. Each input source to...
June 5, 2019 at 6:18 pm
Alter Function dbo.WorkingMonthDates (
@inputDate date)
Returns Table With schemabinding
As
Return
...
June 2, 2019 at 5:23 pm
Viewing 15 posts - 2,266 through 2,280 (of 6,677 total)