Viewing 13 posts - 271 through 283 (of 283 total)
Eric M Russell (4/4/2016)
Actually there is a fork of MySQL 5.5 that supports ANSI-2011, PL/SQL, and T-SQL 2012. In addition to that, it has distributed scale out capability.
You do know...
April 5, 2016 at 1:38 pm
Personally I'm waiting for DB2 on MySQL.
That doesn't make as much sense, I think. The DB2 database is already available on nearly every platform.
April 1, 2016 at 8:37 am
Really nice piece. I'll readily admit that I was thoroughly fooled right through the end. And that takes some doing. But I already knew that MySQL supports several different DB...
April 1, 2016 at 7:22 am
You have a few places in your query where you apparently need trimming on join fields:
UPPER(LTRIM(RTRIM(FIS2_Account_Shared.TD_LEGAL_ENTITY))) = UPPER(LTRIM(RTRIM(FIS2_Acct_Lgl_Ent.MNEMONIC)))
OR UPPER(LTRIM(RTRIM(FIS2_Account_Shared.TD_LEGAL_ENTITY))) = UPPER('TD SECURITIES CANADA')
In my limited experience this...
November 17, 2015 at 11:14 am
It's been alluded to in the other posts but the reason why it doesn't stop is because it's a non-SARGable query and you're also thinking in terms of rows (RBAR)...
November 9, 2015 at 2:29 am
The only thing I can think of that would cause this is if you have an unordered table, where n in one of the first rows is too big for...
November 5, 2015 at 10:28 am
But the try-catch approach is probably the better one. Something like this:
BEGIN TRY
INSERT INTO tblCustomer (cid, lName, fName)
...
January 23, 2015 at 7:11 pm
Since the majority of the activity is inserts you may also want to investigate something like this:
INSERT INTO tblCustomer (cid, fName, lName)
SELECT @cid, @fName, @lName
WHERE NOT EXISTS (
SELECT *...
January 23, 2015 at 6:39 pm
Hi,
Both of you seem to forget that this is the 2K5 group (SQL Server 2005), which means that fields of type DATE isn't supported (we have to use DATETIME fields)....
January 23, 2015 at 2:10 pm
What you have is code that will add the necessary leading spaces up to 10. In effect it will leave you with a right-aligned 10 character field.
It is unnecessarily complicated,...
January 23, 2015 at 10:26 am
Nah, I don't find it all that comprehensive. Metric conversions seems to be missing. Only imperials there.
January 23, 2015 at 9:49 am
Maybe he meant "most accurate"?;-)
January 23, 2015 at 9:19 am
Igor,
I really think you're overcomplicating it. From my point of view it is much simpler to add one month to the date and then subtract the day number, which brings...
November 7, 2014 at 9:41 am
Viewing 13 posts - 271 through 283 (of 283 total)