Tagged Questions
0
votes
1answer
48 views
Parsing Real-Time Changing text by Javascript
I would like to parse a webpage to gather data for scientific use. The text I need to parse is located within a < span >. Parsing the HTML will not achieve this because this text is constantly ...
2
votes
1answer
47 views
The Best Approach for this Data Transformation
I'm simplifying reality for the sake of simplicity...
I have a table with millions of Temperature observations: ObservationID, LocationID, Observation_Date, Temperature
I want to write a query, but ...
1
vote
0answers
26 views
Data Mining prediction Server Operation has been cancelled
I will appriciate the help if anyone has encountered the problem before or has an idea how to resolve it. I am trying to create an data mining with visual studio 2008. And I am almost to the end.
...
0
votes
0answers
52 views
Orange sql-database scripting
I'm new to data mininig and orange. I want to load a dataset from a sqlite/mysql/postgres database. So far so good. I followed the instructions:
r = SQLReader()
r.connect('sqlite://dcmt_db/')
...
3
votes
1answer
144 views
Algorithm to search for similar lists of integers
I have a SQLite database that contains two tables:
Objects:
object_id int,
name varchar(50)
Values:
key char(12),
value int,
object_id int
As you can see each object contains a list of ...
4
votes
2answers
133 views
A good blobstore / memcache solution
Setting up a data warehousing mining project on a Linux cloud server. The primary language is Python .
Would like to use this pattern for querying on data and storing data:
SQL Database - SQL ...
0
votes
1answer
157 views
How to use pure SQL for Exploratory Data Analysis?
I'm an ETL developer using different tools for ETL tasks. The same question rises in all our projects: the importance of the data profiling before the Data Warehouse is build and before the ETL is ...
2
votes
1answer
74 views
BIDS Data Mining Performance Issue
I'm having an interesting problem with Microsoft Business Intelligence Development Studio and the Data Mining Query Task. I have a package in which there are (among a few other things) two Data ...
-4
votes
1answer
247 views
what is the difference between database for decision support system and data warehousing [closed]
I would like to know about what is the difference between a database for decision support system and dataware housing. Both provide the same functionality as far as i am cocern.
3
votes
4answers
262 views
Finding data relations or graphs in many-to-many SQL tables
I have several types of many-has-many tables in my work. I have apps that relate words to other words (ngrams), and databases that could relate users to other users (friends/followers).
I would like ...
0
votes
0answers
45 views
Determining about events out of timestamped continuous data
I have a problem with mining through database. I have continuous data like this:
ID | TIMESTAMP | V1 | V2 | V3 | V4 | V5 | V6 | V7 | V8 | V9 | V10 |
'4271510','2012-01-15 ...
1
vote
1answer
237 views
Automated data mapping
Do you know of any library, software or language which supports automated data mapping.
What is it you might ask ?
Suppose I have two source tables with their schema AND some data instances.
Based on ...
1
vote
2answers
214 views
text mining in sqlite
I have sqlite database and need to find the most frequent words in it.
Example,
text
table chair floor
table chair
table
Solution needed
word number
table 3
chair 2
...
2
votes
2answers
233 views
Application logging and information analysis
I am currently trying to add some logging information to a C# application to be able to understand in what part of the appplication most of the user are spending their time. I am planning to send all ...
0
votes
2answers
40 views
Data order by which table its in SQL
So this is a weird one.
I have a search for a person that exists in the table "profile" and we have people that are allowed to become like a fan of a person. They can favorite them.
[Profile]
...
3
votes
2answers
494 views
KD-Tree Implementation in SQL
Is anyone aware of a KD-Tree, or similar spatial index, implemented in SQL? I was considering writing my own using Python and Django's ORM, but I'd like to avoid reinventing the wheel.
I have a table ...
0
votes
2answers
209 views
Data Mining/Retrieval Question
Our SQL Server 2005 database has nearly 100 different tables. We are going to provide a feature to search some information according to the user defined filters. Our filter configuration going to be ...
0
votes
1answer
129 views
Get Data Mining models name from server by DMX
Does somebody know if there is a way to get the models names from the server by executing script (DMX)
1
vote
2answers
129 views
Best way to store real world “events” in a DB?
I'm building a system which will collect data about an industrial process, which is externally controlled. Those datas will be used to build usage statistics for various components of the system.
...
0
votes
1answer
68 views
Query for fastest growing tags in data explorer?
I'd like to compare the popularity of tags between two months, ordered by the biggest change.
I've worked out how to count the number of tags in a month, but not how to compare them. Here's what I ...
0
votes
1answer
818 views
Repeatable random sampling SQL
I need a review for my solution for sampling 100 random rows from a table stored on a MPP machine (currently Netezza , later might be hadoop/etc.)
I'm not interested in using Netezza's rand(), as I ...
9
votes
1answer
985 views
Data Mining Operation using SQL Query (Fuzzy Apriori Algorithm) - How do i code it using SQL?
So i have this Table :
Trans_ID Name Fuzzy_Value Total_Item
100 I1 0.33333333 3
100 I2 0.33333333 3
100 I5 0.33333333 3
200 ...
3
votes
4answers
765 views
Is my path of learning data mining correct
Someone has just told my boss what data mining can do to a company like recommendation , predictive modelling. Basically we are a website company. I am going on leave for 6 months.
So my boss said ...
0
votes
1answer
793 views
how to find maximum frequent item sets from large transactional data file
I have the input file contains large amount of transactions like
Transaction ID Items
T1 Bread, milk, coffee, juice
T2 Juice, milk, coffee
T3 Bread, juice
T4 Coffee, milk
T5 Bread, Milk
T6 Coffee, ...
2
votes
2answers
54 views
maintaining query-oriented applications
I am currently doing some kind of reporting system.the figures, tables, graphs are all based on the result of queries. somehow i find that complex queries are not easy to maintain, especially when ...
1
vote
4answers
131 views
Intelligent Database - Capable of identifying out of the ordinary values
I am looking for a tool or system to take a look at the database and identify values that are out of the ordinary. I don't need anything to do real time checks, just a system which does processing ...
2
votes
2answers
534 views
SQL Server Non-Standard Date Based Histogram
I have user login data with timestamps and what I would like to do is get a histogram of logins by year, but with the year starting at an arbitrary date. For example, I want the following sort of ...
