Viewing 15 posts - 8,371 through 8,385 (of 13,876 total)
It is now in a zig-zag way.
What do you mean by this? Formatting, or logic, or something else?
June 3, 2015 at 8:57 am
Pack_Star (6/3/2015)
Hi Phil,Absolutely perfect!!!
I have been struggling with this for a couple of days.
Many Thanks
Nigel
That's too long! Post here straight after day 1 in future 🙂
June 3, 2015 at 7:08 am
spaghettidba (6/3/2015)
Duplicate post. Replies here please: http://www.sqlservercentral.com/Forums/FindPost1691082.aspx
So sorry. I missed this.
June 3, 2015 at 6:03 am
OK. Here is a hack for you.
with addresses
as (select address = 'Elland **REQUIRES BOOKING IN***'
...
June 3, 2015 at 6:02 am
Pack_Star (6/3/2015)
I have an Address column that I need to Substring. I want to remove part of the string after either, or both of the following characters i.e ','...
June 3, 2015 at 5:32 am
Ozzmodiar (6/2/2015)
There is a very elegant solution to this problem using the...
June 2, 2015 at 1:34 pm
nightowl23 (6/2/2015)
to do master data service, i need configure IIS, however it only prompts error message.such as
HTTP Error 503. The service is unavailable.
That is unlucky.
June 2, 2015 at 7:34 am
P Jones (6/2/2015)
June 2, 2015 at 7:24 am
Alan.B (6/1/2015)
patelxx (6/1/2015)
Hi Phil,Why do I need the word Clustered at the end? I've never seen this before.
cheers
You don't.
When you create a primary key you have the ability...
June 2, 2015 at 12:47 am
If you're looking only for those rows where the 'latest' status is 'bad', something like this should work:
if object_id('tempdb..#GoodBad', 'U') is not null
drop table #GoodBad;
create table #GoodBad
...
June 1, 2015 at 11:34 am
Maybe there's a better way, but this seems to work.
declare @StartTime nvarchar(10) = '12:10';
declare @EndTime nvarchar(10) = '12:30';
declare @Diff time(1) = cast(@EndTime as datetime) - cast(@StartTime as datetime);
select StartTime...
May 31, 2015 at 8:54 am
As far as I know, you cannot use Python in a Script Component, so I think you are limited by that.
May 30, 2015 at 3:47 am
nshockley (5/29/2015)
These packages have been upgraded on our...
May 30, 2015 at 3:46 am
You could do the whole thing (parsing, splitting, outputting one row with multiple columns per @ group) using an asynchronous Script Component, but it would take a fair chunk of...
May 29, 2015 at 6:55 am
Resender (5/29/2015)
I set it to don't savesensitive still seeing the message popup,job itself is not failing
Just to confirm. You changed the package and the project, setting Don't Save Sensitive for...
May 29, 2015 at 6:36 am
Viewing 15 posts - 8,371 through 8,385 (of 13,876 total)