Viewing 15 posts - 11,191 through 11,205 (of 26,486 total)
Derek Robinson (6/20/2012)
June 20, 2012 at 4:07 pm
L' Eomot Inversé (6/20/2012)
But I may not find...
June 20, 2012 at 3:44 pm
Rekonn (6/20/2012)
June 20, 2012 at 3:31 pm
And that is just a brief, 100,000 foot view. There is much more that could be discussed.
June 20, 2012 at 2:08 pm
Data normalization is not done for speed. It helps to eliminate data redundency, and potetially various update anomilies that can occur. Sometime it is necessary to denormalize data...
June 20, 2012 at 2:05 pm
Verify that the user has appropriate permissions to the server.
June 20, 2012 at 1:21 pm
Okay, looks like a login failure: Login failed for user 'domain\x-yz$'
June 20, 2012 at 1:15 pm
How you implement this in reporting services or JD Edwards code, I'm not sure. What I provided can be used in T_SQL queries.
June 20, 2012 at 12:52 pm
Unless you are auditing for this, I don't think it is possible.
June 20, 2012 at 12:47 pm
And to convert a date >= 1900-01-01 to a JD Edwards Julian date:
DECLARE @ThisDate datetime;
SET @ThisDate = GETDATE();
SELECT (YEAR(@ThisDate) - 1900) * 1000 + DATEPART(dy, @ThisDate);
June 20, 2012 at 12:40 pm
Here is a better way:
DECLARE @jdejulian INT;
SET @jdejulian = 112074;
SELECT DATEADD(dd, (@jdejulian % 1000) - 1, DATEADD(yy, @jdejulian / 1000, 0));
June 20, 2012 at 12:22 pm
Working on another way at this time as well.
June 20, 2012 at 12:19 pm
Try this:
DECLARE @jdejulian INT;
SET @jdejulian = 112031;
SELECT
DATEADD(dd, CAST(RIGHT(RIGHT('0' + CAST(@jdejulian AS VARCHAR), 6),3) AS INT) - 1, DATEADD(yy, CAST(LEFT(RIGHT('0' + CAST(@jdejulian AS VARCHAR), 6),3) AS...
June 20, 2012 at 12:18 pm
Don't know what a JD Edwards Julian Date is so I couldn't at the moment.
June 20, 2012 at 12:05 pm
Viewing 15 posts - 11,191 through 11,205 (of 26,486 total)