Viewing 15 posts - 1,201 through 1,215 (of 2,905 total)
Possibly a dumb question but would it be faster to do this on the application side? Not sure how much data you are pulling (in MB/GB) if you just did...
May 12, 2021 at 5:50 pm
If it is related to parameter sniffing problem (which it sounds like to me, but I also would not be surprised if I was WAY off on this), adding the...
May 12, 2021 at 4:05 pm
One thought on how to "fix" this (based on the reply to the thread you indicated) would be to have that column returned inside a CASE statement where you could...
May 11, 2021 at 3:32 pm
Anything interesting in the logs? That is usually where I start all of my troubleshooting. SQL Server logs as well as the Windows logs. Never know where it may be...
May 10, 2021 at 9:02 pm
I was doing some digging into this and best I can tell there is no way to do it without looking for a "\" in the ServerName field. And this...
May 10, 2021 at 7:03 pm
I would recommend running a chkdsk on it (and DBCC once you get it online). It could be that there was some corruption on the file/folder around permissions. So when...
May 10, 2021 at 5:30 pm
phpmyadmin, if I remember right, is an administration tool for PHP. This, if I remember right, does not care about your database. I think it can connect to a database,...
May 10, 2021 at 5:20 pm
OH... you want 1 contents.txt per directory. That gets a bit more complicated, but still pretty easy in Powershell. Basically, you will need to start by getting the directory list...
May 7, 2021 at 7:09 pm
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
Viewing 15 posts - 1,201 through 1,215 (of 2,905 total)