Viewing 15 posts - 2,191 through 2,205 (of 13,849 total)
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
Deleted
January 26, 2021 at 4:18 pm
Excellent detective work there. I had not realised that file association arguments were stored like that in the Registry.
January 26, 2021 at 3:20 pm
Yeah, hoping that the script will execute on the remote server.
Unfortunately, it won't. It will instead try to execute locally.
But all is not lost, you can use Powershell Remoting...
January 24, 2021 at 2:25 pm
Are you hoping that the script will execute on the remote server? Or is that just the place where you store PoSh scripts?
January 24, 2021 at 11:49 am
Viewing 15 posts - 2,191 through 2,205 (of 13,849 total)