Jump to content
We've recently updated our Privacy Statement, available here ×

lbjmj236

Members
  • Posts

    3
  • Joined

  • Last visited

lbjmj236's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Thanks for all the answers. I have followed @hozawa link and completed example query by outer join. Then another issue happens becasue my goal is to find all posts for every TOPIC. The query ran for hours and I never got results. I think it is because the outer join is too expensive in this case, especially tables here are huge. For @djohnson53 suggestion, it is doing subselect during creating derived tables. It worked for sure. But can we figure out a way to make it more general and find all posts attached to every TOPIC? Thanks again.
  2. We have two fact tables (data sources): - fact_twitter_posts - fact_facebook_posts Each fact table has dimensions unique to it and some dimensions that are shared between them: - dim_twitter_posts - dim_facebook_posts - dim_dates (shared) - dim_post_index (shared) I have worked through the various tutorials and figured out how to setup a domain for just one of these data sources, facebook or twitter. However, we need to be able to generate reports (adhoc or otherwise) which contain both of these data sources. What is the prescribed method for setting this up in Jaspersoft? Should we be using one domain per data source or should we have one domain which contains multiple data sources? If we use multiple domains, then we run into the problem of being able to select only one domain when generating an adhoc report. All helps are appreciated.
  3. Hi all, I am facing a problem in Domain design. There are 2 types of social media posts in my database, say facebook and twitter. The records are stored separately in 2 tables, while their primary key(post id) is stored in a third table in pair of topics. 1 topic pairs with multiple post ids. --Tables: FB_POST(id, content), TW_POST(id, content), TOPIC(topic, id) --Query: Find all social media posts regarding a topic, e.g. 'Inside Out'. If I only create 1 join tree in domain, it gives no results. Because no post shares the same id across 2 social platform. If I duplicate the TOPIC table and create 2 join trees in the domain, then how could they both be imported to a single Ad Hoc view? If not, what can I do to implement this query? Thanks
×
×
  • Create New...