Viewing 15 posts - 4,876 through 4,890 (of 5,111 total)
See the link in my previous post, it tells you how you should share sample data.
Sending stuff over Skype isn't great for a number of reasons.
October 10, 2016 at 3:19 am
Your Connection Manager must be set up to treat the first row as a header. Go to your Connection Manager properties for the Excel sheet, and change FirstRowHasColumnName to FALSE.
October 7, 2016 at 3:43 am
I'm actually struggling to work out what you're after here, and I'm not really sure I understand your post. I'm really confused by your mention of having an unnamed column.
The...
October 7, 2016 at 2:03 am
SteveD SQL (10/6/2016)
My SSIS solutions works just fine, though I am sure some SSIS developers would have a fit me using SSIS as a Report Distribution System 😉Thanks
Steve
I do the...
October 6, 2016 at 5:15 am
You can't send out 5 copies of the same report with a single subscription no. In fact, from experience, if you start off the same subscription while it's already running...
October 6, 2016 at 4:19 am
Ok, then make a second dataset that returns your Country list, and add NULL to the Returned list. Then use that list as your parameter values
SELECT DISTINCT
...
October 6, 2016 at 2:51 am
Have you enabled the Country parameter to allow NULL values?
October 6, 2016 at 2:01 am
To display reports on a front end page for external users you want the Microsoft.ReportViewer.WebForms Assembly in your web project.
This is something I did with our Web Team maybe 2...
October 5, 2016 at 9:43 am
Does this meet your needs? You'll need to change the values of the @StartDate and @EndDate Variables to suit your needs though.
DECLARE @StartDate DATE = '01-Jan-2016',
...
October 5, 2016 at 9:15 am
Sean Lange (10/5/2016)
October 5, 2016 at 7:53 am
SELECT DISTINCT
DC.Country
FROM DW.dbo.Dim_Country DC
WHERE DC.Active = 1
AND DC.Country = ISNULL(@Country,DC.Country);
October 5, 2016 at 7:48 am
You're attempting to get the list of countries you can choose for your parameter from your dataset, which requires a Country to be selected.
October 5, 2016 at 7:19 am
Ok, the URL you're trying to deploy to is the Report Manager URL, rather than the Web Service URL.
You need to enter the URL displayed on your Web Service URL...
October 5, 2016 at 4:56 am
The address you need is in your first screen shot. You've blurred it out, so I can't tell you what to enter. This needs to go in your TargetServerURl, which...
October 5, 2016 at 4:14 am
Visual studio is telling you exactly what the problem is here, it can't find the server. I'm pretty sure if you navigated to http://localhost/Reports_SQLEXPRESS/%5B/url%5D you would get a "Server not...
October 5, 2016 at 3:48 am
Viewing 15 posts - 4,876 through 4,890 (of 5,111 total)