Viewing 6 posts - 16 through 21 (of 21 total)
There is not a platform called x32, there are x86 (32-bit) and x64 (64-bit). If you are installing local workstations on 32 bit platforms, use the x86 products. ...
November 29, 2010 at 10:14 am
You could try to execute the dynamic statement with FOR XML and handle it in an XML transformation. That way you're dealing with an XML document rather than a...
November 29, 2010 at 10:06 am
Yes, you will have a scalar computation versus a datatype conversion - slightly more expensive. This was more for load functions where rounding down to the nearest hour or...
November 17, 2010 at 6:04 am
skcadavre (8/19/2010)
Off the top of my head: -
DECLARE @caps VARCHAR(24),
@lower VARCHAR(25),
...
August 19, 2010 at 4:26 pm
tommyh (8/19/2010)
insert @tbl values(ascii('^'), 3)
Im not sure i would classify that as being benign. Since that char combined with another can create a single...
August 19, 2010 at 9:35 am
/* Get count of contact by app */
with ContactsByApp as (
select ApplNbr , count(*) as ContactCount
from Contacts
group by ApplNbr
)
/* get count of applications by contact count */
select
...
August 16, 2010 at 6:03 pm
Viewing 6 posts - 16 through 21 (of 21 total)