Click here to Skip to main content
15,888,610 members
Home / Discussions / Database
   

Database

 
AnswerRe: E-R Diagram Draw Help PLS Pin
riced17-Apr-09 6:31
riced17-Apr-09 6:31 
QuestionQuery HElppp.....!!!!! Pin
Marla Sukesh16-Apr-09 23:50
professional Marla Sukesh16-Apr-09 23:50 
AnswerRe: Query HElppp.....!!!!! Pin
Rajesh Anuhya17-Apr-09 0:08
professionalRajesh Anuhya17-Apr-09 0:08 
GeneralRe: Query HElppp.....!!!!! Pin
Marla Sukesh17-Apr-09 0:14
professional Marla Sukesh17-Apr-09 0:14 
GeneralRe: Query HElppp.....!!!!! Pin
Rajesh Anuhya17-Apr-09 0:24
professionalRajesh Anuhya17-Apr-09 0:24 
GeneralRe: Query HElppp.....!!!!! Pin
Marla Sukesh17-Apr-09 1:02
professional Marla Sukesh17-Apr-09 1:02 
GeneralRe: Query HElppp.....!!!!! Pin
Rajesh Anuhya17-Apr-09 1:18
professionalRajesh Anuhya17-Apr-09 1:18 
AnswerRe: Query HElppp.....!!!!! Pin
Marla Sukesh17-Apr-09 1:27
professional Marla Sukesh17-Apr-09 1:27 
USE [rhythmhouseDynamic]
GO
/****** Object: View [dbo].[vw_SearchStationery] Script Date: 04/17/2009 16:34:58 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[vw_SearchStationery]
AS
SELECT dbo.ProductLine.prodlineID as 'ProductLineId', dbo.ProductLine.prodlineName as 'ProductLineName', dbo.ProductMaster.ProductId, dbo.ProductMaster.ProductTitle,
dbo.ProductMaster.ProductDescription, dbo.ProductMaster.ProductShortdescription, dbo.ProductMaster.ProductSynopsis

,ProductAttributeValues_Brand.ComputedAttributeValue AS [Brand]

----Add New Attributes Here

FROM dbo.ProductLine INNER JOIN dbo.ProductMaster
ON dbo.ProductLine.prodlineID = dbo.ProductMaster.ProductlineID

LEFT OUTER JOIN dbo.ProductAttributeValues AS ProductAttributeValues_Brand
ON dbo.ProductMaster.ProductId = ProductAttributeValues_Brand.ProductId

----Add New Tables And Join Conditions Here


WHERE (dbo.ProductLine.prodlineID = 7)

AND (ProductAttributeValues_Brand.attId = 265 or ProductAttributeValues_Brand.attId is null)

----Add AttributeId Where Condition Here

.............................................
Bye Best Of Luck Keep In Touch
AnswerRe: Query HElppp.....!!!!! Pin
Luc Pattyn17-Apr-09 2:14
sitebuilderLuc Pattyn17-Apr-09 2:14 
QuestionProblem with Identity Specification in SQL Server 2008 Pin
Krishnraj16-Apr-09 21:06
Krishnraj16-Apr-09 21:06 
NewsSyncFolder Pin
blazers4u16-Apr-09 19:32
blazers4u16-Apr-09 19:32 
GeneralRe: SyncFolder Pin
Ashfield16-Apr-09 20:59
Ashfield16-Apr-09 20:59 
QuestionUsing Extended stored proc's within functions / dynamic SQL Pin
ruanr16-Apr-09 1:49
ruanr16-Apr-09 1:49 
QuestionOutput Pin
jonhbt16-Apr-09 1:30
jonhbt16-Apr-09 1:30 
AnswerRe: Output Pin
scottgp16-Apr-09 2:33
professionalscottgp16-Apr-09 2:33 
AnswerRe: Output Pin
Kevin Horgan16-Apr-09 21:01
Kevin Horgan16-Apr-09 21:01 
QuestionMS SQL query syntax for full text search Pin
Vishnu Nath15-Apr-09 21:56
Vishnu Nath15-Apr-09 21:56 
AnswerRe: MS SQL query syntax for full text search Pin
Rajesh Anuhya16-Apr-09 22:02
professionalRajesh Anuhya16-Apr-09 22:02 
AnswerRe: MS SQL query syntax for full text search Pin
Member 77074615-Mar-10 6:39
Member 77074615-Mar-10 6:39 
QuestionDateTime Problem Pin
jonhbt15-Apr-09 21:24
jonhbt15-Apr-09 21:24 
AnswerRe: DateTime Problem Pin
Kevin Horgan15-Apr-09 21:43
Kevin Horgan15-Apr-09 21:43 
GeneralRe: DateTime Problem Pin
jonhbt15-Apr-09 22:05
jonhbt15-Apr-09 22:05 
GeneralRe: DateTime Problem Pin
Kevin Horgan15-Apr-09 22:19
Kevin Horgan15-Apr-09 22:19 
GeneralRe: DateTime Problem Pin
jonhbt15-Apr-09 22:43
jonhbt15-Apr-09 22:43 
AnswerRe: DateTime Problem Pin
Kevin Horgan15-Apr-09 22:55
Kevin Horgan15-Apr-09 22:55 

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.