Viewing 15 posts - 121 through 135 (of 242 total)
Hi Kenpet,
Its not optimized solution but can solve your problem:
DECLARE @T TABLE (ID int, NAME varchar, Amount1 int, Amount2 int,Amount3 int)
INSERT INTO @T
SELECT 1, 'A', 100, 20, NULL UNION
SELECT 2,...
July 16, 2008 at 7:28 am
Hi,
use this expression:-
=ReportItems!TextBoxName.Value
July 16, 2008 at 5:06 am
Hi Chandru,
Try this
SELECT D.DepID,D.DepName,P.FirstName,P.LastName
FROM #Department D
LEFT OUTER JOIN #Department_Person DP ON D.DepID=DP.DepID
LEFT OUTER JOIN #Person P ON P.PersonID=DP.PersonID
July 16, 2008 at 2:00 am
Hi Dity,
When you click on expression of any TextBox you can see the Edit Expression dialogue box which is shown in attached image.
Here, you can select Globals from left side,...
July 16, 2008 at 12:09 am
Shaun McGuile (7/15/2008)
How does the functionality help me the DBA/Developer?
It gives me info on a table or proc which I could get elsewhere and...
July 15, 2008 at 7:50 am
Have you changed the Data Type of Date Field some where?
If yes then cast it into DateTime and then apply the ORDER BY
July 15, 2008 at 7:01 am
I just wanted to change the CHAR into VARCHAR.
I tried to use dynamic SQL to print the query. Thats it.
July 15, 2008 at 6:31 am
July 15, 2008 at 6:24 am
You can use Globals!ReportName
July 15, 2008 at 6:21 am
Even you can use the query suggested by Ryan
select a, min(b) as b from [Table 1] group by a
select a, max(b) as b from [Table 1] group by a
July 15, 2008 at 6:08 am
--Try This
ALTER PROCEDURE Get_CustomerDetailsByName
@CustomerName varchar(30)
...
July 15, 2008 at 6:06 am
I dont know the reason but it is working on my system without removing dbo 😎
July 15, 2008 at 5:57 am
Hi Sanchita,
BOL is best to learn about that.
Just type the keyword in INDEX of BOL and see the explaination.
July 15, 2008 at 5:53 am
Viewing 15 posts - 121 through 135 (of 242 total)