Viewing 15 posts - 1 through 15 (of 117 total)
Sean,
I don't need any results, there is a problem, the database is not working. I just wanted to know what they are asking for in the result set. I might...
August 13, 2013 at 10:43 am
So here is my problem:
Could not open the editor: Assertion failed:
org.eclipse.jface.util.Assert$AssertionFailedException: Assertion failed:
at org.eclipse.jface.util.Assert.isTrue(Assert.java:185)
at org.eclipse.jface.util.Assert.isTrue(Assert.java:170)
at com.adobe.flexbuilder.editors.derived.editor.FlexMultiPageEditorPart.setActivePage(FlexMultiPageEditorPart.java:569)
at com.adobe.flexbuilder.editors.common.editor.CodeAndDesignEditor.setActivePage(CodeAndDesignEditor.java:643)
at com.adobe.flexbuilder.editors.mxml.MXMLEditor.setActivePage(MXMLEditor.java:483)
at com.adobe.flexbuilder.editors.derived.editor.FlexMultiPageEditorPart.createPartControl(FlexMultiPageEditorPart.java:235)
at com.adobe.flexbuilder.editors.common.editor.CodeAndDesignEditor.createPartControl(CodeAndDesignEditor.java:162)
at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:661)
at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:428)
at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:594)
at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:306)
at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:180)
at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:270)
at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:473)
at...
July 20, 2012 at 5:46 pm
Sean Lange (5/15/2012)
Sean Lange (5/7/2012)
You're welcome. Does this mean you finally have your answer? 😛
I assume by your silence that you did in fact get your issue resolved. It is...
May 16, 2012 at 8:29 am
Sean Lange (5/7/2012)
njdevils39 (5/7/2012)
Sean Lange (5/7/2012)
Sorry to be a pain, but how should it look with this code.
What does that mean? What is the question?
Did...
May 7, 2012 at 3:01 pm
Sean Lange (5/7/2012)
Sorry to be a pain, but how should it look with this code.
What does that mean? What is the question?
Did you notice that...
May 7, 2012 at 2:49 pm
Sean Lange (5/7/2012)
njdevils39 (5/7/2012)
Sean Lange (5/7/2012)
njdevils39 (5/7/2012)
Sean Lange (5/7/2012)
May 7, 2012 at 2:37 pm
Sean Lange (5/7/2012)
njdevils39 (5/7/2012)
Sean Lange (5/7/2012)
May 7, 2012 at 2:29 pm
Sean Lange (5/7/2012)
May 7, 2012 at 12:57 pm
Sean Lange (5/7/2012)
alter PROCEDURE [dbo].[WEB_HR_GetRateHistory]
(
@EMP_ID INT
)
AS BEGIN
with cteRates as (
select o.emp_id,
...
May 7, 2012 at 12:42 pm
Here is my code when I involve the actual, not temp tables.
ALTER PROCEDURE [dbo].[WEB_HR_GetRateHistory]
(
@EMP_ID INT
)
AS BEGIN
DECLARE @x XML;
with cteRates as (
select o.emp_id,
...
May 7, 2012 at 8:25 am
Sean Lange (5/7/2012)
njdevils39 (5/7/2012)
Sean Lange (5/7/2012)
njdevils39 (5/4/2012)
select 1 as RowNum, 3 as EMP_ID, 'Whitehead, Molly' as EMP_NAME, 'Silver Manor' as EMP_ORGANIZATION, 'Administrative' as EMP_DEPARTMENT, NULL as EMP_DT_TERMINATION, '03/06/2011' as DATE_CHANGED,...
May 7, 2012 at 8:23 am
Sean Lange (5/7/2012)
njdevils39 (5/4/2012)
select 1 as RowNum, 3 as EMP_ID, 'Whitehead, Molly' as EMP_NAME, 'Silver Manor' as EMP_ORGANIZATION, 'Administrative' as EMP_DEPARTMENT, NULL as EMP_DT_TERMINATION, '03/06/2011' as DATE_CHANGED, '1730.77' as FROM_PAY_RATE,...
May 7, 2012 at 8:13 am
Lynn Pettis (5/4/2012)
njdevils39 (5/4/2012)
R.P.Rozema (5/3/2012)
njdevils39 (5/2/2012)
ALTER PROCEDURE [dbo].[WEB_HR_GetRateHistory]
(
@ORG_LEVEL_ID INT,
@EMP_ID INT
)
AS
BEGIN
DECLARE @x XML;
...
May 4, 2012 at 9:23 am
R.P.Rozema (5/3/2012)
njdevils39 (5/2/2012)
ALTER PROCEDURE [dbo].[WEB_HR_GetRateHistory]
(
@ORG_LEVEL_ID INT,
@EMP_ID INT
)
AS
BEGIN
DECLARE @x XML;
CREATE TABLE...
May 4, 2012 at 8:02 am
So, in my post to go off from this code:
ALTER PROCEDURE [dbo].[WEB_HR_GetRateHistory]
(
@ORG_LEVEL_ID INT,
@EMP_ID INT
)
AS
BEGIN
DECLARE @x XML;
CREATE TABLE #RATE_HISTORY
(
EMP_NAME VARCHAR(255),...
May 2, 2012 at 9:46 am
Viewing 15 posts - 1 through 15 (of 117 total)