Viewing 11 posts - 1 through 11 (of 11 total)
I have noticed that the repository database is being updated but having issues with the reports not being in synch with the database..
I have been to microsoft and there really...
August 12, 2005 at 10:27 am
What I am needing to do is a "hot" backup of the reporting services database.. Would I do this as I would any other database? In our environment we are using...
June 13, 2005 at 1:31 pm
I am using stored procedures in the 'data' tab to pull multiple datasets. This seems to work well.
example: (name of dataset) land, land1, etc... exec <name of proc> then you...
June 13, 2005 at 10:45 am
okay this is what I have found!! use
exec sp_helplogins
this will give you server logins, database users, and permissions!
May 17, 2005 at 2:17 pm
I am also having this problem I need to know all users for server logins as well as database users and roles. I did see the article on 7 scripts...
May 16, 2005 at 5:11 pm
In our environment we simply use
grant exec on <sproc> to [User/user group(we use groups)]
revoke exec on <sproc>to public
hope this helps.
March 29, 2005 at 1:30 pm
Good morning, this site has a webinar on it called:
Microsoft SQL Server Reporting Services Technical Overview—Demo 3: Managing Reports at:
http://www.microsoft.com/seminar/mmcfeed/mmcdisplay.asp?lang=en&pf=100501
I am fairly...
October 22, 2004 at 9:46 am
thank you very much and the only thing that seems to be not working now is after I converted to float it did give me a decimal, however it cut...
October 15, 2004 at 4:03 pm
I was thinking to do a convert as the 'acres' is a smallint and I need the decimal placement.
select 'Unincorporated'
select distinct b.sizegroup, count(b.acres) 'Number Of Parcels', sum(b.acres) 'Total Acreage'
from
...
October 15, 2004 at 1:35 pm
Okay I understand
2. The style of case you used only supports simple constant equality comparisons. You are trying to use a shorthand boolean comparison. You need to convert it...
October 15, 2004 at 9:34 am
Viewing 11 posts - 1 through 11 (of 11 total)