Click here to Skip to main content
15,902,896 members
Home / Discussions / Database
   

Database

 
QuestionUpdating a dataset from a datagrid Pin
TheJudeDude7-Aug-06 10:25
TheJudeDude7-Aug-06 10:25 
AnswerRe: Updating a dataset from a datagrid Pin
Frank Kerrigan8-Aug-06 1:10
Frank Kerrigan8-Aug-06 1:10 
GeneralRe: Updating a dataset from a datagrid Pin
TheJudeDude8-Aug-06 6:24
TheJudeDude8-Aug-06 6:24 
QuestionSQL Query Order of Execution Pin
Rajkamal_dfine7-Aug-06 3:36
Rajkamal_dfine7-Aug-06 3:36 
AnswerRe: SQL Query Order of Execution Pin
Colin Angus Mackay7-Aug-06 3:54
Colin Angus Mackay7-Aug-06 3:54 
AnswerRe: SQL Query Order of Execution Pin
Ennis Ray Lynch, Jr.7-Aug-06 10:08
Ennis Ray Lynch, Jr.7-Aug-06 10:08 
QuestionDiffucult T-SQL question: showing sales data that was not sold Pin
Izak -7-Aug-06 0:29
Izak -7-Aug-06 0:29 
AnswerRe: Diffucult T-SQL question: showing sales data that was not sold Pin
Eric Dahlvang7-Aug-06 3:41
Eric Dahlvang7-Aug-06 3:41 
SELECT CM.CustomerCode, IM.StockCode 
FROM CustomerMaster CM, InventoryMaster IM
WHERE CM.CustomerCode NOT IN(SELECT SD.CustomerCode 
			     FROM SalesDetail SD 
			     WHERE SD.StockCode = IM.StockCode 
                                   AND SD.Year = 2006 
                                   AND (SD.Month >= 6 and SD.Month <= 7))
ORDER BY CustomerCode


--EricDV Sig---------
Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them.
- Laurence J. Peters

GeneralRe: Diffucult T-SQL question: showing sales data that was not sold Pin
Izak -7-Aug-06 23:14
Izak -7-Aug-06 23:14 
GeneralRe: Diffucult T-SQL question: showing sales data that was not sold Pin
Eric Dahlvang8-Aug-06 3:09
Eric Dahlvang8-Aug-06 3:09 
QuestionMSDE Bootrappers Pin
JacquesDP6-Aug-06 23:46
JacquesDP6-Aug-06 23:46 
AnswerRe: MSDE Bootrappers Pin
Suresh Kumar.A13-Aug-06 1:36
Suresh Kumar.A13-Aug-06 1:36 
QuestionNHibernate? Pin
YOMATA6-Aug-06 22:34
YOMATA6-Aug-06 22:34 
QuestionTree View Menu in HTML Pin
skysunil6-Aug-06 20:59
skysunil6-Aug-06 20:59 
AnswerRe: Tree View Menu in HTML Pin
Colin Angus Mackay6-Aug-06 22:16
Colin Angus Mackay6-Aug-06 22:16 
QuestionSetup .ini in SQL server 200 Pin
pratap ankesh6-Aug-06 20:00
pratap ankesh6-Aug-06 20:00 
AnswerRe: Setup .ini in SQL server 200 Pin
JacquesDP6-Aug-06 23:42
JacquesDP6-Aug-06 23:42 
Questionconnection pro again Pin
skyeddie6-Aug-06 0:49
skyeddie6-Aug-06 0:49 
AnswerRe: connection pro again Pin
Christian Graus6-Aug-06 1:16
protectorChristian Graus6-Aug-06 1:16 
AnswerRe: connection pro again Pin
Rob Graham6-Aug-06 4:26
Rob Graham6-Aug-06 4:26 
GeneralRe: connection pro again Pin
skyeddie6-Aug-06 19:59
skyeddie6-Aug-06 19:59 
GeneralRe: connection pro again Pin
Rob Graham7-Aug-06 3:43
Rob Graham7-Aug-06 3:43 
Questioninserting data thru web forms Pin
Kunal P6-Aug-06 0:23
Kunal P6-Aug-06 0:23 
AnswerRe: inserting data thru web forms Pin
Christian Graus6-Aug-06 1:21
protectorChristian Graus6-Aug-06 1:21 
GeneralRe: inserting data thru web forms Pin
Kunal P7-Aug-06 6:40
Kunal P7-Aug-06 6:40 

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.