I need a query (script) or a tool to obtain a report (or audit report) for
all databases instanced into SQL Server, just for an entittlement review aun
audit reports.
The fields are:
User, role, permissions, last date access
Best regards to everyone.
JosSee:-
SYSPROTECT system table and system procedure SP_HELPROTECT
Thanks
Hari
SQL Server MVP
"Jos Archondo" <jarchondo@.spvs.gov.bo> wrote in message
news:uMv%23UlC1FHA.664@.tk2msftngp13.phx.gbl...
>I need a query (script) or a tool to obtain a report (or audit report) for
> all databases instanced into SQL Server, just for an entittlement review
> aun
> audit reports.
> The fields are:
> User, role, permissions, last date access
> Best regards to everyone.
> Jos
>|||You should also run sp_helplogins. That will help define where
sp_helprotect should be run.
RLF
"Jos Archondo" <jarchondo@.spvs.gov.bo> wrote in message
news:uMv%23UlC1FHA.664@.tk2msftngp13.phx.gbl...
>I need a query (script) or a tool to obtain a report (or audit report) for
> all databases instanced into SQL Server, just for an entittlement review
> aun
> audit reports.
> The fields are:
> User, role, permissions, last date access
> Best regards to everyone.
> Jos
>
Showing posts with label tool. Show all posts
Showing posts with label tool. Show all posts
Wednesday, March 21, 2012
How can I monitor my SQL?
Hi,
Today, I heard about Sql Profiler, and I seems to be a tool to monitor, analyze, and fine tune sql server. Is there a tool like this for SQL Server Express 2005?
thanks,
John
The SQL profiler comes apart of the SQL Server 2005 developer + editions. It is not available in express but i am sure there should be some free profilers around. You basically use a SQL profiler to see alot of things happening to a database, like viewing authentications, when a stored procedure runs and how often, the time it takes for a procedure to execute. You also can profile things like the broker service, and there is heaps more!
Monday, March 19, 2012
How can I list NTLM permissions on a database
Hi folks,
does anybody know a tool or command/sql statement to list all permissions
which are set on a given database. The database has been created years ago
using network authetication. What I am looking for is something like dumpsec
for NTFS.
Thanks
AndreHi Andre,
Did you mean that you would like to list all permissions specified to the
database users on a given database?
You may try the following statement:
USE <database_name>
Go
select distinct l.name as grantee_name, p.permission_name from
sys.database_permissions as p join sys.database_principals as l
ON p.grantee_principal_id = l.principal_id
order by grantee_name
Hope this helps. If you have any other questions or concerns, please feel
free to let me know.
Best regards,
Charles Wang
Microsoft Online Community Support
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================|||Hi,
I am interested in this issue. Would you mind letting me know the result of
the suggestions? If you need further assistance, feel free to let me know.
I will be more than happy to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================|||Charles,
thanks a lot for your quick reply to my issue.
The SQL query you provided did not work. I assume it was meant for SQL
Server 2005. Sorry, in my post I forgot to mention the used version (SQL
Server 2000). However, after searching the internet for a way to dump the
permissions, I found DumpSQLSec. A nice handy tool which dumps a lot of
informations about a database table. See
http://www.sqlservercentral.com/columnists/cmiller/dumpsqlpermissions.asp
for details.
Again, thanks for your support
Andre
"Charles Wang[MSFT]" <changliw@.online.microsoft.com> schrieb im Newsbeitrag
news:tFyfyC2zHHA.5836@.TK2MSFTNGHUB02.phx.gbl...
> Hi,
> I am interested in this issue. Would you mind letting me know the result
> of
> the suggestions? If you need further assistance, feel free to let me know.
> I will be more than happy to be of assistance.
> Best regards,
> Charles Wang
> Microsoft Online Community Support
> ======================================================> When responding to posts, please "Reply to Group" via
> your newsreader so that others may learn and benefit
> from this issue.
> ======================================================> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> ======================================================>|||Hi Andre,
Thank you for your reply and the detailed additional feedback on how you
were successful in resolving this issue. This information has been added to
Microsoft's database. Your solution will benefit many other users, and we
really value having you as a Microsoft customer.
If you have any other questions or concerns, please do not hesitate to
contact us. It is always our pleasure to be of assistance.
Have a nice day!
Best regards,
Charles Wang
Microsoft Online Community Support
=====================================================Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
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.
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================
does anybody know a tool or command/sql statement to list all permissions
which are set on a given database. The database has been created years ago
using network authetication. What I am looking for is something like dumpsec
for NTFS.
Thanks
AndreHi Andre,
Did you mean that you would like to list all permissions specified to the
database users on a given database?
You may try the following statement:
USE <database_name>
Go
select distinct l.name as grantee_name, p.permission_name from
sys.database_permissions as p join sys.database_principals as l
ON p.grantee_principal_id = l.principal_id
order by grantee_name
Hope this helps. If you have any other questions or concerns, please feel
free to let me know.
Best regards,
Charles Wang
Microsoft Online Community Support
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================|||Hi,
I am interested in this issue. Would you mind letting me know the result of
the suggestions? If you need further assistance, feel free to let me know.
I will be more than happy to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================|||Charles,
thanks a lot for your quick reply to my issue.
The SQL query you provided did not work. I assume it was meant for SQL
Server 2005. Sorry, in my post I forgot to mention the used version (SQL
Server 2000). However, after searching the internet for a way to dump the
permissions, I found DumpSQLSec. A nice handy tool which dumps a lot of
informations about a database table. See
http://www.sqlservercentral.com/columnists/cmiller/dumpsqlpermissions.asp
for details.
Again, thanks for your support
Andre
"Charles Wang[MSFT]" <changliw@.online.microsoft.com> schrieb im Newsbeitrag
news:tFyfyC2zHHA.5836@.TK2MSFTNGHUB02.phx.gbl...
> Hi,
> I am interested in this issue. Would you mind letting me know the result
> of
> the suggestions? If you need further assistance, feel free to let me know.
> I will be more than happy to be of assistance.
> Best regards,
> Charles Wang
> Microsoft Online Community Support
> ======================================================> When responding to posts, please "Reply to Group" via
> your newsreader so that others may learn and benefit
> from this issue.
> ======================================================> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> ======================================================>|||Hi Andre,
Thank you for your reply and the detailed additional feedback on how you
were successful in resolving this issue. This information has been added to
Microsoft's database. Your solution will benefit many other users, and we
really value having you as a Microsoft customer.
If you have any other questions or concerns, please do not hesitate to
contact us. It is always our pleasure to be of assistance.
Have a nice day!
Best regards,
Charles Wang
Microsoft Online Community Support
=====================================================Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
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.
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================
How can I list NTLM permissions on a database
Hi folks,
does anybody know a tool or command/sql statement to list all permissions
which are set on a given database. The database has been created years ago
using network authetication. What I am looking for is something like dumpsec
for NTFS.
Thanks
AndreHi Andre,
Did you mean that you would like to list all permissions specified to the
database users on a given database?
You may try the following statement:
USE <database_name>
Go
select distinct l.name as grantee_name, p.permission_name from
sys.database_permissions as p join sys.database_principals as l
ON p.grantee_principal_id = l.principal_id
order by grantee_name
Hope this helps. If you have any other questions or concerns, please feel
free to let me know.
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============|||Hi,
I am interested in this issue. Would you mind letting me know the result of
the suggestions? If you need further assistance, feel free to let me know.
I will be more than happy to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============|||Charles,
thanks a lot for your quick reply to my issue.
The SQL query you provided did not work. I assume it was meant for SQL
Server 2005. Sorry, in my post I forgot to mention the used version (SQL
Server 2000). However, after searching the internet for a way to dump the
permissions, I found DumpSQLSec. A nice handy tool which dumps a lot of
informations about a database table. See
http://www.sqlservercentral.com/col...permissions.asp
for details.
Again, thanks for your support
Andre
"Charles Wang[MSFT]" <changliw@.online.microsoft.com> schrieb im Newsbeit
rag
news:tFyfyC2zHHA.5836@.TK2MSFTNGHUB02.phx.gbl...
> Hi,
> I am interested in this issue. Would you mind letting me know the result
> of
> the suggestions? If you need further assistance, feel free to let me know.
> I will be more than happy to be of assistance.
> Best regards,
> Charles Wang
> Microsoft Online Community Support
> ========================================
==============
> When responding to posts, please "Reply to Group" via
> your newsreader so that others may learn and benefit
> from this issue.
> ========================================
==============
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> ========================================
==============
>|||Hi Andre,
Thank you for your reply and the detailed additional feedback on how you
were successful in resolving this issue. This information has been added to
Microsoft's database. Your solution will benefit many other users, and we
really value having you as a Microsoft customer.
If you have any other questions or concerns, please do not hesitate to
contact us. It is always our pleasure to be of assistance.
Have a nice day!
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
=============
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscript...ault.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
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/subscript...t/default.aspx.
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============
does anybody know a tool or command/sql statement to list all permissions
which are set on a given database. The database has been created years ago
using network authetication. What I am looking for is something like dumpsec
for NTFS.
Thanks
AndreHi Andre,
Did you mean that you would like to list all permissions specified to the
database users on a given database?
You may try the following statement:
USE <database_name>
Go
select distinct l.name as grantee_name, p.permission_name from
sys.database_permissions as p join sys.database_principals as l
ON p.grantee_principal_id = l.principal_id
order by grantee_name
Hope this helps. If you have any other questions or concerns, please feel
free to let me know.
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============|||Hi,
I am interested in this issue. Would you mind letting me know the result of
the suggestions? If you need further assistance, feel free to let me know.
I will be more than happy to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============|||Charles,
thanks a lot for your quick reply to my issue.
The SQL query you provided did not work. I assume it was meant for SQL
Server 2005. Sorry, in my post I forgot to mention the used version (SQL
Server 2000). However, after searching the internet for a way to dump the
permissions, I found DumpSQLSec. A nice handy tool which dumps a lot of
informations about a database table. See
http://www.sqlservercentral.com/col...permissions.asp
for details.
Again, thanks for your support
Andre
"Charles Wang[MSFT]" <changliw@.online.microsoft.com> schrieb im Newsbeit
rag
news:tFyfyC2zHHA.5836@.TK2MSFTNGHUB02.phx.gbl...
> Hi,
> I am interested in this issue. Would you mind letting me know the result
> of
> the suggestions? If you need further assistance, feel free to let me know.
> I will be more than happy to be of assistance.
> Best regards,
> Charles Wang
> Microsoft Online Community Support
> ========================================
==============
> When responding to posts, please "Reply to Group" via
> your newsreader so that others may learn and benefit
> from this issue.
> ========================================
==============
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
> ========================================
==============
>|||Hi Andre,
Thank you for your reply and the detailed additional feedback on how you
were successful in resolving this issue. This information has been added to
Microsoft's database. Your solution will benefit many other users, and we
really value having you as a Microsoft customer.
If you have any other questions or concerns, please do not hesitate to
contact us. It is always our pleasure to be of assistance.
Have a nice day!
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
=============
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscript...ault.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
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/subscript...t/default.aspx.
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============
Wednesday, March 7, 2012
how can i hide subreports and datasource in 'ReportingServer' bro
Hi,
I am very new to reporting services.And i did't work on any reporting tool
b4 this.
(1):
Now my problem is how can i hide subreports and datasource in ReportServer
browser?
(2):
I am sending http://myservername/Reportserver to all the end users.
is it correct way or is there any differnt way the users can watch reports.
plz give me detail discription
Any help will be appriciate
Thanks!All I do is click on Show Details button
Go to the properties of the data source or report (just to the right of the
checkbox is where you can click to get to the properties).
You will see a checkbox for hide in list view.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"simmi" <simmi@.discussions.microsoft.com> wrote in message
news:9BAC278F-31EA-4A2C-A817-1318ED2F8723@.microsoft.com...
> Hi,
> I am very new to reporting services.And i did't work on any reporting tool
> b4 this.
> (1):
> Now my problem is how can i hide subreports and datasource in
ReportServer
> browser?
> (2):
> I am sending http://myservername/Reportserver to all the end users.
> is it correct way or is there any differnt way the users can watch
reports.
> plz give me detail discription
> Any help will be appriciate
> Thanks!
>|||Hi Thanks for ur answer.
I am not talking about " ReportManager" browser .I am tallking about
"ReportServer".
I tried the same .But i am getting the same problem .
"Bruce L-C [MVP]" wrote:
> All I do is click on Show Details button
> Go to the properties of the data source or report (just to the right of the
> checkbox is where you can click to get to the properties).
> You will see a checkbox for hide in list view.
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>
> "simmi" <simmi@.discussions.microsoft.com> wrote in message
> news:9BAC278F-31EA-4A2C-A817-1318ED2F8723@.microsoft.com...
> > Hi,
> >
> > I am very new to reporting services.And i did't work on any reporting tool
> > b4 this.
> >
> > (1):
> > Now my problem is how can i hide subreports and datasource in
> ReportServer
> > browser?
> >
> > (2):
> >
> > I am sending http://myservername/Reportserver to all the end users.
> > is it correct way or is there any differnt way the users can watch
> reports.
> >
> > plz give me detail discription
> >
> > Any help will be appriciate
> >
> > Thanks!
> >
> >
>
>|||Are you opening up your website this way?
http://yourservernamehere/Reports/Pages/Folder.aspx
If so, then the instructions I gave you are what you want to do.
If you are doing it this way:
http://yourservernamehere/Reportserver
Then the question I have is why. The first is the way you get the portal
provided by MS and is the user friendly way to get to the reports. If you
want to do it the second way then I have no solution for you.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"simmi" <simmi@.discussions.microsoft.com> wrote in message
news:40C0320F-55F1-40AC-B58C-0A9A7853F935@.microsoft.com...
> Hi Thanks for ur answer.
> I am not talking about " ReportManager" browser .I am tallking about
> "ReportServer".
> I tried the same .But i am getting the same problem .
> "Bruce L-C [MVP]" wrote:
> > All I do is click on Show Details button
> > Go to the properties of the data source or report (just to the right of
the
> > checkbox is where you can click to get to the properties).
> >
> > You will see a checkbox for hide in list view.
> >
> >
> > --
> > Bruce Loehle-Conger
> > MVP SQL Server Reporting Services
> >
> >
> > "simmi" <simmi@.discussions.microsoft.com> wrote in message
> > news:9BAC278F-31EA-4A2C-A817-1318ED2F8723@.microsoft.com...
> > > Hi,
> > >
> > > I am very new to reporting services.And i did't work on any reporting
tool
> > > b4 this.
> > >
> > > (1):
> > > Now my problem is how can i hide subreports and datasource in
> > ReportServer
> > > browser?
> > >
> > > (2):
> > >
> > > I am sending http://myservername/Reportserver to all the end users.
> > > is it correct way or is there any differnt way the users can watch
> > reports.
> > >
> > > plz give me detail discription
> > >
> > > Any help will be appriciate
> > >
> > > Thanks!
> > >
> > >
> >
> >
> >
I am very new to reporting services.And i did't work on any reporting tool
b4 this.
(1):
Now my problem is how can i hide subreports and datasource in ReportServer
browser?
(2):
I am sending http://myservername/Reportserver to all the end users.
is it correct way or is there any differnt way the users can watch reports.
plz give me detail discription
Any help will be appriciate
Thanks!All I do is click on Show Details button
Go to the properties of the data source or report (just to the right of the
checkbox is where you can click to get to the properties).
You will see a checkbox for hide in list view.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"simmi" <simmi@.discussions.microsoft.com> wrote in message
news:9BAC278F-31EA-4A2C-A817-1318ED2F8723@.microsoft.com...
> Hi,
> I am very new to reporting services.And i did't work on any reporting tool
> b4 this.
> (1):
> Now my problem is how can i hide subreports and datasource in
ReportServer
> browser?
> (2):
> I am sending http://myservername/Reportserver to all the end users.
> is it correct way or is there any differnt way the users can watch
reports.
> plz give me detail discription
> Any help will be appriciate
> Thanks!
>|||Hi Thanks for ur answer.
I am not talking about " ReportManager" browser .I am tallking about
"ReportServer".
I tried the same .But i am getting the same problem .
"Bruce L-C [MVP]" wrote:
> All I do is click on Show Details button
> Go to the properties of the data source or report (just to the right of the
> checkbox is where you can click to get to the properties).
> You will see a checkbox for hide in list view.
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>
> "simmi" <simmi@.discussions.microsoft.com> wrote in message
> news:9BAC278F-31EA-4A2C-A817-1318ED2F8723@.microsoft.com...
> > Hi,
> >
> > I am very new to reporting services.And i did't work on any reporting tool
> > b4 this.
> >
> > (1):
> > Now my problem is how can i hide subreports and datasource in
> ReportServer
> > browser?
> >
> > (2):
> >
> > I am sending http://myservername/Reportserver to all the end users.
> > is it correct way or is there any differnt way the users can watch
> reports.
> >
> > plz give me detail discription
> >
> > Any help will be appriciate
> >
> > Thanks!
> >
> >
>
>|||Are you opening up your website this way?
http://yourservernamehere/Reports/Pages/Folder.aspx
If so, then the instructions I gave you are what you want to do.
If you are doing it this way:
http://yourservernamehere/Reportserver
Then the question I have is why. The first is the way you get the portal
provided by MS and is the user friendly way to get to the reports. If you
want to do it the second way then I have no solution for you.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"simmi" <simmi@.discussions.microsoft.com> wrote in message
news:40C0320F-55F1-40AC-B58C-0A9A7853F935@.microsoft.com...
> Hi Thanks for ur answer.
> I am not talking about " ReportManager" browser .I am tallking about
> "ReportServer".
> I tried the same .But i am getting the same problem .
> "Bruce L-C [MVP]" wrote:
> > All I do is click on Show Details button
> > Go to the properties of the data source or report (just to the right of
the
> > checkbox is where you can click to get to the properties).
> >
> > You will see a checkbox for hide in list view.
> >
> >
> > --
> > Bruce Loehle-Conger
> > MVP SQL Server Reporting Services
> >
> >
> > "simmi" <simmi@.discussions.microsoft.com> wrote in message
> > news:9BAC278F-31EA-4A2C-A817-1318ED2F8723@.microsoft.com...
> > > Hi,
> > >
> > > I am very new to reporting services.And i did't work on any reporting
tool
> > > b4 this.
> > >
> > > (1):
> > > Now my problem is how can i hide subreports and datasource in
> > ReportServer
> > > browser?
> > >
> > > (2):
> > >
> > > I am sending http://myservername/Reportserver to all the end users.
> > > is it correct way or is there any differnt way the users can watch
> > reports.
> > >
> > > plz give me detail discription
> > >
> > > Any help will be appriciate
> > >
> > > Thanks!
> > >
> > >
> >
> >
> >
Labels:
bro,
database,
datasource,
hide,
microsoft,
mysql,
oracle,
reporting,
reportingserver,
server,
services,
sql,
subreports,
tool
Subscribe to:
Posts (Atom)