Viewing 15 posts - 3,661 through 3,675 (of 5,111 total)
Considering you only have one criteria for red, otherwise Green:=iif(Fields!ColumnA.Value <> "tempdb" AND Fields!ColumnB.Value = "y" AND IsNothing(Fields!ColumnC.Value), "Red", "Green")
You'll need to put this expression in each cell's...
June 19, 2017 at 6:15 am
June 19, 2017 at 5:02 am
SFTP isn't a standard task in SSIS. This sounds like you're using a custom task item, which has likely been built by a 3rd party. I would guess that the...
June 16, 2017 at 3:05 pm
June 16, 2017 at 6:02 am
What type of machine are you using? Have you checked the brand's support...
June 16, 2017 at 5:17 am
The flow to the SFTP File task doesn't need to be an OR, as only one task is flowing to it. If that flow doesn't evaluate to TRUE then the...
June 16, 2017 at 5:12 am
June 15, 2017 at 2:22 am
I feel totally foolish for posting this, but does anyone know where the touchpad scroll settings are in Windows 10?
My touchpad has suddenly decided it wants to be...
June 8, 2017 at 12:14 pm
If you run the following, what do you get?DECLARE @Free_MB int;
CREATE TABLE #Free
(Drive char(1),
Free_MB int);
INSERT INTO #Free EXEC...
June 6, 2017 at 6:44 am
Just providing your query isn't going to tell us much. To list a "few" reasons it could be:
May 25, 2017 at 6:08 am
May 25, 2017 at 1:48 am
You don't "open" an mdf file. you attach it to your SQL Server instance. Then you can access the data, functions, stored procedures, etc, etc via SQL.
May 24, 2017 at 8:40 am
Sounds like the Service Account SQL Server is running on does not have permission to access the folder. Check the Service accounts permissions, and grant it control of the folder...
May 24, 2017 at 8:20 am
Am I correct in reading that you have a datetime field for every column to store the datetime a field was last updated? So you have a table along the...
May 24, 2017 at 2:34 am
May 24, 2017 at 2:09 am
Viewing 15 posts - 3,661 through 3,675 (of 5,111 total)