Viewing 15 posts - 1,936 through 1,950 (of 6,679 total)
No - you would not need any additional servers and there wouldn't be any additional AG's.
March 23, 2020 at 9:04 pm
I don't understand...if you have the following:
March 23, 2020 at 7:24 pm
Do a BCP out to a file and have Oracle import it (I can't remember the name of the built in tool on the Oracle side). The last time...
March 21, 2020 at 5:11 pm
It would also be beneficial if you provided the execution plan from 2014 and the execution plan from 2017. The comparison will probably show that the 2017 version is much...
March 21, 2020 at 5:05 pm
Correct - we don't have a DR node at this time...but it would be easy to add another node to the cluster and build out an AG for all databases.
You...
March 21, 2020 at 4:28 pm
Not sure I understand the new configuration you are looking at - but having an FCI and an AG in the same cluster does work. You cannot have 2 clusters...
March 20, 2020 at 5:37 pm
If your deletes are setup in smaller batches - with a wait in between each iteration, then it shouldn't impact the users to any large degree. SQL Server will manage...
March 20, 2020 at 5:11 pm
If the requirement is to be able to open the attachment in Excel - then a simple CSV output file should open up by default in Excel. That can be...
March 20, 2020 at 5:01 pm
How exactly is the parameter being used in the code? That is the missing piece here...
Why would it change? Because you upgraded from 2012 - and there was a significant...
March 12, 2020 at 8:09 pm
If the parameter can be blank or null - you can modify the update query to this:
UPDATE t
SET FirstName = coalesce(nullif(@first_name, ''), FirstName),
...
March 12, 2020 at 6:41 pm
If @Parm is defined as varchar(nn) - then try changing the value in the code to @Parm = '1' instead. The ideal solution is to make sure the parameter definition...
March 12, 2020 at 6:30 pm
I use a free product call Terminals - you can find it on GitHub. I cannot access the site from work - so I cannot provide the link.
March 11, 2020 at 6:13 pm
Create the indexes as you need them in SQL Server. You can then disable the NC indexes prior to loading the data - and rebuild the indexes after the data...
March 9, 2020 at 7:20 pm
Your query has SUM - which requires a GROUP BY and that is missing.
March 6, 2020 at 8:03 pm
your DB server should be in a DMZ (dead mans zone/demilitarised zone) which is effectively 2 firewalls
but if you want to allow client access to your data then you...
March 6, 2020 at 6:17 pm
Viewing 15 posts - 1,936 through 1,950 (of 6,679 total)