Viewing 15 posts - 16 through 30 (of 66 total)
Thanks for responding Phil. I think the editor mixed things up quite a bit. It does run, and looks much better when I 'Edit Script'
I will change the script...
August 1, 2018 at 9:34 am
Are you looking for something along the lines of excel's 'copy down'?
This script (SSIS) will copy values of several fields when one field is empty/blank. If could be...
August 4, 2017 at 10:46 am
Since John Doe wants active and inactive cards, I've built on J Livingston SQL's reply:
CREATE TABLE #somedata(
ID
July 31, 2017 at 6:40 am
Here is an example of the structure of the ISNULL in SSIS: ISNULL(ha_charges) || ha_charges == " " || ha_charges == "" ? "0" : ha_charges
which can be...
May 17, 2017 at 7:31 am
January 18, 2017 at 7:28 am
January 18, 2017 at 7:14 am
Found the solution here at SSC from Fraggle back in 4/4/2012:
Actually, I figured it out. The error was more helpful than original thought.
Error: The wrapper was unable to set the...
December 12, 2016 at 11:13 am
I changed the Result Set Name to be 0 and changed the query to be
SELECT SUBSTRING(MAX(InvoiceDate), 1, 2)
FROM ...
December 12, 2016 at 8:36 am
I just tried setting a breakpoint on the Execute SQL task, there is nothing in the locals window...shouldn't the variable be showing up here?
December 9, 2016 at 10:38 am
I remember interviewing at a large chemical plant and noticing that the drives for their brand new Hp-3000 twins were down as I was given a tour of the data...
September 29, 2016 at 12:05 pm
I sometimes see posts that make me wonder if the written text would have been spoken when face to face. And, this applies to most electronic communication, emails, texts,...
September 8, 2016 at 5:58 am
You're right.
If an extract is requested for the date range 2016-09-01 through 2016-09-30 ON 2016-10-01, the data will have 2016 as the [Acct Year] and will end up...
April 22, 2016 at 10:28 am
Thanks, Phil.
[Acct Year] is determined in the T-SQL stored procedure that runs and loads the table being extracted. So that data coming in when this runs today has either 2015...
April 22, 2016 at 9:10 am
with qTally as (
select
n = row_number() over (order by (select null)) - 1
from
(values (1),(1),(1),(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))dt(n)
), EOM13 as (
select
CalendarDate = dateadd(second, -1, dateadd(month,datediff(month,0,getdate()) -...
March 29, 2016 at 7:28 am
Viewing 15 posts - 16 through 30 (of 66 total)