Viewing 15 posts - 2,176 through 2,190 (of 13,838 total)
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
sorry the requirement was an attachment and I was ask to paste thr attachment info rather which I have now done.
thanks
Is there a specific question there, or are you...
January 29, 2021 at 6:06 pm
Hi Guys
I need to write a procedure to validate an SA identity number (a SSN in the west). Please look at the attached doc for a detailed explanation.
Thank you...
January 29, 2021 at 5:27 pm
Viewing 15 posts - 2,176 through 2,190 (of 13,838 total)