Viewing 15 posts - 901 through 915 (of 925 total)
Thanks Gail. I suspected that, and thought using a CAST and CONVERT wouldn't be too helpfull either.
If a selection is required on the date part of a datetime field what...
June 9, 2009 at 3:44 am
Yes, I hadn't thought about comparing just the date (without the time) - obvious now that someone else points it out! Still an ugly way of doing it though.
June 9, 2009 at 3:12 am
I've had to butcher it a little to remove any company-sensitive details:
CREATE PROC BrainDonor_Test
AS
SET NOCOUNT ON
DECLARE @rc int
DROP table ##Errors
CREATE TABLE ##Errors(
CC_IDInt,
ErrorVarChar(50)
)
-- Scan for suspect data
INSERT INTO ##Errors(CC_ID,...
May 20, 2009 at 3:12 am
Hi cl_see,
I'm in the process of developer a solution similar to your requirements.
I have a user on SS 2000, with no email client installed on the same server and...
May 20, 2009 at 2:25 am
Hi Greg,
Thanks for that. I've spent the day looking through the BOL and various other resources and have come to the conclusion that they weren't suitable. Not all of our...
May 15, 2009 at 4:50 am
If you replace 'Where e_Ina11 Is Null' with:
WHERE ISNULL(e_Ina11,0) = 0
does it run as you expect?
I try to avoid Nulls wherever possible as they can cause confusion.
A good article on...
April 29, 2009 at 5:12 am
Another option is the ISNULL function, which I use to remove NULL values from the output.
April 22, 2009 at 7:43 am
Thanks Florian, I didn't notice the duplicate posting.
April 8, 2009 at 3:39 am
Hi,
Your file, or file sample didn't attach to your message. I've never seen an ArcView file, so if you could attach some data it would be appreciated.
BrainDonor.
April 8, 2009 at 3:38 am
Hi,
According to BOL, DataLength returns either an int or bigint depending upon the type of the field it is examining. So what is the definition of 'memTest' and how many...
April 8, 2009 at 1:58 am
Hi,
OK, there's something it doesn't like within COBOChanges. Could you post it so we can have a look?
BrainDonor.
April 2, 2009 at 2:08 am
Hi Malathi,
The SQL you are running would be of benefit to the rest of us.
The obvious things first though - are you sure that a database of that name exists...
April 2, 2009 at 1:37 am
As KK said, I'd change it to insert into a temporary table, and then check that table for the condition that would trigger the alerts you're after.
You could also write...
March 26, 2009 at 3:45 am
Viewing 15 posts - 901 through 915 (of 925 total)