Showing posts with label page. Show all posts
Showing posts with label page. Show all posts

Friday, March 30, 2012

network error

Hi,
Running a stored procedure in query analyser returns data but when running the asp.net page which uses that stored procedure returns an exception which is:
General network error. Check your network documentation

Do you know what the problem could be please?
ThanksNetwork errors are your SQL Server is installed with the local systems account which leaves SQL Server Agent without Network permissions. The solution you have to install SQL Server with a service account. Hope this helps.

Kind regards,
Gift Peddie|||Hi,
Are you sure this is the solution?
It's just that the query works for some and not for all of the queries that are passed through the network.
Thanks|||Installing SQL Server with a service account is good practice in all but free standing developer boxes because after SQL Server Service, SQL Server Agent is the next most important service in SQL Server. Some distributed queries will fail and you cannot run Replication because the Local Systems account leaves SQL Server Agent without Network permissions. Hope this helps.

Kind regards,
Gift Peddie

Wednesday, March 21, 2012

Nested subreports in a list

When I reference a nested subreport within a list, the subreport fails to
render. The preview page says "Error: Subreport could not be shown", and the
debug output says "An error occurred while executing the subreport
â'subreport2â': Object reference not set to an instance of an object." I have
already spent most of a day on this problem and I'm out of ideas.
I've managed to reduce it to the following simple case:
1) Create a new report called Report1.rdl. Put a text box on it with a
message.
2) Create anothier report called Report2.rdl. Put a subreport on it and
have it reference Report1.
3) Create a third report called Report3.rdl. Create a simple DataSet and a
list that references it. Within the list, add a subreport that references
Report2.
4) Go to the Preview pane for Report3. This is when I see the error.
Any idea on what might be causing this or how I might be able to work around
it?Hello Dave,
This is a known issue and will be fixed in SQL 2005 SP2.
There is a workaround for this issue now:
In "Report2", you could add a List control and bound to a dataset which
have only one record. Then put the subreport for "Report1" in the list
control.
Then in the "Report3", you could add the subreport and put it in to the
list control without any error.
You could refer this thread in the newsgroup which I have replied the same
issue.
http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs/brow
se_frm/thread/d4a097536e77cb44/c210ed9fe6eb0f75
Hope this will be helpful.
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================(This posting is provided "AS IS", with no warranties, and confers no
rights.)|||Works for me.
Thanks.
"Wei Lu [MSFT]" wrote:
> Hello Dave,
> This is a known issue and will be fixed in SQL 2005 SP2.
> There is a workaround for this issue now:
> In "Report2", you could add a List control and bound to a dataset which
> have only one record. Then put the subreport for "Report1" in the list
> control.
> Then in the "Report3", you could add the subreport and put it in to the
> list control without any error.
> You could refer this thread in the newsgroup which I have replied the same
> issue.
> http://groups.google.com/group/microsoft.public.sqlserver.reportingsvcs/brow
> se_frm/thread/d4a097536e77cb44/c210ed9fe6eb0f75
> Hope this will be helpful.
> Sincerely,
> Wei Lu
> Microsoft Online Community Support
> ==================================================> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
> ications.
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://msdn.microsoft.com/subscriptions/support/default.aspx.
> ==================================================> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>

Monday, March 19, 2012

Nested report?

