Viewing 15 posts - 661 through 675 (of 6,400 total)
SQL yes you can limit which cores it uses but can you do that in the other applications your running in the server.
If one of those applications maxes out a...
December 2, 2021 at 12:30 pm
No the application can use all 8 cores unless you can set some form of affinity in the application.
so if the app maxes out cpu0 then that’s 1 less cpu...
December 2, 2021 at 8:19 am
If your following any cyber security rules it’s 1 server for 1 purpose.
So you never mix database and application on the same machine.
December 2, 2021 at 7:37 am
Yeah there is a big thing with CrowdStrike at the moment, you need to ensure the exclusions are all set right for it and it is operating outside the SQL...
December 1, 2021 at 9:06 pm
Is replication really the way you want to go on this. Replication is a real pain in the ass when it goes wrong.
If what your after is more HA why...
December 1, 2021 at 7:44 pm
CPU isn’t going to be your bottleneck soon it’s going to be Max database size and RAM.
1410MB which express will use for the cache is nothing these days and the...
December 1, 2021 at 6:36 pm
No sql will go for 4 cores.
The lesser of so you can have 1 socket with 4 cores max for express. No more.
December 1, 2021 at 6:27 pm
If you can only run express due to the cost then you can only run what express can support, sorry but that is the license terms you agreed to when...
December 1, 2021 at 7:37 am
Declare @id numeric(17,2) = round(‘123.456’,2,1)
November 22, 2021 at 2:19 pm
It depends.
You will come to hear that term for every question in SQL Server.
To fully understand the correct answer if temp tables or to persist it physically you will need...
November 16, 2021 at 6:33 am
Yes if your in full recovery which you must be for AOAG and not doing log backups then you have made the problem.
FULL/BULK recovery you MUST take log backups to...
November 15, 2021 at 7:50 am
You need to be doing very frequent log backups, or if your only doing it for read scale look at transactional replication instead where you can remain in simple recovery...
November 14, 2021 at 12:14 pm
Alternative to SSIS is powershell and If you have them as CSV files using modules like DBATools and Import-DbaCsv, you can easily write loops in PowerShell to loop in a...
November 14, 2021 at 9:14 am
Look at writing it is SSIS instead of using the import wizard.
Using things like foreach loops etc.
As a starting point, if you use the wizard and at the end it...
November 14, 2021 at 9:10 am
The data type will need changing to something which allows 6 digits before the decimal place.
NUMERIC(10,5) max number is 99999.99999
So you would need a NUMERIC(10,4) for example which would allow...
November 14, 2021 at 6:40 am
Viewing 15 posts - 661 through 675 (of 6,400 total)