Viewing 15 posts - 361 through 375 (of 506 total)
Yes, sorry, Is the DLL accessable?
September 11, 2017 at 1:03 pm
September 5, 2017 at 4:08 pm
Is it possible someone opened and converted the project and saved it?
Try creating a new SSIS project, delete the Package.dtsx package it generates and add the existing package from the old...
August 31, 2017 at 10:50 am
August 31, 2017 at 9:25 am
Set up an SPN so Kerberos can forward your token
August 31, 2017 at 9:15 am
No, not without a modified column, and that must have a default of GetDate() or SysDateTime() or a trigger.
August 29, 2017 at 4:19 pm
If youSET OUOTED_IDENTIER OFF;
you can eliminate some of the pain.
August 29, 2017 at 9:40 am
DECLARE
@FieldName VARCHAR(50) = '#14400#14400#14400#14400#14400#0#0#' ;
SELECT @FieldName;
SELECT
Substring(@FieldName, 2, 5) Monday
, Substring(@FieldName, 8, 5) Tuesday
, Substring(@FieldName, 14, 5) Wednesday
, Substring(@FieldName, 20, 5) Thursday
,...
August 23, 2017 at 3:01 pm
I suggest trying to steer them towards using Reporting Services, a much better tool for sending scheduled reports.
August 23, 2017 at 1:26 pm
August 23, 2017 at 1:20 pm
DECLARE @i table --Unpaid
(
InvoiceID int
);
INSERT @i VALUES (254425), (223352), (225854), (225685), (295568);
DECLARE @t table
(
file_name nvarchar(100)
August 22, 2017 at 2:58 pm
In SQL Server SQL there is no output clause for select. https://docs.microsoft.com/en-us/sql/t-sql/queries/select-transact-sql
August 17, 2017 at 3:04 pm
August 17, 2017 at 9:38 am
Viewing 15 posts - 361 through 375 (of 506 total)