Viewing 15 posts - 1,951 through 1,965 (of 6,679 total)
I posted a function that calculates the 4-5-4, 5-4-4 and 4-4-5 calendars for a 3 year period here: https://www.sqlservercentral.com/scripts/fiscal-retail-4-5-4-calendar-function
If I am understanding your request - you need to figure out...
March 5, 2020 at 6:50 pm
Not enough information - and not real sure what problem you are encountering. Is there an error? How are you calling this stored procedure? Where does the stored procedure live?
If...
March 4, 2020 at 6:41 pm
"837" files are an EDI specification. They can follow either an EDI format or a similar format in XML (but usually not the later). I wish the world would...
March 4, 2020 at 6:34 pm
Why are you using SQL Server to send an email with an attachment - when the file is created in SSIS? Why not use the built-in SSIS email task?
March 4, 2020 at 6:30 pm
I have to ask - why does the developer want to create an agent job, execute it - then drop it? What is the purpose behind this request and how...
March 3, 2020 at 9:10 pm
Also - verify your auto growth settings. They should be a fixed size in MB and not set to the default percentage (or default 1MB which is way too small).
March 3, 2020 at 9:03 pm
If you are actually looking for the latest file that matches - it can be done this way:
$searchDate = (Get-Date).AddDays(-1);
$ZipDestinationPath = "\\my\nas\Share\Path\";
$searchString = "MyFiles_" + $searchDate.ToString("yyyyMMdd") +...
March 3, 2020 at 9:01 pm
As for best practices - I would say (and recommend) using the Integration Services Catalog. It provides the best options for securing your projects and packages, allows for managing the...
March 2, 2020 at 10:43 pm
Neither of the examples are meant to be run from SSIS - they are meant to be used in SQL Server Agent. They can be included directly in the job...
March 2, 2020 at 10:38 pm
Why did you start a new thread? The answer to your issue is in this thread: https://www.sqlservercentral.com/forums/topic/ssis-83#post-3729970
I provided 2 separate examples...both of which can be executed directly in a query...
March 2, 2020 at 8:49 pm
The other option is to add a new job step - setting the job step to quit with success on failure. On success - the job step will...
March 2, 2020 at 8:41 pm
Verify the language your browser is using when downloading - it may be set to US English which is why you are only getting that version.
March 2, 2020 at 7:12 pm
Don't fail the jobs on the non-active instance...that just introduces a lot of error messages and problems. Instead - check for the node being primary and if so...execute the task(s).
This...
March 2, 2020 at 6:53 pm
You cannot connect SSMS to a different version of SSIS. If there is a requirement to use SSMS to access SSIS then you would need the 2016 SSMS to be...
March 2, 2020 at 6:26 pm
Depends on how you are setting up your DR system. If you are going to use some method outside SQL Server to replicate the data to the DR site then...
March 1, 2020 at 5:50 pm
Viewing 15 posts - 1,951 through 1,965 (of 6,679 total)