Viewing 15 posts - 451 through 465 (of 2,051 total)
developer edition? Ain't free for production
March 16, 2020 at 9:56 am
Haven't tried openquery yet regarding batchsizes and character limits.
Anyway, the switch to ado.net solved the slowness problems for now until the switch to sql 2019
March 16, 2020 at 9:54 am
On your UAT server, restore the databases with the same compability.
You could try out https://spaghettidba.com/tag/workloadtools/ for capturing / replay the SQL on the UAT.
Saw a demo at dataminds connect. You...
March 9, 2020 at 1:34 pm
Thanks for mentioning that Powershell 7 is out
March 5, 2020 at 1:17 pm
Thanks frederico_fonseca and Jeff Moden for the extensive feedback.
I'm transfering 160 million rows of oracle 11g number (19,0) not null to sql server numeric(19,0) not null
Using SQL 2017 Enterprise +...
March 5, 2020 at 10:20 am
Awaiting SQL 2019 backup support, trying with the ado.net driver. Doesn't seem to go slower after a while
March 3, 2020 at 5:23 pm
You can trace filegrowth with extended events https://www.sqlservercentral.com/blogs/finding-file-growths-with-extended-events
March 3, 2020 at 1:39 pm
Fun, database with thousands of tables and no foreign keys
February 28, 2020 at 5:50 pm
Things that are interesting in SQL 2019 are the accelerated database recovery and the new oracle driver for SSIS (preview)
February 27, 2020 at 3:03 pm
Also verify the host-configuration as the processor is virtualized (Common KVM) it must run on some host. Is power-saving disabled ? how are the resources distributed between VM's? Are the...
February 25, 2020 at 12:24 pm
You can try
Invoke-Sqlcmd -ServerInstance "$serverinstance" -database "Gestion_BO_Stats" -Query "exec SP_EQUITE_SANTE_CDC_Contrats" |export-csv -path "$path\SP_EQUITE_SANTE_CDC_Contrats_$((Get-Date).ToString('MM-dd-yyyy_hh-mm-ss')).csv"as powershell variables are expanded when used between double qoutes
February 24, 2020 at 12:35 pm
How do you did it?
February 13, 2020 at 10:55 am
Why not rename the logins / logingroup with ALTER LOGIN ... to keep the same SID ?
February 12, 2020 at 12:40 pm
Can anyone recommend a powershell forum? Invoke-webrequest loses some of its parsing in powershell 6 (especially the forms part)
February 7, 2020 at 4:24 pm
Perhaps you can start with readcommited snapshot isolation instead of in-memory? The optimistic locking should reduce blocking from reporting
https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/snapshot-isolation-in-sql-server
January 23, 2020 at 4:03 pm
Viewing 15 posts - 451 through 465 (of 2,051 total)