Viewing 15 posts - 61 through 75 (of 1,957 total)
Try this:
https://www.mssqltips.com/sqlservertip/1674/retrieve-excel-schema-using-sql-integration-services-ssis/[/url]
July 14, 2016 at 4:37 pm
martin.whitton (6/3/2016)
Transact-SQL statement terminator.Although the semicolon is not required for most statements in this version...
July 13, 2016 at 5:08 pm
It's a common misconception that the columns SELECTED in a subquery have to come from the tables in the subquery.
If you use table aliases and two part naming on all...
July 13, 2016 at 5:01 pm
I think that's just the way it works.
A possible workarounds is to have the header include the padding you require and place the tablix right up against the header
June 16, 2016 at 6:02 am
You probably didn't use the namespace.
DECLARE @x TABLE (Payload VARCHAR(max));
INSERT @x (Payload)
VALUES ('<NCOAPACP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="uri://www.gen.da.hob/VC/Contract/QualityManagement/EMSM">
<VID>3656183</VID>
</NCOAPACP>');
WITH XMLNAMESPACES (DEFAULT 'uri://www.gen.da.hob/VC/Contract/QualityManagement/EMSM')
SELECT nd.value ('./text()[1]','int') AS vid
FROM @x AS x...
June 15, 2016 at 3:41 pm
How about a slightly different pattern?
Send the #results to the LinkedServer.
Run the Merge, OUTPUT the desired data
store the results locally
Something like this:(untested)
INSERT INTO [LinkedServer].tempdb.dbo.Results
SELECT
CoL1,
Col2,
Col3,
Col6,
FROM
#Results SRC;
INSERT @Inserts(ID,Col1,Col2)
EXEC('MERGE [Database].[Schema].[Table] AS TARG
USING
(
SELECT...
June 15, 2016 at 11:28 am
It's possibly to do with the Join on ACCOUNT, one table has account as a string, one as a FLOAT!
June 15, 2016 at 11:18 am
Charmer (5/25/2016)
Yes, Magoo.Main table with one item with first one and I am using SSRS filter.
Here's an updated outer report with SSRS filtering for you as an example.
I suspect all...
May 25, 2016 at 5:53 am
So, are you saying that your Main report only has one item/table on it - the first one?
How are you using the parameter to filter? Are you passing it...
May 24, 2016 at 6:14 am
Charmer (5/24/2016)
Thanks for the suggestion. I am not able to open the RDL you have attached in here.
I tried with 2008 and 2012 VS as well. May I know...
May 24, 2016 at 2:25 am
Yes, you can use a "List" control with a subreport.
Create a report with a "Country" parameter that filters your dataset.
Place a table with the columns from your dataset on the...
May 23, 2016 at 5:04 pm
Have you thought about using subreports for the graphs?
May 16, 2016 at 3:47 pm
SqlBarbarian (5/6/2016)
May 6, 2016 at 6:19 pm
True, but the reason I said save as a different name is because that also works in report builder.
Use whatever suits you best.
April 15, 2016 at 6:28 am
Open it in your report designer and save it with a different name.
April 14, 2016 at 5:01 pm
Viewing 15 posts - 61 through 75 (of 1,957 total)