Hi,
I am currently using an ODBC connection to the Bamboo database in order to create some analytics based on the data. I am running a MS SQLSERVER 2008 data platform for Bamboo and I am facing some issues when it comes to the relationship between the BUILDRESULTSUMMARY table and TEST_CASE and therefore TEST_CASE_RESULT table.
How are these two connected? Because apparently the connection between BUILDRESULTSUMMARY and TEST_CLASS_RESULT via BUILDRESULTSUMMARY_ID is invalid. I can elaborate, if needed, why I state that the aforementioned connection is invalid. It would be great if someone could shed some light on the connection between these two tables/columns.
Thanks,
Kmn
SELECT * FROM test_class_result tcr, buildresultsummary brs WHERE tcr.buildresultsummary_id = brs.buildresultsummary_id
Also, TEST_CLASS_RESULT is linked to TEST_CLASS via TEST_CLASS_ID:
SELECT * FROM test_class tc, test_class_result tcr WHERE tc.test_class_id = tcr.test_class_id
So, joining everything in a single query:
SELECT * FROM test_class_result tcr, buildresultsummary brs, test_class tc WHERE tcr.buildresultsummary_id = brs.buildresultsummary_id AND tc.test_class_id = tcr.test_class_id
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.