Viewing 15 posts - 841 through 855 (of 2,857 total)
Grow TEMPDB is another step where possible. I try to ensure I have enough disk space to allow for autogrowth and I try to monitor for abnormal autogrowth on all...
October 12, 2021 at 7:50 pm
For the database itself, our naming convention is to either name it after the application that uses it, or if multiple applications are using it, then the processes that are...
October 8, 2021 at 9:33 pm
"best" standards really depend on your environment and how often objects will change and how your team works.
For example, I like naming my tables with the name of the entity...
October 8, 2021 at 9:05 pm
My approach would be to get this working in TSQL then put the TSQL into SSIS as your source.
My approach (likely not the most efficient) would be to do it...
October 8, 2021 at 8:48 pm
Alternately, you could use windowing functions to sum the decals column like:
SUM(decals) OVER (PARTITION BY a.FSTRJURISDICTION, d.fstrFormattedID, inv.flngNumItems, ar.fstrStreet, lic.fstrStatus, a.fstrFuelType)
Not ideal as you will get 1...
October 8, 2021 at 8:35 pm
I do not know a lot about Azure data factory, but looking at the screenshots, it LOOKS to me like you are only pulling 1 column from ParquetSource. When you...
October 8, 2021 at 5:44 pm
One other thing to look at would be bandwidth. On-Prem, you may have a Gb ethernet connection between you and the server. In the cloud, you may have reduced bandwidth.
As...
October 7, 2021 at 2:37 pm
First, welcome to the SQL Server forum... next, you posted this in the wrong section. You are not running SQL Server 2019, you are running MariaDB.
I would recommend looking up...
October 7, 2021 at 2:25 pm
I think the easiest way to fix a "log file full" is to increase the size of the log file, but that assumes you have disk to do so.
When you...
October 6, 2021 at 8:57 pm
To add to everyone else asking about the code, are you sure it is the function that "crashed the ETL - it now never finishes."? I am wondering if MAYBE...
October 6, 2021 at 8:50 pm
I've not worked with JSON in SQL before, but my first debugging step would be to do a SELECT @json to make sure that you got the full data from...
October 5, 2021 at 10:17 pm
The other thing to keep in mind is do you have anything else running on that server? From a SQL Server standpoint, SSIS, SSAS, and SSRS all use their own...
October 5, 2021 at 4:08 pm
If you don't need the end user connecting as themselves, you could have it connect as a specific user on the remote machine. Downside is you may need to create...
October 5, 2021 at 3:58 pm
I think this really falls under "it depends".
Are you already licensed for 2019 (ie do you have software assurance OR do you need to buy 2019)?
Are there features in 2019...
October 4, 2021 at 10:06 pm
I rarely do an uninstall. What I do when I decommission a SQL instance is to stop the services and change them to disabled. I've had odd hiccups when doing...
October 1, 2021 at 9:54 pm
Viewing 15 posts - 841 through 855 (of 2,857 total)