Viewing 15 posts - 31 through 45 (of 9,640 total)
With SQL Server 2014 Microsoft changed the way they do Cardinality Estimation and with a trace flag allowed the use of the previous Cardinality estimator, this would explain the differences...
May 25, 2018 at 1:33 pm
If it is running is likely isn't waiting on anything it is executing the task that it needs to do. You should only see a wait if the query isn't...
May 25, 2018 at 9:06 am
You can add teh Lock_acquired event to your trace, but that is going to be A TON of information because everything (unless using snapshot isolation) takes some kind of lock. ...
May 25, 2018 at 9:03 am
TABLOCK is an option on BULK INSERT so find out if they are using that option, if they are actually using the BULK INSERT statement. The other reason that they...
May 25, 2018 at 8:55 am
Encrypting a backup shouldn't impact memory at all as the same pages will need to be read into memory, there will be small hit in CPU use, probably < 5%,...
May 25, 2018 at 8:45 am
Lynn is correct. Those columns in msdb.dbo.backupset indicate if the backup itself was run with the Encryption option, not that the backup is of a database encrypted with...
May 25, 2018 at 8:39 am
Do you mean the server level "remote access" setting or the "allow remote connections" setting for the service? "allow remote connections" has to be on in order for you to...
May 25, 2018 at 8:32 am
If I understand correctly I think this will work:
update status_table
SET Status = CASE OPEN_CLOSE
...
May 25, 2018 at 8:00 am
Brandie,
Take a deep breath, this won't be as hard as you think. If you are using SSIS and a data flow task to move the data, you'll just...
May 25, 2018 at 7:54 am
Can someone help me?
I want to display the last job execution time and date on...
February 12, 2018 at 6:44 am
Great glad I could help and thanks for letting me know that it helped you out.
January 18, 2018 at 2:31 pm
GROUP BY <primary key> and then decide what you want to do...
January 3, 2018 at 1:33 pm
This is an even simpler option:
WITH VTE AS
(
SELECT
*
FROM
(
VALUES (3),
(25.75),
...
December 29, 2017 at 8:47 am
Now add the WHERE clause:
INSERT INTO
[Tbl_ComputerInventory]
(
[ComputerName]
, [SerialNumber]
...
December 29, 2017 at 7:42 am
If you have your databases in an SSDT database Project you can use T4 templates to generate CRUD procedures. I've also used written T-SQL to generate them, but since I...
December 28, 2017 at 5:10 pm
Viewing 15 posts - 31 through 45 (of 9,640 total)