Viewing 8 posts - 1 through 8 (of 8 total)
Hi
Try this :
SELECT [UserName]
,[Data] , ROW_NUMBER() OVER (ORDER BY [UserName]) AS ID
INTO A FROM [EmployeeDB].[dbo].[User]
SELECT [UserName] ,[Data] FROM A WHERE ID IN (
SELECT...
July 20, 2010 at 11:21 pm
Hi,
You can write one stored procedure and Call it through SSRS.
In SSRS you can display the data easily. So I dont see any issue in that.
Thanks
July 19, 2010 at 11:42 pm
Hi
I created a table called User and inserted the records.
SELECT [UserName],[Data] FROM [dbo].[User]
This is the query which will give maximum value :
select UserName,MAX(Data) AS MaxValue from [User] group...
July 19, 2010 at 10:57 pm
Hi
Check the following link this might help :
Thanks
July 19, 2010 at 10:20 pm
Hi,
Try installing .NET Framework first and then install SQL Server.
July 19, 2010 at 3:28 am
This can be done be using ISNULL() check.
SELECT
ISNULL(column_name1,'') AS "ColumnName1",
ISNULL(column_name2,'') AS "ColumnName2"
ISNULL(column_name3,'') AS "ColumnName3"
FROM table FOR XML PATH('Table'), ELEMENTS
May 28, 2010 at 12:20 pm
The report shows the annual report of the sales for the company. We usually get around 65000 rows.
Is there a possiblity of connection timeout while generating the report?
April 19, 2010 at 10:16 pm
Hi
I am facing an issue in page break when the report is rendered as web archive. I have applied PageBreak for the report on a group. This page break...
July 24, 2009 at 5:50 am
Viewing 8 posts - 1 through 8 (of 8 total)