Viewing 14 posts - 31 through 44 (of 44 total)
Hi,
Thanks both for your replies and help.
Scott, That's brilliant, and has solved the puzzle. I applied it to my work example and removed this bit:
ROW_NUMBER() over(order by AccountNumber) as...
June 14, 2016 at 2:47 pm
This post just saved the day for me as well.
I had 3 scripts of third party code that I was combining into a single sproc. In the original code there...
April 5, 2016 at 7:12 am
Hi all,
I've been experiencing this problem as well recently. It was driving me mad until I found this thread!
Thanks SQLDuck for the solution that worked for me
Lins
January 14, 2016 at 1:59 am
Hi Orlando,
Thanks so much. That works perfectly!
I had't thought about it in those terms at all, and it makes sense to.
Cheers loads for such a speedy solution.
Lins
April 23, 2015 at 5:19 am
Not sure if it's weird to reply to my own thread(!) but this does seem to work loads better:
select year(fh.transaction_date) as [year]
, month(fh.transaction_date) as [month]
, sum(amount) as total
, floor(datediff(dd,c.date_of_birth,fh.transaction_date)/365.23076923074) as...
September 22, 2014 at 6:34 am
After trying a test OpenQuery on a table and seeing how slowly it ran, that's definitely my plan!
I think I'll have a daily rebuild and then build packages to run...
July 16, 2014 at 5:05 am
yes, that makes sense. I can visualise how that could work and it strikes me that I could use the SSIS packages for an initial load and then use OPENQUERY...
July 15, 2014 at 9:15 am
Hi Phil
I just had a look at some of the key ones and they do yes.
The PL/SQL datatype is datetime2, but it looks as thought the time isn't captured...
thanks
Lins
July 15, 2014 at 8:16 am
Hi Koen,
That works! Thanks loads. After a few days of wrestling with that it's great to see that agent job status finally say 'Success'.
I spoke to my boss about this...
July 10, 2014 at 2:33 am
Hi all,
Thanks for your suggestions, they've been really helpful.
I've been making some progress, but SQL Agent still won't run the job - albeit with a different error message now.
I successfully...
July 9, 2014 at 9:52 am
Koen Verbeeck (7/8/2014)
Hi, Thank you for the response. I've read the article and had a look at creating a package...
July 8, 2014 at 7:38 am
Thanks for the response. SSIS it is then!
cheers
lins
April 1, 2014 at 5:10 am
Hi,
It works! I was just rebuilding it to put together the screenshot for you.
I used the expression as below (using [] around the table name which SSIS has now dropped)
REPLACE(PRECIS,"~","")
and...
July 4, 2013 at 5:05 am
Hi Phil, Thanks for the speedy response
i have rewritten the expression as follows:
replace([precis],"~","")
but am still seeing the error msg pasted below.
There seems to be a problem with the input column...
July 4, 2013 at 4:40 am
Viewing 14 posts - 31 through 44 (of 44 total)