Viewing 15 posts - 556 through 570 (of 4,477 total)
Are you using column aliases in the order by?
Sue
May 22, 2019 at 9:52 pm
Then do it based upon the availability group itself. You'd still need to modify the query. You didn't notice any issues when you tested the change of the setup to...
May 22, 2019 at 9:44 pm
Thanks for posting back and I hope you have your sanity back now 🙂
Sue
May 22, 2019 at 6:59 pm
You would need to change your logic to check at the database level using sys.dm_hadr_database_replica_states to determine primaries and secondaries.
Sue
May 22, 2019 at 4:54 pm
If you check the Users Guide for SQL Server on RDS, it list the features supported and not supported. If you scroll down to the list of features NOT supported,...
May 22, 2019 at 4:48 pm
You would need to move away from using MSSQLXML dialect. You can select data using FOR XML to return XML data.
Sue
May 22, 2019 at 4:27 pm
This might help: https://stackoverflow.com/questions/3560173/store-arabic-in-sql-database You have to change the collation for the various columns and use NVARCHAR() and NCHAR() because you need Unicode support.
Probably not - see the Unicode...
May 21, 2019 at 8:57 pm
Using multiserver administration vs linked servers are really two different things. You can accomplish some what you are looking at but they are very different and implemented differently. You push...
May 21, 2019 at 8:28 pm
A few thoughts.....You'd want to use some monitoring outside of SQL Server to see if it's running. What do you use to monitor the VM host since it appears that...
May 21, 2019 at 8:06 pm
You need to use a Unicode data type like nvarchar -
ALTER TABLE YourTable
ALTER COLUMN YourColumn NVARCHAR(MAX)
Sue
May 21, 2019 at 7:42 pm
For Windows authentication, you can use "Be made using the logins current security context" OR you can also select the login, select impersonate but don't include a remote user or...
May 20, 2019 at 5:55 pm
You absolutely can use windows authentication (or SQL logins) with linked servers.
It looks like you don't have delegation, Kerberos configured to support the passing of credentials. Everything in the chain...
May 20, 2019 at 5:24 pm
If the duplicates are just based on Fname, Lname and which of the duplicates you delete doesn't matter, you can use a CTE along the lines of:
WITH...
May 17, 2019 at 9:27 pm
The naming convention with appending _MSSQL_DBCC<NN> to database name.mdf is what's used by the DBCC CHECKDB process for creating the internal snapshot. It should have cleaned up after the DBCC...
May 17, 2019 at 8:08 pm
I think it's a fairly safe bet that he uses GP for controlled and audited data modifications (OLTP), and wants to use other tools (eg, Access) for read-only reporting...
May 17, 2019 at 8:03 pm
Viewing 15 posts - 556 through 570 (of 4,477 total)