Viewing 15 posts - 1,981 through 1,995 (of 6,679 total)
February 26, 2020 at 10:21 pm
There isn't any native way to mask data - you either have to build it yourself of purchase a product. You should take a look at: https://www.red-gate.com/products/dba/data-masker/
I would also recommend...
February 26, 2020 at 7:09 pm
As for the application connection - this often falls to how that connection information is cached on the application server and how the connection string is built.
As for the listener...
February 26, 2020 at 6:56 pm
Let's start with the login/user issue...
Logins are created at the server level - and users are created in the database. SQL Server know that login ABC is the same as...
February 26, 2020 at 6:48 pm
I would recommend adding either a disk or file share to the 3-node cluster giving (by default) 4 votes. Then - I would set the node weight of the 3rd...
February 25, 2020 at 7:00 pm
You can use a CTE or CROSS APPLY:
CTE Version:
WITH ageDetail
AS (
SELECT Birthdate
, CurrentDate = getdate()
...
February 25, 2020 at 6:39 pm
Thanks for all the idea, first time I read about CREATE SYNONYM (I suck at this sometimes!!... lol)
I'm going to learn about this and start applying it ...
The problem...
February 24, 2020 at 9:16 pm
Looking at this again - is the issue you are having related to the file(s) having a header/trailer record and detail records? If so - that can be handled in...
February 24, 2020 at 9:06 pm
What is the issue you are facing? What have you tried so far - and where is it failing or causing issues?
February 24, 2020 at 6:23 pm
I am not sure how a 'table' change requires updating/modifying all stored procedures/views/functions/etc... Do you mean to say that the old table is no longer used - and a new...
February 24, 2020 at 6:21 pm
If you want reporting to be available in that situation - you would need an additional secondary in the DR location to support that requirement. However, in a disaster scenario...
February 22, 2020 at 3:50 pm
Because the database is part of an AG - make sure you check the send and redo queues. To see that - view the availability group dashboard by right-clicking on...
February 21, 2020 at 7:26 pm
My next question would be - is the requirement for near real-time reporting data actually needed? In almost every case I have dealt with - the reality was that the...
February 20, 2020 at 10:21 pm
What is the purpose of mirroring the database? In a normal mirror - the database is not accessible. To get a read-only version of a mirrored database you have to...
February 20, 2020 at 8:43 pm
Viewing 15 posts - 1,981 through 1,995 (of 6,679 total)