Click here to Skip to main content
15,915,319 members
Home / Discussions / Database
   

Database

 
GeneralRe: Making a field null Pin
myNameIsRon23-Apr-06 15:04
myNameIsRon23-Apr-06 15:04 
AnswerRe: Making a field null Pin
dansoft24-Apr-06 4:58
dansoft24-Apr-06 4:58 
Questionimport excel in sql server 2005 Pin
Sasuko23-Apr-06 8:04
Sasuko23-Apr-06 8:04 
AnswerRe: import excel in sql server 2005 Pin
Frank Kerrigan25-Apr-06 0:37
Frank Kerrigan25-Apr-06 0:37 
GeneralRe: import excel in sql server 2005 Pin
Susuko25-Apr-06 9:33
Susuko25-Apr-06 9:33 
GeneralRe: import excel in sql server 2005 Pin
Frank Kerrigan25-Apr-06 10:19
Frank Kerrigan25-Apr-06 10:19 
GeneralRe: import excel in sql server 2005 Pin
Colin Angus Mackay25-Apr-06 22:32
Colin Angus Mackay25-Apr-06 22:32 
QuestionReporting Services Pin
devvvy23-Apr-06 5:19
devvvy23-Apr-06 5:19 
Trying to create a report with tabular format. Run into a few problems...


I have the following entities:
a. Project (Parent of Budget and Contract)
b. Budgets
c. Contracts

So, I created two dataset:
<br />
SELECT     <br />
	PRJ.[ID] AS PROJID, <br />
	PRJ.[Name] AS PROJNAME, <br />
	PRJ.[CreateDate] AS PROJCREATEDATE, <br />
	CTR.[ID] AS CONTRACTID, <br />
	CTR.[Code] AS CONTRACTCODE, <br />
	CTR.[Name] AS CONTRACTNAME<br />
FROM         <br />
	Project AS PRJ INNER JOIN<br />
  	Contract CTR <br />
  	ON PRJ.[ID] = CTR.[ProjectID]<br />
                      <br />
-- DataSet - ProjectBudget:                      <br />
SELECT     <br />
  PRJ.[ID] AS PROJID, PRJ.[Name] AS PROJNAME, <br />
  PRJ.[CreateDate] AS PROJCREATEDATE, <br />
  BDG.[BudgetType] AS BUDTYPE,<br />
  BDG.[BudgetDescMM] AS BUDDESCMM,<br />
  BDG.[BudgetDescYYYY] AS BUDDESCYYYY,<br />
  BDG.[Remarks] AS BDGREMARKS<br />
FROM        <br />
	Project AS PRJ INNER JOIN<br />
  	Budget BDG<br />
  	ON PRJ.[ID] = BDG.[ProjectID]


Now, in my report, I have this ONE table - I wish to have "Project ID" as first column of this table, with TWO drilldown buttons (the "+" sign/button) buttons to respectively show/hide child "Budget" and child "Contract". The problem is, Reporting Service allow one to specify only ONE dataset for each "Table" on the report (right click table, then: "Properties>General>Dataset Name" - only one dataset can be selected.).

I tried to get around this by using "hyperlink" navigation instead of drilldown buttons. But, anyone can tell me if any security issue will get into the way when user navigate from one report to another through embedded hyperlink? Will user be prompted to enter credential twice?

Thanks in advance!
QuestionSorting Upper and Lower Case Strings Pin
japel23-Apr-06 3:17
japel23-Apr-06 3:17 
AnswerRe: Sorting Upper and Lower Case Strings Pin
Colin Angus Mackay23-Apr-06 4:20
Colin Angus Mackay23-Apr-06 4:20 
QuestionSelf Join and Euqi join Pin
Rajesh_K_Sharma23-Apr-06 0:20
Rajesh_K_Sharma23-Apr-06 0:20 
AnswerRe: Self Join and Euqi join Pin
Colin Angus Mackay23-Apr-06 3:06
Colin Angus Mackay23-Apr-06 3:06 
Questionstored procedures problem in SQL Server 2000 Pin
pankajgarg1222-Apr-06 21:40
pankajgarg1222-Apr-06 21:40 
AnswerRe: stored procedures problem in SQL Server 2000 Pin
Colin Angus Mackay22-Apr-06 22:38
Colin Angus Mackay22-Apr-06 22:38 
AnswerRe: stored procedures problem in SQL Server 2000 Pin
dadax_8523-Apr-06 2:38
dadax_8523-Apr-06 2:38 
QuestionSqlParameter Pin
WDI22-Apr-06 19:40
WDI22-Apr-06 19:40 
AnswerRe: SqlParameter Pin
Colin Angus Mackay23-Apr-06 0:12
Colin Angus Mackay23-Apr-06 0:12 
QuestionUpdate Database through Dataset using DataAdapter? Pin
MudkiSekhon21-Apr-06 21:20
MudkiSekhon21-Apr-06 21:20 
QuestionTextBox databinding Problem Pin
wasife21-Apr-06 19:36
wasife21-Apr-06 19:36 
GeneralDocument SQLServer Indexes Pin
Tim Carmichael21-Apr-06 5:52
Tim Carmichael21-Apr-06 5:52 
GeneralRe: Document SQLServer Indexes Pin
Paul Brower21-Apr-06 6:00
Paul Brower21-Apr-06 6:00 
QuestionSearching Capabilities Pin
Usman Tasleem Akshaf21-Apr-06 2:25
Usman Tasleem Akshaf21-Apr-06 2:25 
AnswerRe: Searching Capabilities Pin
Colin Angus Mackay21-Apr-06 2:36
Colin Angus Mackay21-Apr-06 2:36 
QuestionSQL 2000 RS Help needed! Pin
Hans Vergouwen21-Apr-06 0:16
Hans Vergouwen21-Apr-06 0:16 
QuestionSuggestions for JOINs for audit tables Pin
Daire Cunningham20-Apr-06 23:20
Daire Cunningham20-Apr-06 23:20 

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.