I want to create a report that retrieves data when I click on different
items on the same report page.
What I want to do is to first get an employee, and the hours registered for
this person at this period.
When I click on the person's name, I want to show a new report, that shows
all the clients that this person has registered hours working with this
period.
When I click on a client, I want to show a new report, that shows all the
projects that this person has worked on for this client during this period.
The projects should preferably be showed inside the table showing the
clients, so you can see what client the projects are connected to.
I've managed to create this with 3 different datasets in one report.
Unfortunately, the report will get all the data at once, but I want it to
get the project data when you click on a client, not when you load the
report. Is this possible?
All help appreciated!
Kaisa M. LindahlYou are describing a scenario where RS shines. From what I can tell you what
to do what is called drill through (open up new report) and drill down.
First drill through. Create a new report called Client. The client should
have a query parameter that accepts employee. When you create a query
parameter RS automatically creates a report parameter. Test this report
standalone and make sure it works. Now, in your employee report click on the
employee field and change the text to blue and underlined (so your users
know to click on it). The right mouse click, properties, advanced
properties, navigation. Jump to Report. Pick the client report and then map
the parameter for the client report to your employee field value.
Drill down works by have a single dataset with all the information. So it
would contain both client and project information. Then you add groups and
change row visiblity appropriately and what you end up with is where there
will be a plus sign on the row showing the client. When clicked on it
expands and shows all the projects for that client. Read up in help on how
to do this.
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
What you are describing is called drill through reports. You should have
three reports: employee, clients, Instead of having all the datasets in one
report,
"Kaisa M. Lindahl" <kaisaml@.hotmail.com> wrote in message
news:uWSLa3v0EHA.1860@.TK2MSFTNGP15.phx.gbl...
>I want to create a report that retrieves data when I click on different
> items on the same report page.
> What I want to do is to first get an employee, and the hours registered
> for
> this person at this period.
> When I click on the person's name, I want to show a new report, that shows
> all the clients that this person has registered hours working with this
> period.
> When I click on a client, I want to show a new report, that shows all the
> projects that this person has worked on for this client during this
> period.
> The projects should preferably be showed inside the table showing the
> clients, so you can see what client the projects are connected to.
> I've managed to create this with 3 different datasets in one report.
> Unfortunately, the report will get all the data at once, but I want it to
> get the project data when you click on a client, not when you load the
> report. Is this possible?
> All help appreciated!
> Kaisa M. Lindahl
>|||There are two ways in which you can achieve this, either using drill-down or
using linked reports. Or you could do a combination of both methods. Take the
drill-down method first:
Write a single query that returns employee, client and project information.
For simplicity, if we assume there is one table for each, the query will look
something like:
select col1, col2,.. from employee join client ... join project ...
Next create a grouped report with employee information in the top level
group, client information in the second group and project information in the
details. highlight the entire detail row (not just the textboxes) by clicking
on the row header on the left (it has three dashes). In the properties
window, make the Hidden property true (the property is a subproperty of the
Visibility property), and specify the ToggleItem as a textbox in the second
group row. This means that initially all detail rows containing project rows
will be hidden until you click a textbox in the group above.
You want to do this for the second group row too. Highlight the entire row
by clicking on the row selector. make the Hidden property true and specify
the ToggleItem property to be a textbox in the outer group row.
Now when you open your report, initially only employee information will
show. There will be a + icon to the left of each employee name to show that
there is hidden information. Click on the + and you will see all the clients
for that employee. Click on the + to the left of a client and you will see
all the projects for that client.
The second way is to create a separate report say for the projects
information. It should have a parameter that takes ClientID. In your first
report, just have the employee and client rows. In the first report, go to
the row with client information, click on a textbox and access the Action
property. Click on the ellipsis button to the right of it, and specify Jump
to Report option. Specify the report with project information, and specify
the parameters. This time the project information will appear as a popup
report.
HTH
Charles Kangai, MCT, MCDBA
"Kaisa M. Lindahl" wrote:
> I want to create a report that retrieves data when I click on different
> items on the same report page.
> What I want to do is to first get an employee, and the hours registered for
> this person at this period.
> When I click on the person's name, I want to show a new report, that shows
> all the clients that this person has registered hours working with this
> period.
> When I click on a client, I want to show a new report, that shows all the
> projects that this person has worked on for this client during this period.
> The projects should preferably be showed inside the table showing the
> clients, so you can see what client the projects are connected to.
> I've managed to create this with 3 different datasets in one report.
> Unfortunately, the report will get all the data at once, but I want it to
> get the project data when you click on a client, not when you load the
> report. Is this possible?
> All help appreciated!
> Kaisa M. Lindahl
>
>|||Thank you for answering, but at least the first method doesn't do what I
want to do. It makes a splendid report, I've already made one that does
this. My problem is that the report is a really big OLAP-based report, so
having a query that returns ALL data from all projects and clients takes a
few minutes. That's why I want a report that doesn't retrieve the project
data before you click on a link, to shorten the time for the time it takes
to open the report and see the top level data.
The second method looks interesting, so I might try that one out.
Also, Bruce L-C has made some suggestions in another reply, so I've got even
more things to try out.
Thanks, guys!
Kaisa M. Lindahl
"Charles Kangai" <CharlesKangai@.discussions.microsoft.com> wrote in message
news:8EC66727-246F-48B9-B2DC-E2E521B45804@.microsoft.com...
> There are two ways in which you can achieve this, either using drill-down
or
> using linked reports. Or you could do a combination of both methods. Take
the
> drill-down method first:
> Write a single query that returns employee, client and project
information.
> For simplicity, if we assume there is one table for each, the query will
look
> something like:
> select col1, col2,.. from employee join client ... join project ...
> Next create a grouped report with employee information in the top level
> group, client information in the second group and project information in
the
> details. highlight the entire detail row (not just the textboxes) by
clicking
> on the row header on the left (it has three dashes). In the properties
> window, make the Hidden property true (the property is a subproperty of
the
> Visibility property), and specify the ToggleItem as a textbox in the
second
> group row. This means that initially all detail rows containing project
rows
> will be hidden until you click a textbox in the group above.
> You want to do this for the second group row too. Highlight the entire row
> by clicking on the row selector. make the Hidden property true and specify
> the ToggleItem property to be a textbox in the outer group row.
> Now when you open your report, initially only employee information will
> show. There will be a + icon to the left of each employee name to show
that
> there is hidden information. Click on the + and you will see all the
clients
> for that employee. Click on the + to the left of a client and you will see
> all the projects for that client.
> The second way is to create a separate report say for the projects
> information. It should have a parameter that takes ClientID. In your first
> report, just have the employee and client rows. In the first report, go to
> the row with client information, click on a textbox and access the Action
> property. Click on the ellipsis button to the right of it, and specify
Jump
> to Report option. Specify the report with project information, and specify
> the parameters. This time the project information will appear as a popup
> report.
> HTH
> Charles Kangai, MCT, MCDBA
> "Kaisa M. Lindahl" wrote:
> > I want to create a report that retrieves data when I click on different
> > items on the same report page.
> > What I want to do is to first get an employee, and the hours registered
for
> > this person at this period.
> > When I click on the person's name, I want to show a new report, that
shows
> > all the clients that this person has registered hours working with this
> > period.
> > When I click on a client, I want to show a new report, that shows all
the
> > projects that this person has worked on for this client during this
period.
> > The projects should preferably be showed inside the table showing the
> > clients, so you can see what client the projects are connected to.
> >
> > I've managed to create this with 3 different datasets in one report.
> > Unfortunately, the report will get all the data at once, but I want it
to
> > get the project data when you click on a client, not when you load the
> > report. Is this possible?
> >
> > All help appreciated!
> >
> > Kaisa M. Lindahl
> >
> >
> >

