Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I've learned more from your forums in 3 days than 3 months at school and on the job combined..."

Geography

Where in the world do Tek-Tips members come from?
vbajock (Programmer)
8 Dec 10 9:18
My report project is deploying to My Documents folder by default, and I can't seem to find the place to change these settings, any help appreciated!
Helpful Member!  xlbo (MIS)
8 Dec 10 17:31
Deploying to or saving to?

If you really mean it is trying to deploy to MyDocs then deployment path can be changed by right clicking on solution in solution explorer and choosing "properties" then changing it in there

If you mean the default save location, that is set up as part of the project initiation - not sure what the best way to move it would be - in the past I've simply copied the whole folder from one area and pasted it where I want it then open from there instead...

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244: How to get the best answers before you ask a question

vbajock (Programmer)
9 Dec 10 13:15
yes, deploy.  When I choose the deploy option, it physically saves it to some My Documents folder - this is the deploy output:

------ Deploy started: Project: Report4, Configuration: Debug ------
Deploying to http://SomeSqlServer/ReportServer
Deploying data source '/Data Sources/DataSource1'.
Deploying report '/Report4/Catalog4'.
Deploy complete -- 0 errors, 0 warnings
========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ==========
========== Deploy: 1 succeeded, 0 failed, 0 skipped ==========

The report is then physically created in My Documents/Visual Studio/Projects/Report4/Catalog4. Since I didn't set up SRSS originally, it seems to me the guy who installed it took some default.

When I pull the report via the web in my vb.net app,  I am using the Web Services ReportExecutionServices class, which takes '/Report4/Catalog4' as a parameter to rs.LoadReport(reportpath,etc) where reportpath = /Report4/Catalog4.  Everything works ok, but I have a catalog of 60 reports to convert from Access to SRSS so before I get into this to deep I want to set up the deployment path correctly.

 
vbajock (Programmer)
9 Dec 10 14:44
The properties setting you refered to only shows a single folder name.
xlbo (MIS)
9 Dec 10 20:33
what version of SSRS?

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244: How to get the best answers before you ask a question

vbajock (Programmer)
9 Dec 10 23:35
2008
xlbo (MIS)
12 Dec 10 17:18
when you right click on the report project in the solution explorer and choose "Properties", you should get a box pop up with a whole bunch of properties.
TargetServerURL
which should be on the lines of:
http://servername/ReportServer

TargetReportFolder
which represents the folder path from the root above

You say you only get a single folder name? I wonder if you are using an Integration Services or ASP.NET type project rather than an SSRS type project...?

If that is the case, you may have to manually migrate your reports to the reportserver but that is something I've never had to do I am afraid...
 

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244: How to get the best answers before you ask a question

vbajock (Programmer)
13 Dec 10 12:41
Yes, I get all that, but the problem is the physical location of the deployed files on the file server. I deploy to /servername/Reportserver, and the physical location of the deployed files that the report server is reading from is some \admin\My documents folder. I'm not having any problems retrieving the reports in any application, I am just looking for where the reportserver maps the physical location of the deployed files so I can change it to a different physical disk folder so that some network guy doesn't come along and delete all my reports from his admin folder.
xlbo (MIS)
14 Dec 10 19:42
As far as I am aware, the reportserver reads from the reportserver database not a physical location...

You have physical files which belong to your VS / BIDS project which are typically stored in a mydocs area but when deployed they should go into the reportserver database which is what the reportserver reads from..

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244: How to get the best answers before you ask a question

vbajock (Programmer)
15 Dec 10 14:49
That actually makes perfect sense, then I wonder, why the .rdl files on the disk?  They appear everytime I hit "deploy". Perhaps the "Build" function in Visual Studio is creating them?  I think I'll back them up somewhere, delete them and see what happens.....
ramam1 (Programmer)
15 Dec 10 14:57
RDLs are the report files themselves - that is what you would upload to the report server if you were deploying via web browser. Build builds the RDLs and then deploy sticks them into the report server you specify using "web services."
 
vbajock (Programmer)
15 Dec 10 15:11
Yes, I understand how the web services work, and I have already deployed an app using them, but this is what I am seeing:  I create the report, it asks me for a disk file location, I type in "C:\MfgReports\ReportSomeReport" and it creates the reports and dataset stuff in that physical directory.  At some point, I choose Build, then Deploy, and the results window shows me the Fail/Succeed messages, and from this I cut and paste the virtual folder it returns, which is http:\\SomeSqlBox\ReportServer\MfgReports\ReportSomeReport" into my web app, everything works fine.  But for some reason, it also creates only the rdl's in the Administrator's My Document\Visual Studio\Projects folder.  At this point, I think I am going to conclude that deleting these will not break the app, however I will test it out first.  I think VS is creating them.
ramam1 (Programmer)
15 Dec 10 17:50
When you build your report project there is an output in the form of files. Those files go into a folder. You specify that folder - by default it is within a visual studio hierarchy in the users documents directory. I imagine you are doing your report writing as Administrator so your default directory for projects is inside the Administrator's document directory. The deploy step takes those files and sticks them in report server. Instead of deleting those files you should be putting them in source control.
regards
 
xlbo (MIS)
19 Dec 10 17:19
Just to be clear - there are 2 sets of files:

1: your "source" set which are typically saved within the solution directory created in VS - by default I think this is set to MyDocs\Visual Studio (version)\SolutionName\SolutionName\
with the .rdl, .ds and .user files all in the lowest level of that path
2: your "deployed" set which are the ones the reports physically run off which are stored in the reportserver database. If you delete your local "hard copies" of the files they can be retrieved from the reportserver buy going into the report and choosing "edit" - this will allow you to save the rdl file that is stored in the reportserver database to wherever you want

Rgds, Geoff

We could learn a lot from crayons. Some are sharp, some are pretty and some are dull. Some have weird names and all are different colours but they all live in the same box.

Please read FAQ222-2244: How to get the best answers before you ask a question

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close