Viewing 15 posts - 721 through 735 (of 13,445 total)
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
Reconsider the tool to use for your project;
This post started out with "how to include an image in sp_send_dbmail".
certainly possible, but is the right tool for your specific question...
December 19, 2016 at 9:58 am
I tend do do commands like this in a script rather than the GUI;
my example script would look something like this:
CREATE ROLE DevelopersReadWrite;
GRANT VIEW...
December 16, 2016 at 8:12 pm
DataAnalyst011 (12/16/2016)
December 16, 2016 at 8:03 pm
i would handle the upsert like this:
also, i think you granted INSERT to public, but you did not grant UPDATE or SELECT to public, so that is a point of...
December 16, 2016 at 3:06 pm
a case statement is going to lock you into one datatype, so i would simply use money(= Decimal18,4)
and do the math in a case statement;
wouldn't something like this do the...
December 16, 2016 at 2:57 pm
Viewing 15 posts - 721 through 735 (of 13,445 total)