Click here to Skip to main content
15,898,373 members
Home / Discussions / Database
   

Database

 
GeneralRe: Database driven Controls Pin
Corporal Agarn27-May-12 1:58
professionalCorporal Agarn27-May-12 1:58 
QuestionLinking ITS Typing Test System to database Pin
abhijitp8422-May-12 23:01
abhijitp8422-May-12 23:01 
AnswerRe: Linking ITS Typing Test System to database Pin
Mycroft Holmes23-May-12 13:00
professionalMycroft Holmes23-May-12 13:00 
QuestionSQL Query Issue Pin
Nayan Ambaliya22-May-12 19:09
Nayan Ambaliya22-May-12 19:09 
AnswerRe: SQL Query Issue Pin
Mycroft Holmes22-May-12 22:36
professionalMycroft Holmes22-May-12 22:36 
AnswerRe: SQL Query Issue Pin
vvashishta24-May-12 23:44
vvashishta24-May-12 23:44 
AnswerRe: SQL Query Issue Pin
Eddy Vluggen25-May-12 0:01
professionalEddy Vluggen25-May-12 0:01 
GeneralRe: SQL Query Issue Pin
Pete O'Hanlon25-May-12 0:22
mvePete O'Hanlon25-May-12 0:22 
GeneralRe: SQL Query Issue Pin
Eddy Vluggen25-May-12 0:25
professionalEddy Vluggen25-May-12 0:25 
GeneralRe: SQL Query Issue Pin
Pete O'Hanlon25-May-12 1:23
mvePete O'Hanlon25-May-12 1:23 
GeneralRe: SQL Query Issue Pin
Eddy Vluggen25-May-12 1:28
professionalEddy Vluggen25-May-12 1:28 
QuestionCould anyone recommend an interactive application for mass data analysis? Pin
bestbird778822-May-12 16:24
bestbird778822-May-12 16:24 
AnswerRe: Could anyone recommend an interactive application for mass data analysis? Pin
Eddy Vluggen23-May-12 0:30
professionalEddy Vluggen23-May-12 0:30 
GeneralRe: Could anyone recommend an interactive application for mass data analysis? Pin
bestbird778823-May-12 20:56
bestbird778823-May-12 20:56 
AnswerRe: Could anyone recommend an interactive application for mass data analysis? Pin
Eddy Vluggen24-May-12 0:26
professionalEddy Vluggen24-May-12 0:26 
GeneralRe: Could anyone recommend an interactive application for mass data analysis? Pin
bestbird778824-May-12 16:53
bestbird778824-May-12 16:53 
AnswerRe: Could anyone recommend an interactive application for mass data analysis? Pin
Eddy Vluggen25-May-12 0:04
professionalEddy Vluggen25-May-12 0:04 
GeneralRe: Could anyone recommend an interactive application for mass data analysis? Pin
bestbird778827-May-12 23:16
bestbird778827-May-12 23:16 
AnswerRe: Could anyone recommend an interactive application for mass data analysis? Pin
Eddy Vluggen28-May-12 1:25
professionalEddy Vluggen28-May-12 1:25 
AnswerRe: Could anyone recommend an interactive application for mass data analysis? Pin
jschell24-May-12 8:44
jschell24-May-12 8:44 
GeneralRe: Could anyone recommend an interactive application for mass data analysis? Pin
bestbird778824-May-12 17:14
bestbird778824-May-12 17:14 
AnswerRe: Could anyone recommend an interactive application for mass data analysis? Pin
Jörgen Andersson26-May-12 9:43
professionalJörgen Andersson26-May-12 9:43 
GeneralRe: Could anyone recommend an interactive application for mass data analysis? Pin
bestbird778827-May-12 23:24
bestbird778827-May-12 23:24 
thank you
I will check it.
And I have 3 quesiton about Qlikview ,and I will appreciate if you give me some tips.
1.can Qlikview solve the problem above:to compute the product whose annual sales values are all among the top 100.
MSSQL data structure( sales table's fields): productID, time, value
SQL solution is as below:
---------------------------------------------------------
WITH sales1 AS (
SELECT productID, YEAR(time) AS year, SUM(value) AS value1
FROM sales
GROUP BY productID, YEAR(time)
)

SELECT productID
FROM (
SELECT productID
FROM (
SELECT productID,RANK() OVER(PARTITION BY year ORDER BY value1 DESC) rankorder
FROM sales1 ) T1
WHERE rankorder<=100) T2
GROUP BY productID
HAVING COUNT(*)=(SELECT COUNT(DISTINCT year ) FROM sales1)

2.does Qlikview have stepwise ability. What I mean is like: step1. filter data. step2. group data on step1 . step3. filter data again on step2. the most important is: step4. sorting data on the result of step1 as a sub step. It's like what Excel does.

3.dees Qlikview support multiple datasets computation without SQL. what I mean is like: join statements in SQL .
thank you for your reply.
QuestionConversion failed when converting the varchar value in SQLSERVER 2008 Pin
ChandrakanthGaddam22-May-12 5:47
ChandrakanthGaddam22-May-12 5:47 
AnswerRe: Conversion failed when converting the varchar value in SQLSERVER 2008 Pin
scottgp22-May-12 6:02
professionalscottgp22-May-12 6:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.