Viewing 15 posts - 5,416 through 5,430 (of 22,211 total)
Stuck next to Steve on a train across the uk. He's a seat hog.
October 15, 2015 at 3:48 am
Brandie Tarvin (10/13/2015)
GilaMonster (10/13/2015)
Put the keyboard down, pet the cat. Priorities!
Now she's hissing at me because I made the mistake of trying to move my other hand to the keyboard....
October 13, 2015 at 8:29 am
I would suggest that you do NOT reboot SQL Server.
First, take the database to EMERGENCY mode using ALTER DATABASE
ALTER DATABASE dbname SET EMERGENCY;
then, immediately take a COPY_ONLY backup and store...
October 12, 2015 at 2:13 am
To my knowledge SQL Audit will capture ad hoc queries, parameterized queries and stored procedures. It just doesn't keep the values that are passed to parameters. This is the same...
October 9, 2015 at 11:07 am
The optimizer won't always be able to spot that the indexed view provides all the columns needed for your data. This is especially true if the queries involved are beyond...
October 9, 2015 at 6:59 am
In addition to setting the max memory as Gail suggests, I'd want to see what your wait statistics are before and after you add this memory. Further, you want to...
October 9, 2015 at 6:56 am
Errors are likely to be in the error log, but there are a number of DMVs that are useful for observing behavior, especially retry rates, etc.
sys.dm_hadr_availability_replica_states
sys.dm_hadr_database_replica_states
sys.dm_tcp_listener_states
You can also gather information...
October 9, 2015 at 4:46 am
Rod at work (10/8/2015)
Grant Fritchey (10/8/2015)
October 8, 2015 at 8:43 am
The problem as you've described it is very unlikely to be solved using queries. The only thing you could look to would be something like SOUNDEX. That will help...
October 8, 2015 at 8:38 am
balasach82 (10/8/2015)
To confirm, Encryption (using master certificate) is only for protecting/securing the data, but it does not obfuscate it i.e, changing the values from AAA to BBB.
That's right. Encryption of...
October 8, 2015 at 8:28 am
In general, look up the INSERT ... SELECT syntax. That's your buddy when dealing with stuff like this. Your current structure, as everyone else has already said, is broken.
October 8, 2015 at 7:10 am
I would love to see the execution plan for this query.
I suspect that you're trying to add the columns by referencing the table name when you need to be using...
October 8, 2015 at 7:05 am
There will be a way to do this in SQL Server 2016 (and it's already there in Azure SQL Database). Otherwise, no, it's write update statements or look to a...
October 8, 2015 at 7:01 am
While SQL Server can store XML, it's not great at it. You might want to consider looking at one of the ID/Value databases that's meant to cope with this type...
October 8, 2015 at 7:00 am
I'm not crazy about that configuration. I'd rather see the CPUs available for use instead of a MAXDOP of 1. Just make sure to change the cost threshold for parallelism...
October 8, 2015 at 5:01 am
Viewing 15 posts - 5,416 through 5,430 (of 22,211 total)