Viewing 15 posts - 16 through 30 (of 41 total)
Yes, you can definitely add time to your string in that format.
April 16, 2009 at 5:09 am
Looks to me like your additional filters:
F.DIAG=T.ICDCOD and
T.[Per Se Disabling]='YES'
are having an impact on the results.
April 15, 2009 at 10:41 am
In a case like that I would typically look for a different field that would be sequential to be used as the CLUSTERED INDEX, such as a CreateDate field, and...
April 15, 2009 at 10:04 am
My understading is that these are the same.
April 14, 2009 at 11:00 am
From what I understand, and please correct me if I am wrong, UPDATE FROM is not ANSI standard
So with the MERGE statement introduced in SQL 2008, it is preferred to...
April 14, 2009 at 10:37 am
m.dunster (4/14/2009)
I've worked out how to use Join with Select Statements, but I need to use it with an Update statement.
I've tried:
update jobs
set comm = 0
join customer on jobs.cus_id=customer.cus_id...
April 14, 2009 at 8:40 am
A practical use for using a GUID for a primary key value is when your application needs to generate a primary key value without querying the database, such as for...
April 14, 2009 at 8:13 am
in that case, a couple of options could be:
1. If NULL references are not allowed, meaning you must have 1:M corresponding records in otherhugetable for every record in hugetable,...
April 14, 2009 at 7:08 am
Hi Cliff,
I would like to say that it would be ideal to avoid a loop if at all possible, but without knowing the complexities of your email requirements, I will...
April 13, 2009 at 12:17 pm
I'm not sure if it would help much in this scenario, but you could eliminate some of the bottleneck on the subquery by populating a temp table:
SELECT recid
INTO #tmpDeleteRecId
FROM...
April 13, 2009 at 10:47 am
Does your data contain (or will it potentially contain) hyphenated names? This could pose a problem.
April 13, 2009 at 6:17 am
Could you post the original update command you were issuing which was causing the error?
April 13, 2009 at 6:12 am
Why not create your own udf that contains the LTRIM(RTRIM(value))
functionality and name it something like TrimString()?
April 13, 2009 at 6:09 am
Viewing 15 posts - 16 through 30 (of 41 total)