Viewing 15 posts - 736 through 750 (of 13,465 total)
Dts.Events.FireError is what you want.
is your account used by a team of users, and not an individual?
Trivially adapted from part of an answer I posted for you yesterday @4:40pm(less...
December 21, 2016 at 2:07 pm
thakur.bhagat24 (12/20/2016)
But I have one new requirement of order by color what we get using below case.
CASE WHEN (ROW_NUMBER() OVER (ORDER BY [SpecialOfferID]))%2...
December 21, 2016 at 6:24 am
here's a C# code example, change directory to file, and
try
{
string FileName = (string)Dts.Variables["BHCS_InPatient_File"].Value;
...
December 20, 2016 at 2:40 pm
Welsh Corgi (12/20/2016)
There is an issue with the last line of code.Any ideas?
what is the issue? you've been around long enough to know exact errors and a description of the...
December 20, 2016 at 12:11 pm
Welsh Corgi (12/20/2016)
What am I missing?
also a try catch to capture any errors raised you did not expect.
December 20, 2016 at 12:09 pm
December 20, 2016 at 10:45 am
local_net_address is the server itself, don't you mean the client_net_address instead?
--EDIT--
anyway, I don't think IP address for the connector is exposed anywhere in Extended Events. you might get away with...
December 20, 2016 at 10:18 am
right, that of course was one of the places i've been looking, as well as the classic slowest running queries.
this package is extremely simple, it's pure truncate and reload,...
December 20, 2016 at 9:57 am
yrstruly (12/20/2016)
Would you please follow as i have shown vi the link i provided.
I saw the error message; that was what made it clear that the alias for the color...
December 20, 2016 at 9:17 am
weird; via the GUI, i am able to set the background on either the page or the body with no problem, for example.
i don't see the color until it's rendered,...
December 20, 2016 at 9:04 am
color Aliases do not have a spaces in them. LightGreen would be correct.
December 20, 2016 at 8:56 am
anupam.jha (12/20/2016)
I have landed into a scenario where we have around 60 to 70 SSIS packages that would be loading data into the datawarehouse.
Most of the individual SSIS packages...
December 20, 2016 at 8:30 am
you should start a new thread to get a bit better help;
however, here's a decent framework to start with.
the email portion is the easiest part, really.
the only thing you need...
December 20, 2016 at 6:59 am
here's an example of your code.
your example has no where statement. which doesn't make sense to me, you'd want to filter on a table,a nd send if there is data.
i...
December 19, 2016 at 10:46 am
i always insert into a temp table,and then check if exists:
SELECT *
INTO #temp
FROM [AdventureWorks].[Sales].[SpecialOffer]WHERE SomeFilterOrColumn =SomeValue
IF EXISTS(SELECT * FROM temp)
BEGIN
--all the email logic you had previously
--but FORXML select from...
December 19, 2016 at 10:09 am
Viewing 15 posts - 736 through 750 (of 13,465 total)