Viewing 15 posts - 1,996 through 2,010 (of 6,679 total)
You don't delete the users on the secondary - users are part of the database and since that database is not accessible you cannot make any changes to the users. ...
February 20, 2020 at 8:13 pm
Logins are created at the server level - and users are added at the database. To have the logins on the secondary server tie to the users in the database...
February 19, 2020 at 10:23 pm
I think the confusion is that the documentation references availability groups - specifically in relation to high availability mode. By default, if that setting is enabled then the containedag availability...
February 19, 2020 at 7:50 pm
If you're using SSIS, I assume Visual Studio, you need to download and install the 32bit version. Visual Studio is still only a 32bit application, so only supports the...
February 19, 2020 at 7:03 pm
This is going to be quite difficult to accomplish - because the Oracle Cloud instance requires an SSH tunnel before you can connect. Generally, the SSH tunnel is setup and...
February 19, 2020 at 6:48 pm
One of the nice things about project deployment is that you can now create a new project from an existing project with a new name. Whether or not that project...
February 19, 2020 at 6:38 pm
From what I have read - SQL Server 2019 includes support for 'Big Data Clusters'. If you setup and configure this (https://docs.microsoft.com/en-us/sql/big-data-cluster/deployment-high-availability?view=sql-server-ver15) then the system databases are automatically included.
February 19, 2020 at 6:33 pm
Thanks Brian.
Since checking the AG was set against the datasource and dataset correctly, my Administrator has been able to enable remote errors for me this morning and I now...
February 17, 2020 at 7:14 pm
You can calculate the start/end of quarter dates with the following:
Declare @quarter int = 3
, @year int = 2019;
Select FirstDayOfQuarter...
February 17, 2020 at 7:03 pm
You really should use the Oracle Connection - and make sure you have installed the Oracle client on your workstation and the SSRS server.
If using the Oracle provider, your parameters...
February 12, 2020 at 10:19 pm
Not sure what you are trying to accomplish here - shrinking isn't going to magically free up space that is allocated and used in the database. The first file has...
February 11, 2020 at 9:47 pm
If you look at the SQL Server Agent properties - under the History page you will see these settings:
The first setting (Limit...
February 11, 2020 at 9:35 pm
The grouping needs to be defined in the report - not in the SQL. By setting up a group in the report - you can display the detail rows for...
February 10, 2020 at 10:37 pm
One of the benefits of SSRS is that you can allow the users the ability to access and use Report Builder. For this you would define a data/report model and...
February 10, 2020 at 7:14 pm
It looks like you do not have a group defined - therefore you are getting each row in the data set as a distinct row in the tablix. You need...
February 10, 2020 at 7:08 pm
Viewing 15 posts - 1,996 through 2,010 (of 6,679 total)