Viewing 15 posts - 196 through 210 (of 233 total)
The subscription option will come on SSRS web site after the report is deployed on the server.
You will have to deploy and the browse the report to have the Subscription...
January 13, 2009 at 2:25 am
Sure!
When you create a subscription for a report you will have to give the following information:
1. How to send the Report (Report Server E-mai/(one more option is there)).
2. Whom to...
January 13, 2009 at 2:22 am
Forgot to mention that you can send offline Excel/PDF files through subscriptions.
January 13, 2009 at 1:49 am
You can try the Subscription options available in SSRS.
- Open the report.
- Go to Subscriptions
- Select 'New Subscriptions' OR 'New Datadriven Subscriptions'
- It will show you a step by step...
January 13, 2009 at 1:47 am
Did you used a query like:
Select * from sys.sysobjects where name = 'MSmerge_PAL_role'
?
try the same query on master DB also and check if the object is present in master....
January 13, 2009 at 1:28 am
Also, verify the INSERT query that gets fired on click of Submit button; you should use the name of the columns in the query
INSERT INTO yourtable
(col1, col2,.....) -- dont...
January 13, 2009 at 1:10 am
Yes you can achieve this using PIVOT!!
Check out the BASIC example given in the following link:
January 12, 2009 at 5:02 am
-Do you have any backups available with you before the delete?
-What is the recovery model of your database?
January 12, 2009 at 4:55 am
I don't think that is possible using different schedules for different packages, the solution that comes to my mind is something like this:
1. Create a table in your DB(MontlyPackageStatus) with...
January 12, 2009 at 1:05 am
Database mails are not available in Express edition.
January 11, 2009 at 11:46 pm
The message "Run the RECONFIGURE statement to install" came from the first SQL statement "sp_configure 'clr enabled', 1".
As you are already executing the "RECONFIGURE" command just after the ...
January 11, 2009 at 11:27 pm
Could be a security issue? Can you post the errors from the log/application event log?
January 11, 2009 at 10:47 pm
Try dropping the indexes before inserting and recreate the indexes after insert
and insert using Select unionall option
January 9, 2009 at 3:53 am
Yes! below query will perform better as this will be bulk insert
Insert into Table_name (columns...)
select value1,value2....
union all
select value1,value2....
union all
select value1,value2....
January 9, 2009 at 3:49 am
Viewing 15 posts - 196 through 210 (of 233 total)