Viewing 15 posts - 1 through 15 (of 20 total)
You may also want to look into creating an SSIS package since it's job is to extract, transform, and load (ETL) data. I'm assuming you've already looked into this but...
December 26, 2019 at 2:38 pm
What you can do right now is take a look at the execution plan of the queries that are running when a card is scanned at the reader. That may...
November 22, 2019 at 7:57 pm
You may be able to do this using sub queries but that won't really help you with one single query. CTE is probably the way to go like SQLian mentioned.
November 22, 2019 at 7:49 pm
It always made me nervous to use MERGE since MS put a disclaimer on the KB page for MERGE (https://docs.microsoft.com/en-us/sql/t-sql/statements/merge-transact-sql?view=sql-server-2017).
I work in a OLTP shop. We have had issues...
October 1, 2019 at 1:44 pm
I would check the SSRS logs on the new server and see what errors are showing. When you say the URL is not working, do you mean you cannot get...
September 6, 2019 at 3:49 pm
If you haven't already done so, you may want to read through this and follow any instructions: https://docs.microsoft.com/en-us/sql/database-engine/install-windows/rename-a-computer-that-hosts-a-stand-alone-instance-of-sql-server?view=sql-server-2017
August 21, 2019 at 7:57 pm
If you are looking to get better performance for queries running against the readable secondary, I would look at indexes. Unfortunately, you will have to add them to the actual...
March 28, 2019 at 7:58 am
Do you already have an automated way to install and configure SQL Server? If so, you should be able to script out the existing trigger in SSMS and add that...
March 27, 2019 at 7:22 pm
Michael L John - Monday, March 25, 2019 10:14 AMA simple search on this site returned this:
http://www.sqlservercentral.com/blogs/erichumphrey/2011/04/14/get-all-serverproperty-values-for-sql-server/
I was hoping to...
March 25, 2019 at 10:33 am
March 21, 2019 at 5:27 pm
Try running a NSLOOKUP against the Listener name. If it returns more than 1 IP address you have Multi-Subnet Failover enabled. Some applications cannot use this feature or it must...
March 17, 2019 at 9:15 am
Typically, you should be able to specify the directories for user database, tempdb, etc. during setup. If not, you can change the location of the files after the installation:
March 8, 2019 at 1:06 pm
You may also want to read up on RTO and RPO: https://www.sqlskills.com/blogs/paul/the-accidental-dba-day-6-of-30-backups-understanding-rto-and-rpo/
This may be very important to your company and/or customers depending on what their needs or...
March 5, 2019 at 7:17 am
March 4, 2019 at 2:05 pm
Changes to Read Only Routing should take effect immediately after making the change. However, applications must contain the parameter ApplicationIntent=ReadOnly in the connection string to use the readable secondary. If...
February 26, 2019 at 6:29 am
Viewing 15 posts - 1 through 15 (of 20 total)