G
Guest
i get a crash in ADP that I can duplicate it.
I have a parent-child relationship that I am building a catalog for--
basically keeping track of what children are how many generations old; etc
Here is my SQL:
SELECT LEVEL4.*
FROM dbo.MRS_RPTMENU LEVEL1 INNER JOIN
dbo.MRS_RPTMENU LEVEL2 ON LEVEL1.ID = LEVEL2.PARENTID
INNER JOIN
dbo.MRS_RPTMENU LEVEL3 ON LEVEL2.ID = LEVEL3.PARENTID
INNER JOIN
dbo.MRS_RPTMENU LEVEL4 ON LEVEL3.ID = LEVEL4.PARENTID
WHERE (LEVEL1.PARENTID = 0)
I am editing this in design view,
i go down to add a field, called L1,
I accidently typed this in the 'Column' field instead of the 'alias' field
(in design view); and it crashes Access 2002 for me.
Obviously, it is looking for a field named L1, and it can't find it-- but it
shouldn't crash
Please fix this, I do not accept crashes lightly; as I always lose data when
this happens.
Here are the fields from this table:
ID
NAME
NAME_HTML
DESCRIPTION
DESCRIPTION_HTML
PARENTID
CHILDRENCOUNT
ZERO
And just for the record, 'ZERO' is a calculated field, assigned to a
constant. I do this in order to create a 'FactLess Fact Table'.
-Aaron
I have a parent-child relationship that I am building a catalog for--
basically keeping track of what children are how many generations old; etc
Here is my SQL:
SELECT LEVEL4.*
FROM dbo.MRS_RPTMENU LEVEL1 INNER JOIN
dbo.MRS_RPTMENU LEVEL2 ON LEVEL1.ID = LEVEL2.PARENTID
INNER JOIN
dbo.MRS_RPTMENU LEVEL3 ON LEVEL2.ID = LEVEL3.PARENTID
INNER JOIN
dbo.MRS_RPTMENU LEVEL4 ON LEVEL3.ID = LEVEL4.PARENTID
WHERE (LEVEL1.PARENTID = 0)
I am editing this in design view,
i go down to add a field, called L1,
I accidently typed this in the 'Column' field instead of the 'alias' field
(in design view); and it crashes Access 2002 for me.
Obviously, it is looking for a field named L1, and it can't find it-- but it
shouldn't crash
Please fix this, I do not accept crashes lightly; as I always lose data when
this happens.
Here are the fields from this table:
ID
NAME
NAME_HTML
DESCRIPTION
DESCRIPTION_HTML
PARENTID
CHILDRENCOUNT
ZERO
And just for the record, 'ZERO' is a calculated field, assigned to a
constant. I do this in order to create a 'FactLess Fact Table'.
-Aaron