Viewing 15 posts - 1,216 through 1,230 (of 2,912 total)
One thought (may not be possible) but what about using a windows account rather than a SQL account?
If that is not an option, SQLCMD can execute TSQL against a SQL...
May 7, 2021 at 4:53 pm
It looks like you have the code already. Just append "> Contents.txt" to the end of it.
If you don't want powershell, bat file can do it too with "dir /s...
May 7, 2021 at 2:26 pm
It's all good! Not sure if I've been mistaken for Pietlinden before, but I know my opinions on query hints are that they should be avoided.
And I agree about getting...
May 6, 2021 at 10:28 pm
I can't speak on how ETL developer compares to SQL Developer in terms of level. They are 2 different roles from my understanding.
The benefit of branching out is you get...
May 6, 2021 at 9:57 pm
My opinion with regards to performance - test it out!
In theory, one method may be faster than the other. In practice, this can surprise you. Sometimes the statistics and indexes...
May 6, 2021 at 9:17 pm
Without having sample data, it is tricky to say for certain, but as a thought - would a DISTINCT on your SELECT help?
If not, could you provide some DDL and...
May 6, 2021 at 7:30 pm
Scott - I am not sure if you saw my most recent reply where I basically retracted my previous statements on NOLOCK. It was a bit of a ramble and...
May 6, 2021 at 6:20 pm
I think the first thing I'd ask is - what problem are you trying to solve?
Having an index highly fragmented MAY cause performance issues, or may be perfectly fine. Are...
May 5, 2021 at 8:24 pm
Another thought (as I ran into a similar issue when working with Great Pains... I mean Great Plains) - try setting your MAXDOP on that query to 1. We had...
May 5, 2021 at 5:01 pm
How are you mapping "REG1" to "SICK1" and REG2 to SICK2? You would need something to JOIN on.
Using the data you have given, I see no way to map those...
May 5, 2021 at 4:59 pm
My opinion on the fix - try checking off the other box in the Exchange configuration (use windows authentication) UNLESS you are not using windows authentication for Exchange authentication. If...
May 5, 2021 at 2:39 pm
Might be a dumb question, but wouldn't the answer marked as "correct" give you a result different from the expected result?
I say that it might be a dumb question because...
May 5, 2021 at 2:08 pm
Just to confirm, your query is in the logical format of:
DECLARE @dynSQL NVARCHAR(MAX)
SELECT @dynSQL = 'SELECT 1 AS [result]'
EXEC (@dynSQL)
And you are wanting to insert the results...
May 4, 2021 at 9:42 pm
I think an article that would be helpful is this one:
Basically, you are wanting your LIKE syntax to determine if it is numeric OR numeric with a - in it. ...
May 4, 2021 at 9:39 pm
Enabling SSL would encrypt the connection between the source and destination. One of the main benefits of SSL is that MITM (man in the middle) attacks don't work on them...
May 4, 2021 at 5:19 pm
Viewing 15 posts - 1,216 through 1,230 (of 2,912 total)