Tagged Questions
The fact tag has no wiki summary.
19
votes
3answers
4k views
Ruby factorial function
I'm going crazy: Where is the Ruby function for factorial? No, I don't need tutorial implementations, I just want the function from the library. It's not in Math!
I'm starting to doubt, is it a ...
3
votes
1answer
96 views
Microsoft research on fact extraction from the web?
Some time ago I had accidentally found website which was apparently product of Microsoft research on fact extraction from the web, more specifically from the Wikipedia. Right now I would like to have ...
1
vote
1answer
132 views
Transaction lifecycle tracking in data warehouse
How do you store facts within which data is related? And how do you configure the measure? For example, I have a data warehouse that tracks the lifecycle of an order, which changes states - ordered, ...
1
vote
1answer
162 views
Ralph Kimballs Data warehouse toolkit book
I'm reading Ralph Kimball's book on Data warehouse and Dimension Modeling. I am reading one of the case studies, and it is about dimension modeling for an order system, where the requirement is to ...
1
vote
1answer
135 views
Data warehouse - Dimension Modeling
I am new to BI/Datawarehousing, and after building some easy samples, I have the need to build a more complex structure. My project initially involved product licenses, and I was measuring how many ...
1
vote
1answer
802 views
JBoss Drools insert facts from DRL
I need my WorkingMemory to be aware of facts which are created in the DRL as follows:
rule "Your First Rule"
when
$testRule : TestRule(count >= 100)
then
System.out.println("100 ...
1
vote
1answer
347 views
Prolog - call a rule with fact
TL;DR: Need help calling a rule with a fact
I´ve started out with prolog, coming from C and got stuff working... until they evidently got broken. I´m writing a small car-paint program for myself as ...
0
votes
4answers
63 views
Prolog - Need information on facts
Say I had a fact such as:
bigger(cat,mouse).
If I wanted to describe this to someone, would I be correct in saying "cat is the first term within this fact and mouse is the second term" or would I ...
0
votes
0answers
31 views
Prolog - Exercise with readterm
I need to read through "readterm" as much "conjunt" as the user wishes until he presses "enter" so that the program ends.
For now I get error when the user presses "enter".
Domains
nom=symbol
...
0
votes
1answer
32 views
Check list and database [Prolog]
I need to develop a predicate in Prolog able to compare a list against fact. In other words, if the names of the products residing in the list are all in the database(fact) as well, then it gotta say ...
0
votes
2answers
63 views
Prolog - Exercise on facts and lists
The problem is that I need to program a predicate capable of consulting the products in a database so that it returns a list filled with the names of the products its prices are reduced(that is ...
0
votes
2answers
45 views
Prolog - Little exercise on facts
Ok. That's my problem. I need to implement a predicate that sums up all the prices of the products in the list. But, for now, I'm not getting any further with it.
What am I doing wrong?
Thanks in ...
0
votes
3answers
59 views
Prolog - Insert with facts
I need to program a Predicate in Prolog that inserts an element in the indicated position and consequently modifies the position number of the rest of the elements in the list.
What I've achieved is ...
0
votes
1answer
17 views
I am not able to get dimensions and fact values while browsing cube in SSAS 2005
I am new to SSAS. I have two tables, FactAnswers and DimDebit. one dimension and one fact. After creating cube when I try to browse dimensions and fact, I got nothing. I want to get AnswerValue from ...
0
votes
1answer
40 views
JBMRS: Creating Facts
Which one will be better for a project using JBRMS, JBPM inside an ESB: Creating fact types inside the BRMS or uploading POJO's? As per my understanding, creating fact types inside BRMS have advantage ...
0
votes
1answer
69 views
How to assert new rule from user input (PROLOG)
I want to accept users' input, i.e. [garfield, hates, blacky].
hates/2 doesn't exist currently.
In my database,
process:-
read(Input_List),
add_rule(Input_List).
add_rule([X, Predicate, ...
0
votes
1answer
64 views
Alloy fact NOT both properties
I have a piece of code in ALLOY I am trying to do a restaurant reservation system and I have this sig and relation between them.
abstract sig Table{
breakfast: one breakFast,
lunch: one Lunch,
...
0
votes
0answers
16 views
Do this fact table alteration change the grain?
The fact table is a weekly snapshot of help desk tickets with 1 row per ticket per week. The ticket dimension contains TicketAgeTarget. I would like to add to the fact table TicketAgeTargetIndicator ...
0
votes
1answer
141 views
How to dynamically reload rules using already declared fact types?
I am facing an issue while trying to reload rules dynamically.
Starting with the context : we have DRLs files which contains a total of 10000 rules, and various types. As the process of compiling and ...
0
votes
1answer
55 views
Drools Expert 5.x: API call to get list of all current facts?
How do I list all the current inserted facts so that I can serialize them ? Kinda like running '(facts)' in a CLIPS session ?
0
votes
2answers
838 views
Best practice to Load Fact table in MS SSIS
I am new to SSIS in data warehouse. I am using Microsoft business intelligence studio.
I have 5 Dimensions each having some PK.
I have a Fact table that contains all the PK of Dimensions, means their ...
0
votes
1answer
132 views
Fact Tables - CRM - Customer X Events
I am new in DW and i have a simple question. Imagine that i want to create a DW to analytical CRM.
I have a fact table called Event and I have a dimension called Customer.
The problem is. One event ...
0
votes
1answer
392 views
JBoss Drools Working Memory multiple facts
This is my rule:
rule "Your First Rule"
when
$testRule : TestRule(count >= 100)
then
System.out.println("100 PACKETS!");
end
This is how I create the RuleBase and ...
0
votes
2answers
272 views
Are textual fields ever allowed in fact tables?
Are there any cases where I can have a textual field such as a description in a fact table?
I currently have a fact table of meeting events (grain: row per meeting) with a number of dimensions such ...