Viewing 15 posts - 1,036 through 1,050 (of 6,678 total)
Why are you still checking - inside the foreach loop - for file existence? The purpose of the foreach loop is to only process the tasks inside the container *if...
June 8, 2021 at 9:13 pm
@phil-parkin: do you mean use the "Foreach Loop Container"? Would I then have in the container Expression Tasks or a Script Task?
Yes, that's it.
Configure the 'Collection' node properties as...
June 8, 2021 at 6:41 pm
You can't delete the history - but you can ignore those backups in your code. The table 'backupmediafamily' has the column device_type - which will have a value of 2...
June 7, 2021 at 8:34 pm
I'm still getting the "Invalid length parameter passed to the LEFT or SUBSTRING function." error.
This is why having sample data is important. The data you have doesn't contain that...
June 7, 2021 at 4:58 pm
Check out this article: https://www.sqlskills.com/blogs/paul/cause-high-duration-async_io_completion-waits/
If this is causing the backups to take longer than they should - you could setup the XE event and gather the same information to provide...
June 7, 2021 at 4:48 pm
It would help if you provided test data and expected results - but this is what I think you are looking for:
Declare @testTable Table (TestData varchar(100));
Insert...
June 7, 2021 at 4:35 pm
Secondary is non-readable. Sole purpose is for fail over and making it the primary.
Source and desitination are SQL Server.
Package is running on Server A which is the primary server.
Yes,...
June 7, 2021 at 3:13 pm
Have you identified which part of the process is actually causing the delay? Is it taking 1.5 hours to extract the data from Hadoop - or is it taking 1.5...
June 3, 2021 at 4:04 pm
Your plan should work fine - there is no reason to do anything with the setup or configuration. You do want to make sure the secondary is shut down first,...
June 3, 2021 at 3:54 pm
There are a lot more questions that need to be researched and answered:
June 3, 2021 at 3:47 pm
How are you defining the dataset for the report?
Using Visual Studio (SSDT) - you can right-click on the Dataset and 'Add Calculated Field'. That brings up the Dataset Properties dialog...
June 3, 2021 at 3:33 pm
I am not clear on what you mean by 'closed' - data files are not closed. They may be set to read-only but that is different...
It sounds like you have...
June 2, 2021 at 7:29 pm
Do you have access to the SQL that is used to get the data from the database? Or - is this a case where you only have access to execute...
June 2, 2021 at 6:12 pm
If you take the SAN out of the equation - and only look at it from a management of each instance on that server - you should see that separate...
June 1, 2021 at 5:27 pm
I would do this in the SQL code - instead of trying to do it in SSRS. In SQL:
Select Address = replace(OldAddress, '~', char(10))
If it must be...
June 1, 2021 at 5:07 pm
Viewing 15 posts - 1,036 through 1,050 (of 6,678 total)