Viewing 15 posts - 9,286 through 9,300 (of 22,214 total)
I'm not sure. You may need to open a case with Microsoft. I'd say it sounds like you've set them up on the same ports, but you said you checked...
December 12, 2013 at 4:12 am
There isn't a single definition for what exactly is meant by "data dictionary."
Do you mean the table definitions, indexes, constraints, all as defined by T-SQL? Or are we talking about...
December 11, 2013 at 8:05 am
IgorMi (12/11/2013)
bugg (12/11/2013)
GilaMonster (12/11/2013)
Have you considered one of the rowversion-based isolation levels?
I have considered this, but it will mean downtime to Enable READ_COMMITTED_SNAPSHOT ON, which unfortunately I cannot do anytime...
December 11, 2013 at 7:21 am
Not really. If a user can create a database, they can access that database.
On the existing instance, you can set the user as data_reader only which will prevent them...
December 11, 2013 at 7:19 am
It's largely because heap storage goes where ever. It's one of the fundamental issues with heaps and why it's worth pointing out that fundamental storage and access in SQL Server...
December 11, 2013 at 7:16 am
prabhu.st (12/11/2013)
Hi G.F,yes,
it works as Charm..
Thanks,
Prabhu
Which, the cost threshold change?
December 11, 2013 at 6:02 am
Obviously you're getting two different plans with two different execution times. I'd say the principal difference is in the hash keys residual that adds the CustomerSets data to the combined...
December 11, 2013 at 5:20 am
GilaMonster (12/11/2013)
That's a formatting issue that should be dealt with in whatever application is reading this data.
Absolutely!
December 11, 2013 at 5:06 am
yayomayn (12/11/2013)
Grant Fritchey (12/11/2013)
December 11, 2013 at 4:06 am
If you understand that NUMERIC is a precision and then a scale, then you'd know that you need NUMERIC(10,5). Read up on it here. I'd also suggest, instead of NUMERIC,...
December 11, 2013 at 3:49 am
It's probably your code, or your statistics, or the lack of an index. Those are much more likely than fundamental memory issues, but they can all lead to memory issues....
December 11, 2013 at 3:46 am
Without seeing the execution plan I couldn't say for sure, but I'll bet the plan for the statement without the CASE is more accurate to your indexes and statistics while...
December 11, 2013 at 3:41 am
What does the error log of the system being shut down say? Are there any entries in the Windows logs suggesting possible problems?
December 11, 2013 at 3:37 am
Unless you've set up extended events (or a server-side trace) to capture that type of information, there's no way to get it just by querying SQL Server. It's not stored...
December 11, 2013 at 3:35 am
PravB4u (12/10/2013)
as mentioned by Grant, parameter sniffing does make you query slow. I personally experienced it.go through below article.
http://blogs.technet.com/b/mdegre/archive/2012/03/19/what-is-parameter-sniffing.aspx
Be careful with statements like that. Parameter sniffing is an automatic process...
December 10, 2013 at 5:47 am
Viewing 15 posts - 9,286 through 9,300 (of 22,214 total)