Viewing 15 posts - 2,521 through 2,535 (of 7,429 total)
quote:
quote:
I suggest personally use the reusable SP as base concept and create new...
September 16, 2003 at 6:33 pm
quote:
Well I'll step in a little late here...I would go with the single phone table but I wouldn't bother with the tbl_from...
September 16, 2003 at 6:29 pm
quote:
I am wondering why nobody mentioned UDF's. Since we can get a returned value as a table or scalar value .....
September 16, 2003 at 12:25 pm
quote:
Antares,You're right, I missed this point... It really is interesting, because simple switching of the two values makes the query run OK...
September 16, 2003 at 12:13 pm
quote:
quote:
quote:
I am totally fascinated by this...
September 16, 2003 at 12:10 pm
quote:
I'm all for empowering the user. As long as it is in a controlled environment.
Hehehe,...
September 16, 2003 at 12:08 pm
quote:
Antares,thanks, that brings some light into the problem, but anyway - LTRIM is in the ELSE part, so while you have WHEN...
September 16, 2003 at 8:51 am
quote:
It's also in BOL. Search for "cross-tab reports".Jeremy
PS Antares - you must had told Bill G how to do it.
September 16, 2003 at 8:44 am
Performance and no this is not the way it is, a lot of junk over the years got added after initially built and I know it is not up to...
September 16, 2003 at 7:55 am
quote:
I am totally fascinated by this solution http://www.stephenforte.net/owdasblog/PermaLink.aspx?guid=2b0532fc-4318-4ac0-a405-15d6d813eeb8Frank
So this method has a name. And I...
September 16, 2003 at 7:50 am
quote:
Configure your server for Openquery1) sp_addlinkedserver SERVER_NAME
2) EXEC sp_serveroption 'SERVER_NAME', 'data_access', 'true'
Then run:
3) select col2, col1 from openquery(SERVER_NAME, 'exec DB_NAME..SelectStuff')
September 16, 2003 at 7:43 am
It is the whole implicit explicit thing getting you.
from BOL ltrim
quote:
Is an expression of character or binary data. character_expression can be a...
September 16, 2003 at 7:34 am
Try this
select ChkID,
max(case fldid when 1 then value else null end) as Fld1,
max(case fldid when 2 then value else null end) as Fld2,
max(case fldid when 3 then value...
September 16, 2003 at 7:21 am
Thanks for the input,
Frank for Personnel they have the option of
Work Phone (Their direct number)
Pager (Umbilical cords for potential emergencies and whatever contacts)
PIN (Pager related)
Cell Phone (Similar to a pager...
September 16, 2003 at 7:13 am
It is common in the MS books to see them suggest using Constraints over FKeys where you can (sorry loaned my books out or I would give a spocific quote0>...
September 16, 2003 at 6:33 am
Viewing 15 posts - 2,521 through 2,535 (of 7,429 total)