Viewing 10 posts - 1 through 10 (of 10 total)
@awood02:
That works perfectly thanks - I knew it had to be something simple like that case statement - ?I think I had just been staring at it for too long.
Jeff...
September 28, 2009 at 3:46 am
steveb (8/12/2008)
DECLARE @i int
DECLARE @String varchar(100)
SET @string ='Starsky & Hutch Ltd.'
SET @i = (SELECT PATINDEX('%[^a-z^0-9 ]%',...
August 12, 2008 at 10:57 am
Vijaya Krishna (6/27/2008)
Hi are you sure its an issue with order by clause? why dont you remove order by and try the query.
Hi,
I have done this - the issue is...
June 28, 2008 at 2:50 am
View definition as requested:
SELECT RTRIM(ISNULL(Pers_FirstName, '')) + ' ' + RTRIM(ISNULL(Pers_LastName, '')) AS Pers_FullName
, Capt_Order AS Comm_PrioritySorted
, RTRIM(ISNULL(Pers_PhoneCountryCode, '')) + ' ' + RTRIM(ISNULL(Pers_PhoneAreaCode, '')) +...
June 27, 2008 at 10:28 am
I didnt mention is specifically in my first post, but all 150+ other users are working fine - it is only this one user being affected. Dont know if that...
June 27, 2008 at 10:19 am
noeld (6/27/2008)
June 27, 2008 at 10:18 am
steveb (6/27/2008)
Is this query passed as dynamic sql?
Not as far as I know - any way I can be certain? (Sorry, amateur here)
June 27, 2008 at 10:17 am
Wow guys thanks so much for everyones help.
In regards to the questions around get_next_CRM_ID, I dont really have a level of skills that would make me feel comfortable bypassing and/or...
December 21, 2007 at 12:21 pm
Matt Miller (12/17/2007)
Tell me - what does get_next_CRM_ID do?
Basically it gets the current valid ID from a tracking table, then updates the table with the current value +1 ready for...
December 17, 2007 at 11:24 am
Jason Selburg (12/17/2007)
What does eware_get_identity_id do?Can this be turned into a function?
Basically it is a proprietary SP provided by a SQL based web application for the purpose of generating...
December 17, 2007 at 10:47 am
Viewing 10 posts - 1 through 10 (of 10 total)