Viewing 15 posts - 2,206 through 2,220 (of 13,870 total)
For the FIESTA, your desired engine size is 1.7. Please define the grouping logic you wish to apply which selects 1.7 rather than any of the other FIESTA engine sizes.
February 7, 2021 at 4:27 pm
AlphaTangoWhiskey:
Thanks for your help. I don't think the account being used for any proxy or the SQL Server agent will be used when I'm running the package from Visual...
February 6, 2021 at 8:22 pm
Instead of creating views - you can use synonyms.
This gets my vote too.
February 5, 2021 at 5:35 pm
That is correct. And I don't know which it will be.
Doesn't matter – search for both.
DROP TABLE IF EXISTS #SomeData;
CREATE TABLE #SomeData (LongString VARCHAR(8000));
INSERT #SomeData (LongString)
VALUES
('dlfkjh...
February 5, 2021 at 1:50 pm
So the string will contain either
"IsFso":true
or
"IsFso":false
Is that correct?
February 5, 2021 at 1:03 pm
Sounds like the package file XML may be corrupt.
Are you able to completely delete and recreate the connection?
If not, it may be a good idea to start afresh with a...
February 4, 2021 at 9:57 pm
When you execute a proc in SQL Server, there must be a SQL Server login associated with that execution.
There should also be database-level users associated with the login and those...
February 4, 2021 at 6:11 pm
It sounds like a permissions problem. When the Python script executes, what is its user context and does this user have the permissions required on MSDB?
Can you try executing the...
February 4, 2021 at 2:50 pm
Does the update work OK when executed from Python? That is, is the only problem with the mail send part?
February 4, 2021 at 2:33 pm
Hi Thanks for your reply
No. SqlServer is not under Source Control
It should be.
February 3, 2021 at 12:11 pm
Is there any easy way to :
Search Stored Procedures for a string (I can do this ok)
If say 10 are returned, just click on each one and go into...
February 3, 2021 at 11:53 am
Click the New button and create the connection to the file. Then go ahead and use that.
I've never used avro files before, so cannot help with specifics.
February 1, 2021 at 9:59 pm
Like this?
DECLARE @List VARCHAR(50) = 'item1,item2,item3';
SELECT
@List
, NewVersion = CONCAT('(', '''', REPLACE(@List, ',', ''','''), '''', ')');
February 1, 2021 at 9:51 pm
The HDFS component is available from a native installation of SSIS and does not require the installation of a Hadoop server.
The HDFS connection manager allows SSIS to connect to the...
February 1, 2021 at 5:16 pm
Or add the IDENTITY after the SELECT INTO
SELECT TOP (10) * INTO #Test FROM sys.columns c
ALTER TABLE #Test ADD SomeId INT IDENTITY(1,1)
SELECT * FROM #Test t
February 1, 2021 at 4:38 pm
Viewing 15 posts - 2,206 through 2,220 (of 13,870 total)