Viewing 15 posts - 1 through 15 (of 15 total)
Great work Grant, thanks for the response. I suspected as such, but didn't have the nous to test it myself the way you have. Thanks again.
February 13, 2014 at 9:42 am
Wow, thanks BrickPack, that's really useful!
Unfortunately, I'm attempting to get some Business Intelligence folk (non-developers) to create and email reports to themselves using Report Builder. Looks like it's a problem...
April 5, 2013 at 1:34 am
Hi,
I'm having the same issue I'm afraid. All I see is a "Message Clipped" message in gmail, and the mhtml is only 13KB so I wouldn't expect it to...
April 4, 2013 at 4:58 am
Thanks Padraig, that worked for me too.
February 22, 2013 at 2:37 am
Elliott W (9/14/2009)
September 15, 2009 at 2:02 am
This any better?
select
case when month(@date) > 8 then convert(varchar,year(@date))
else convert(varchar,year(@date) - 1)
end
+ '-08-01'
April 11, 2006 at 8:46 am
That's the most pointless QOD so far. This guy NECROSSOMUS really does produce some rubbish questions..
December 17, 2004 at 2:23 am
Sorted it now, the standard template was rubbish.
October 27, 2004 at 8:47 am
Thanks Brian, was looking for a cheeky way out, but it's not to be..
August 12, 2004 at 8:54 am
Is there any way or refreshing the sysdepends table, short of recompiling every stored procedure?
Does anyone use the dependencies to determine where a stored procedure is called from, or is...
August 12, 2004 at 8:28 am
Thanks folks, I like the look of COLUMNPROPERTY. I'll give that a go..
Cheers
June 25, 2004 at 2:29 am
Got it working. Used a nvarchar, and an N before the string to identify it as unicode.
Cheers
October 16, 2003 at 9:06 am
It's along the lines of
if update(refno)
begin
select @before=convert(varchar(255),refno) from deleted
select @after=convert(varchar(255),refno) from inserted
exec WriteToCal @User,refno,@Before,@After,@Refno,@Surname, @Dob
end
This code is then repeated for several different fields. I obviously need to loop...
August 1, 2003 at 9:53 am
I was after a char(13) after all.
In the end I used
PATINDEX ('%' + char(13) + '%',@SPText)
and it produced the results I expected.
Thanks for all the help folks!
March 28, 2003 at 9:36 am
Viewing 15 posts - 1 through 15 (of 15 total)