Viewing 15 posts - 526 through 540 (of 3,543 total)
I run WinSCP via Powershell script
Ooops! you're running is SSIS, ignore me :blush:
April 29, 2015 at 9:16 am
SqlSanctum (4/3/2015)
Sounds like you need to invest in a duck
Did know someone whose workplace had a life size cardboard cut out of a person called Maud (name not acronym) which...
April 4, 2015 at 6:36 am
SELECT Company
FROM CompanyEmployeeArchive
GROUP BY Company
HAVING COUNT(*) = SUM(SIGN(100-Employees))
April 2, 2015 at 7:15 am
CONVERT(datetime,[date],CASE WHEN [date] LIKE '%M' THEN 101 ELSE 103 END)
March 19, 2015 at 7:32 am
Sean Lange (3/12/2015)
measterbro (3/12/2015)
March 12, 2015 at 9:45 am
I'd bet that when you concatenate the variable the string is converted to nvarchar(8000) instead of remaining nvarchar(max)
Use sp_executesql and pass the variable as a parameter (if it is in...
March 12, 2015 at 7:28 am
Leave the tablix visibility as I specified
Add a new row 'Outside Group - Below' the row group for the tablix,
Merge Cells as necessary,
set text to 'No rows for...
March 11, 2015 at 10:13 am
Add a filter, select booking date from the dataset, select >= and set the expression for the value to
DateAdd(DateInterval.Day,1,Today)
Add a seconf filter, select booking date from the dataset, select...
March 11, 2015 at 7:54 am
use this expression
=Not(Filter(Parameters!ReportParameter1.Value, "Tab1", True, CompareMethod.Text).Length = 1)
and change Tab1 to Tab2 for second tablix
March 11, 2015 at 7:41 am
That does not make sense, what is the filter supposed to do?
March 11, 2015 at 7:21 am
Is the parameter a single value, i.e. only ONE of ALL,Tab1,Tab2
March 11, 2015 at 7:05 am
Refer to my previous post regarding creating a Cartesian product, in this case of yearmonth and vendor.
Also refer to my post referring to providing DDL, data and expected results as...
March 11, 2015 at 3:19 am
boettger.andreas (3/9/2015)
For example show all locations with all 12 months and for those with no order...
March 10, 2015 at 2:50 am
OK back to the beginning, what you needed to post was
Create tables
CREATE TABLE Past12Months (YearMonth char(6))
CREATE TABLE OEORDH (ORDUNIQ int,SHIPTO char(5),ORDDATE char(8))
CREATE TABLE OEORDD (ORDUNIQ int,QTYBACKORD int)
Populate tables
INSERT Past12Months (YearMonth)...
March 9, 2015 at 8:46 am
You have to LEFT JOIN both tables, i.e.
SELECTp.YearMonth AS PastYearMonth, OH.SHIPTO AS Location, LEFT(OH.ORDDATE, 6) AS YearMonth
FROMPast12Months AS p
LEFT JOIN OEORDH AS OH ON LEFT(OH.ORDDATE, 6) = p.YearMonth
AND...
March 9, 2015 at 7:41 am
Viewing 15 posts - 526 through 540 (of 3,543 total)