Friday, March 9, 2012

Needs Help with SQL on an ASP.Net page

Look athttp://www.explorencmountains.com/City2.aspx?CityID=32&CountyID=7. Look at how Atlantic Properties and Buck Mountain Estats show up twice. They are supposed to just show up once. They are listed under multiple categories. I only want them to show up once. The problem is with subcategoryid.

Here is the code I had to use for my SQL (Please look at the bolded part:

<code>

mySQL = "Select distinct listingtype, businessname, advertiser.advertiserid,advertisersubcategory.subcategoryidFrom Advertiser, AdvertiserSubCategory, SubCategories, County, City"
mySQL = mySQL & " where Advertiser.AdvertiserID = AdvertiserSubCategory.AdvertiserID"
mySQL = mySQL & " and AdvertiserSubCategory.SubCategoryID = SubCategories.SubCategoryID"
mySQL = mySQL & " and Advertiser.CountyID=County.CountyID"
mySQL = mySQL & " and Advertiser.CityID = City.CityID"
mySQL = mySQL & " and Advertiser.CountyID = '" & strCountyID & "'"
mySQL = mySQL & " and AdvertiserSubCategory.SubCategoryID IN (13,26)"
mySQL = mySQL & " and Approve =1"
mySQL = mySQL & " Order By ListingType, BusinessName, advertiser.advertiserid"

</code>

Look at the bolded part below. If I remove advertisersubcategory.subcategoryid from the above SQL Statement, I will get an error message. How do I work around this? I would like to remove advertisersubcategory.subcategoryid as a distinct field. But I would like to somehow have the SQL still retrieve the subcategoryid for the records. Does anyone have any idea how I can solve this problem?

<code>

<%# IIF(Databinder.Eval(Container.DataItem, "ListingType") ="Featured","<img src='./Images/Featuredlisting.gif' border='0'>", "")%> <font face="Arial, Helvetica, sans-serif" color="#FFFFFF" size=2><a href='<%# "DisplayAdvertiser.aspx?ID=" & DataBinder.Eval (Container.DataItem, "AdvertiserID") & "&CatID=" & DataBinder.Eval (Container.DataItem, "SubCategoryID") %>'>
<%# Databinder.Eval(Container.DataItem, "BusinessName") %>

</code>

You need to use ADO.NET parameterized query instead of what you have now and in SQL you can use a UNION to remove duplicates. In the second link the UNIONs are at the end one more thing run a search for UNION in SQL Server BOL (books online) for details because it comes with fixed requirements. Hope this helps.

http://msdn.microsoft.com/msdnmag/issues/05/05/DataPoints/
http://msdn2.microsoft.com/en-us/library/ms187731.aspx

|||

I really don't have a clue. I looked at some union statements in a book, but it didn't help. I tried the following sql statement:

Select distinct listingtype, businessname, advertiserid From Advertiser
Union
select distinct subcategoryid from AdvertiserSubCategory
Union
select distinct subcategoryid from SubCategories
Union
select distinct countyid from county
Union
select distinct cityid from City
where CountyID = 4
and SubCategoryID IN (13,26)
and Approve =1
Order By ListingType, BusinessName, advertiser.advertiserid

I got the following error message: Server: Msg 207, Level 16, State 3, Line 1
Invalid column name 'SubCategoryID'.
Server: Msg 207, Level 16, State 1, Line 1
Invalid column name 'SubCategoryID'.
Server: Msg 207, Level 16, State 1, Line 1
Invalid column name 'Approve'.

I really would like to get someone to actually help me to fix original code. Can someone please help?

|||

You should have tried the parameterized query first because your current query will open you up to SQL injection attacks and UNION performs implict distinct so your query is redundant and you must have the same data type facing the same direction as I told you to read up in the BOL(books online). Hope this helps.


SELECT LastName, FirstName
FROM EmployeeOne
UNION
SELECT LastName, FirstName
FROM EmployeeTwo
UNION
SELECT LastName, FirstName
FROM EmployeeThree ;
GO

|||

I am assuming you did not see the samples in the insert of the MSDN magazine so click on any of the figure inserts for many options like the one below.

private void GetOutputValues()
{
string sConnString =
"Server=(local);Database=Northwind;Integrated Security=True;";
string sProc = "prGet_Customer";
using (SqlConnection oCn = new SqlConnection(sConnString))
{
using (SqlCommand oCmd = new SqlCommand(sProc, oCn))
{
oCn.Open();
oCmd.CommandType = CommandType.StoredProcedure;

oCmd.Parameters.Add("@.sCustomerID", SqlDbType.NChar, 5);
oCmd.Parameters["@.sCustomerID"].Value = "ALFKI";

oCmd.Parameters.Add("@.sCompanyName", SqlDbType.NVarChar, 40);
oCmd.Parameters["@.sCompanyName"].Direction =
ParameterDirection.Output;

oCmd.Parameters.Add("@.sContactName", SqlDbType.NVarChar, 30);
oCmd.Parameters["@.sContactName"].Direction =
ParameterDirection.Output;

oCmd.Parameters.Add("@.sCity", SqlDbType.NVarChar, 15);
oCmd.Parameters["@.sCity"].Direction =
ParameterDirection.Output;

oCmd.ExecuteNonQuery();
oCn.Close();

string sCompanyName =
oCmd.Parameters["@.sCompanyName"].Value.ToString();
string sContacName =
oCmd.Parameters["@.sContactName"].Value.ToString();
string sCity = oCmd.Parameters["@.sCity"].Value.ToString();
}
}
}

|||

I am still clueless.

I tried SELECT ListingType, BusinessName, AdvertiserID
FROM Advertiser
UNION
SELECT subcategoryid
FROM AdvertiserSubCategory

GO

and it didn't work. Subcategoryid is not a field in Advertiser's table at all.

Here's the error message I am getting: All queries in an SQL statement containing a UNION operator must have an equal number of expressions in their target lists.

|||

SELECT ListingType, BusinessName, AdvertiserID
FROM Advertiser
WHERE SubcategoryID IN
(
SELECT subcategoryid
FROM AdvertiserSubCategory
WHERE SubcategoryID = AdvertiserID)

Here is a subquery for you try it, if you did not get the result try SQL prompt it is like VS intelisense for management studio but you still need to rewrite the other part in parameters,try the link below for SQL injection attacks. Hope this helps.

http://weblogs.asp.net/scottgu/

http://www.red-gate.com/products/SQL_Prompt/index.htm

|||

I really appreciate your help. I'm pretty lost. I really need help in rewriting

mySQL = "Select distinct listingtype, businessname, advertiser.advertiserid,advertisersubcategory.subcategoryidFrom Advertiser, AdvertiserSubCategory, SubCategories, County, City"
mySQL = mySQL & " where Advertiser.AdvertiserID = AdvertiserSubCategory.AdvertiserID"
mySQL = mySQL & " and AdvertiserSubCategory.SubCategoryID = SubCategories.SubCategoryID"
mySQL = mySQL & " and Advertiser.CountyID=County.CountyID"
mySQL = mySQL & " and Advertiser.CityID = City.CityID"
mySQL = mySQL & " and Advertiser.CountyID = '" & strCountyID & "'"
mySQL = mySQL & " and AdvertiserSubCategory.SubCategoryID IN (13,26)"
mySQL = mySQL & " and Approve =1"
mySQL = mySQL & " Order By ListingType, BusinessName, advertiser.advertiserid"

I really don't know how to. I am concerned about injection.

Saturday, February 25, 2012

need urgent help with sa account...

background sql2k on win2k3
i started getting this error msg when accessing properties page of 'sa'
and 'buildin/administrators' accounts in sql.
Error 21776 [SQL-DMO]the name 'dbo' was not found in the Users
Collection. If the name is qualified name,
use [] to separate various parts of the name, and try again.
i previously disabled the sa right for 'buildin/administrators' and now
i can't add the sa rights back to the group because of this err. i
can't modifiy the 'sa' account for the same reason. i tried to delete
'buildin/administrators' group and add it back but now i can't add it
back either.
1. how to add back the 'buildin/administrators' group?
2. how to fix this error? it doesn't happen to other non-sa accounts.
thank you!!What commadn where you executing to add the security group to sql server
again, Where you able to connect anyway (so did you turned on mixed auth. ?)
Jens Suessmeyer.
"=== Steve L ===" <steve.lin@.powells.com> schrieb im Newsbeitrag
news:1114720021.174631.14500@.g14g2000cwa.googlegroups.com...
> background sql2k on win2k3
> i started getting this error msg when accessing properties page of 'sa'
> and 'buildin/administrators' accounts in sql.
> Error 21776 [SQL-DMO]the name 'dbo' was not found in the Users
> Collection. If the name is qualified name,
> use [] to separate various parts of the name, and try again.
> i previously disabled the sa right for 'buildin/administrators' and now
> i can't add the sa rights back to the group because of this err. i
> can't modifiy the 'sa' account for the same reason. i tried to delete
> 'buildin/administrators' group and add it back but now i can't add it
> back either.
> 1. how to add back the 'buildin/administrators' group?
> 2. how to fix this error? it doesn't happen to other non-sa accounts.
> thank you!!
>|||> 1. how to add back the 'buildin/administrators' group?
EXEC sp_grantlogin 'BUILTIN\Administrators'
EXEC sp_addsrvrolemember 'BUILTIN\Administrators', 'symin'

> 2. how to fix this error? it doesn't happen to other non-sa accounts.
This error may be caused by an incorrect database owner in one or more of
your databases. You can correct the owner with sp_changedbowner like the
example below. See http://support.microsoft.com/kb/q218172/ for more
information.
USE MyDatabase
EXEC sp_changedbowner ''MyOwnerLogin'
Hope this helps.
Dan Guzman
SQL Server MVP
"=== Steve L ===" <steve.lin@.powells.com> wrote in message
news:1114720021.174631.14500@.g14g2000cwa.googlegroups.com...
> background sql2k on win2k3
> i started getting this error msg when accessing properties page of 'sa'
> and 'buildin/administrators' accounts in sql.
> Error 21776 [SQL-DMO]the name 'dbo' was not found in the Users
> Collection. If the name is qualified name,
> use [] to separate various parts of the name, and try again.
> i previously disabled the sa right for 'buildin/administrators' and now
> i can't add the sa rights back to the group because of this err. i
> can't modifiy the 'sa' account for the same reason. i tried to delete
> 'buildin/administrators' group and add it back but now i can't add it
> back either.
> 1. how to add back the 'buildin/administrators' group?
> 2. how to fix this error? it doesn't happen to other non-sa accounts.
> thank you!!
>|||Dan, Thanks for saving my day!!! simply executed the two commands you
sent me. 'BUILTIN\Administrators' was back and all the problems
mysteriously went away. i did detach like 8 databases from the other
server and attached to this server before this happened. i think that
might be one of the problems. although i'm not sure in general, who
should be the owner of all the databases in SQL Server land. since my
accout has sa right, quite often it showes i'm the owner of a database,
but sometimes it's sa, and sometimes it's the domain account created
for running the service (with sa privileges).|||I usually specify the 'sa' login as the owner of production databases and
make it a practice to change the owner following a database restore or
attach. This works well when only symin role members can create
dbo-owned objects. In cases where non-symin role members create
dbo-owned objects, you can create a login that is used only for database
ownership.
Hope this helps.
Dan Guzman
SQL Server MVP
"=== Steve L ===" <steve.lin@.powells.com> wrote in message
news:1114788026.433970.131740@.o13g2000cwo.googlegroups.com...
> Dan, Thanks for saving my day!!! simply executed the two commands you
> sent me. 'BUILTIN\Administrators' was back and all the problems
> mysteriously went away. i did detach like 8 databases from the other
> server and attached to this server before this happened. i think that
> might be one of the problems. although i'm not sure in general, who
> should be the owner of all the databases in SQL Server land. since my
> accout has sa right, quite often it showes i'm the owner of a database,
> but sometimes it's sa, and sometimes it's the domain account created
> for running the service (with sa privileges).
>

Monday, February 20, 2012

Need to Understand how to Do Simple Pagination

I'm running Reporting Services 2005 and I need a report that basically
shows only 10 lines per page. I'm trying to google around for answers
on this, but they are not straight forward at all!On Feb 21, 11:33 am, "Daedius" <richard.An...@.gmail.com> wrote:
> I'm running Reporting Services 2005 and I need a report that basically
> shows only 10 lines per page. I'm trying to google around for answers
> on this, but they are not straight forward at all!
I know that if you were using columns in your report, you could group
on expression: =Ceiling(RowNumber(Nothing)/10) where 10 is the number
of lines/rows before starting a new column. I would guess that this
could also be used w/report objects as well (i.e., tables, lists,
etc). Hope this helps.
Regards,
Enrique Martinez
Sr. SQL Server Developer|||You can use something like this. in a page break from group,
=Int((RowNumber(Nothing)-1)/25) 25 is the line to display, in your case it
should be 10..
Amarnath
"Daedius" wrote:
> I'm running Reporting Services 2005 and I need a report that basically
> shows only 10 lines per page. I'm trying to google around for answers
> on this, but they are not straight forward at all!
>