Viewing 15 posts - 6,136 through 6,150 (of 22,211 total)
Capture the execution plan for the query. I'd also capture the plans for the individual views.
Combining views, even through something as seemingly innocuous as a UNION ALL, is a...
May 8, 2015 at 4:55 am
Sean Lange (5/7/2015)
GG_BI_GG (5/7/2015)
Ok. I will look..But is there any option for a subqeury (COALESCE), CROSS APPLY...
COALESCE is just another function and is not at all relevant here. Not sure...
May 7, 2015 at 4:25 pm
Functions against columns lead to scans. Period. End of story. You can't have the functions there AND get good performance. No matter what.
Also, DISTINCT is an aggregation function suggesting that...
May 7, 2015 at 1:05 pm
GilaMonster (5/7/2015)
Ok, I need to write something.Article requests?
I'll write one and then you can correct it.
😀
May 7, 2015 at 1:01 pm
That's part of the object level permission as defined on the database you're scripting. You could probably write a PowerShell routine to remove it later.
May 7, 2015 at 12:56 pm
If you're using the Wizard, when you get to Set Scripting Options, click on the Advanced button. There's a "Script Object Permissions" check box. Make sure that's disabled. That should...
May 7, 2015 at 10:00 am
If you're really serious about learning SQL Server, first, assuming you don't have an MSDN subscription where you can just download a copy of SQL Server, you'll need to purchase...
May 7, 2015 at 7:41 am
It sure sounds like something in the network configuration. There's not exactly a lot of variation in how you can type BACKUP DATABASE TO DISK = that's going to result...
May 7, 2015 at 5:56 am
goldberg.yoni (5/7/2015)
I'm tasked to develop a gaming web application system with relatively large database - it should hold the data about 300 million players, the orders/payment of each player -...
May 7, 2015 at 5:47 am
If nothing constrains the data in any way, you can have duplicate rows.
May 7, 2015 at 5:36 am
AER (5/6/2015)
Thanks Grant,Now I am completely lost. I was asking about the SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED statement; not a snapshot isolation.
Can you advice please?
Thank you.
Alex
I completely misread...
May 7, 2015 at 4:33 am
I think I'd go back to Eirikur's suggestion and make sure everything is patched to the same level. That could absolutely lead to this type of behavior ... if there's...
May 7, 2015 at 4:31 am
T. C. (5/7/2015)
I've looked at the plan again, and the query is left joining to the table that has the index seek/lookup (not every row on the outer side...
May 7, 2015 at 4:22 am
Not exactly. Snapshot isolation creates a copy of the row while it's being modified. That copy can be read while the modification is occurring. The lock on the table is...
May 6, 2015 at 4:11 pm
Jacob Wilkins (5/6/2015)
You could...
May 6, 2015 at 10:21 am
Viewing 15 posts - 6,136 through 6,150 (of 22,211 total)