Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 2005
»
T-SQL (SS2K5)
»
Output of Dynamic variable to next query
Output of Dynamic variable to next query
Rate Topic
Display Mode
Topic Options
Author
Message
jeganbenitto.francis
jeganbenitto.francis
Posted Thursday, February 14, 2013 6:48 AM
Grasshopper
Group: General Forum Members
Last Login: Thursday, April 25, 2013 8:06 AM
Points: 16,
Visits: 53
Hi All,
I have a table named tbl which contains 250 rows
I have a Varaible @CNT = SELECT count(*) from tbl
Then i have a query as Select top 10 * from tbl
Now i want to pass @CNT into second query.
The output of Select top 10 * from tbl will be
1 val1
2 val2
. .
. .
. .
10 val 10
But i want as
1 val1 250
2 val2 250
. .
. .
. .
10 val 10 250
250 indicates the value of @CNT.
Or is there any other way in which i can pass @CNT as a seperate field in SQL Server Reporitng Services RDL
Thanks in advance
Post #1420029
anthony.green
anthony.green
Posted Thursday, February 14, 2013 6:51 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
needs to be done in the same session but do
declare @cnt int
select @cnt = count(*) from table
select top 10 *, @cnt from table
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1420032
jeganbenitto.francis
jeganbenitto.francis
Posted Thursday, February 14, 2013 7:11 AM
Grasshopper
Group: General Forum Members
Last Login: Thursday, April 25, 2013 8:06 AM
Points: 16,
Visits: 53
Thanks a lot Anthony. This helped me to fix the issue with which i was struggling
Post #1420047
« Prev Topic
|
Next Topic »
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.