Viewing 15 posts - 76 through 90 (of 182 total)
definately use a temp table and if space-permitting keep a log of transactions made from the exchange. I can't count how many times I had a particular customer complaim...
May 11, 2006 at 12:29 pm
and null ''
null + 'any string' = null
you will have to use the ISNULL() function which is simillar to the NZ() function in ACCESS.
ISNULL(null,'') + 'any string' = 'any...
May 9, 2006 at 7:56 am
nevermind... I found a code solution here
you can use this code to determine sql or windows security as well.
May 8, 2006 at 2:36 pm
Thanx many! I don't know why I didn't think of that. Good ole' Bill Gates!
Cheers!
-KM
May 3, 2006 at 1:24 pm
Happens to the best of us. That's why we come here. Take care!
-KM
May 3, 2006 at 9:51 am
It is possible that the surName has variations in spelling?
May 3, 2006 at 9:39 am
Sorry Didn;t read right...
SELECT DISTINCT NInumber, department
FROM Staff
WHERE
NInumber IN
(
SELECT NINumber
FROM staff
GROUP BY NINumber
HAVING (COUNT(DISTINCT department) > 1)
)
May 3, 2006 at 8:50 am
SELECT DISTINCT NInumber
WHERE NInumber IN
(
SELECT NINumber
FROM staff
GROUP BY NINumber, department
HAVING (COUNT(*) > 1)
)
May 3, 2006 at 8:35 am
Is it a result of adding/removing fields in a table, view, or view dependency (table) that is used by the DTS?
May 3, 2006 at 8:07 am
I never could find an effective use for indexing a view when I always have changing data. The first time I heard about it, I got excited until I...
May 3, 2006 at 8:04 am
This will eliminate problem of 2 key words in a record
create table x ( t VARCHAR (100))
insert x (t) values ('This is a text')
insert x (t) values ('And this appears...
April 26, 2006 at 10:06 am
Thank you for the replies. Our ASP developer has read warnings not to store a recordset in a session. We were avoiding fixed result sizes anyhow.
Fortunately we found...
April 26, 2006 at 7:31 am
look up "TRIGGER INSERTED" on msdn.
April 20, 2006 at 7:15 am
If you must use a record-based approach, I'd recommend using a staging table with a trigger using a cursor. (INSERTED i INNER JOIN StagingTable).
That being said, 99% of the...
April 20, 2006 at 6:39 am
Viewing 15 posts - 76 through 90 (of 182 total)