Viewing 15 posts - 1 through 15 (of 116 total)
Hello Chris. My 100% support for your arguments! It's been annoying for years and it still is.
But - as I found out, even a lot of experienced developers don't know,...
March 24, 2006 at 4:28 am
What the heck are you trying to do
Where does "decay" come from?
March 11, 2006 at 4:41 am
😉 I'm born non-profit
March 10, 2006 at 2:09 pm
>What is returned from your query if a row in the credit_card_bank_number table has no matches in the join tables or a match in one join table and not the...
March 10, 2006 at 1:12 pm
SELECT
SUM(BALANCE),
CASE WHEN BALANCE BETWEEN 0 AND 50 THEN '0-50'
WHEN BALANCE BETWEEN 51 AND 500 THEN '51-500'
WHEN BALANCE BETWEEN 501 AND 1000 THEN '501-1000'
ELSE 'above 1000'
END...
March 10, 2006 at 1:02 pm
on christmas eve only. no special wishes during the year.
March 10, 2006 at 12:51 pm
EXEC stored_proc ... But mind unwanted recursion, which can occur, if your stored_proc involves the originating table's data (where the trigger is attached to). The difference to a DTS? Synchronicity, first...
March 10, 2006 at 12:41 pm
You're welcome. My PayPal account: paramind@ars-data.de. I think, 10 cents will do
March 10, 2006 at 12:30 pm
Though I'm not Ray M .... 😉 and I did not say many, I said TOO many.
As we are talking of funds - mine would love some improvement 😉
SELECT CCBN.entity_number,
CCBN.fund_year,
...
March 10, 2006 at 12:17 pm
Ray M is right. nevertheless, in your case, problems are obvious at a distance 😉 and you can see them by yourself when...
March 10, 2006 at 12:00 pm
In case you're always looking for the same predefined thing there's no need to loop:
SELECT
Substring(E.BODY, CHARINdEX('Serial Number:',E.BODY), CHARINDEX('Current Meter:', E.BODY)-CHARINdEX('Serial Number:',E.BODY)) AS yourString,
'thank you paramind' AS myString
FROM tblEmailTest AS...
March 10, 2006 at 11:39 am
I have to add another possibly working solution (not tested that, just an idea):
INSERT INTO targetTable
([SEQFIELDNAME],
Field1,
Field2,
....
SELECT
CHECKSUM (NEW_ID()),
Field1,
Field2
FROM .... WHATEVER
: New_ID() is a GUID created for each record. As...
March 10, 2006 at 11:20 am
>Well, then I don't think you need a special table to hold the last value. You can get the highest existing value from the table itself by SELECT MAX(SEQ_NUM) FROM...
March 10, 2006 at 11:03 am
>paramid, I'm not sure what you mean, how will that effect my query ?<
In case a parameter is not specified (indicated by being NULL or alternatively some default) that part of...
March 10, 2006 at 9:11 am
Ok, let's fix things. May be my expectations are too high ... I'm not trying to code, but to unleash some ideas or principles behind problems when answering - where I...
March 10, 2006 at 8:28 am
Viewing 15 posts - 1 through 15 (of 116 total)