Viewing 15 posts - 2,176 through 2,190 (of 6,679 total)
Just curious - but what was the allocation unit used when the drive was formatted?
September 16, 2019 at 6:56 pm
The problem is your destination table is actually a HEAP - and you are deleting. The delete does not free up allocated space on the table and the next insert...
September 16, 2019 at 6:37 pm
You can use this technique: https://www.codeproject.com/Articles/22055/Automated-File-Decryption-Using-GnuPG-and-C
Instead of creating a batch file and executing the batch file - you redirect the input and output to variables. Another option is to use...
September 14, 2019 at 4:02 pm
You would have to restore a backup as another database and remove/encrypt sensitive data.
Normally though, this would be handled in the BAA with specified non-disclosures defined in the contract. The...
September 14, 2019 at 3:40 pm
Just be aware that if you enable it - you *must* set a max memory for SQL Server. If you do not set the max memory then SQL Server will...
September 11, 2019 at 6:04 pm
Backup/Restore is actually a good option - but you need to do a couple of things.
September 10, 2019 at 5:51 pm
This is an older article that explains troubleshooting scheduler and yielding: https://blogs.msdn.microsoft.com/psssql/2018/04/05/troubleshooting-sql-server-scheduling-and-yielding/
You can start here to review the DMV's associated with SQL Server Operating System: https://docs.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-views/sql-server-operating-system-related-dynamic-management-views-transact-sql?view=sql-server-2017
Here is a general outline:...
September 9, 2019 at 8:37 pm
It is not recommended that you setup a read-only secondary as an automatic failover. In fact - I would not recommend using a read-only secondary as part of an HA...
September 6, 2019 at 2:52 pm
Alerts don't need a job... they will fire based on the condition.
September 6, 2019 at 12:54 pm
If you have something like Netscaler available - you could setup an external IP and name that is SSL enabled. The entry would be setup with SSL offload - which...
September 5, 2019 at 6:26 pm
Just an FYI - but everything that batch files does can be done in SSIS.
For FTP/sFTP - you can use WinSCP and a script component to download files.
For ZIP files...
September 5, 2019 at 6:17 pm
Inserts can be a problem if you are inserting multiple rows in a single statement.
There is no guarantee that the inserts will be performed in identity order unless you specifically...
September 3, 2019 at 11:42 pm
Are there any deletes? Are there any updates that increase the size of VARCHAR columns? Are there any batch inserts of more than 1 row?
All of these operations can create...
September 3, 2019 at 5:38 pm
I have performed this same operation multiple times - and the only time I have ever had any issues is when a transaction log backup was performed after the full...
September 3, 2019 at 5:22 pm
The problem is the transaction log backups on the primary. Between the time you performed the diff and restored to the secondary there was at least one tlog backup on...
September 1, 2019 at 3:09 am
Viewing 15 posts - 2,176 through 2,190 (of 6,679 total)