Viewing 15 posts - 2,131 through 2,145 (of 5,394 total)
I think your issue is the same as your other post:
January 12, 2012 at 3:52 am
Do you have a fulltext index for TEXT? That would speed up things a lot.
January 12, 2012 at 3:51 am
SQLLite works on most portable devices.
January 12, 2012 at 3:11 am
Page Life Expectancy.
It's one of the easiest methods to detect memory pressure.
Here's a good article on the subject:
http://www.sqlskills.com/blogs/jonathan/post/Finding-what-queries-in-the-plan-cache-use-a-specific-index.aspx (Read the paragraph "What’s Wrong about Page Life Expectancy >= 300?")
January 12, 2012 at 1:59 am
Thanks for the feedback.
Glad you sorted it out.
January 12, 2012 at 1:57 am
You mean that the SQL Server service is not showing in the Cluster resources?
I guess you didn't install it as a cluster service, then.
Try issuing this:
SELECT SERVERPROPERTY('IsClustered')
If it returns 0,...
January 11, 2012 at 2:16 pm
Definitely an application error.
App seems to complain about empty connection type. Debug the application.
January 11, 2012 at 2:11 pm
JimS-Indy (1/11/2012)
I want to send an email with a caption on it ('Red Cross Rescue Team...
January 11, 2012 at 2:07 pm
Oracle linked server? Hmmm...
How is the provider loaded? In process or out of process? In process load could definitely crash the service if the provider leaks memory.
Even if regular connections...
January 11, 2012 at 2:03 pm
llawws (1/11/2012)
Thanks alotwe have fix the issue.
we have space with column name before and after.
it was enclosing after including braces
No, wait: you mean you have a column named "...
January 11, 2012 at 1:58 pm
SQL Kiwi (1/11/2012)
http://sqlblog.com/blogs/paul_white/archive/2011/06/22/undocumented-query-plans-equality-comparisons.aspx
Another great read.
I must have missed it when you first published it.
Thanks a lot!
January 11, 2012 at 11:08 am
SQL Kiwi (1/11/2012)
Gianluca Sartori (1/11/2012)
@paul-2: why HOLDLOCK? Is there a chance of intra-query non-repeatable reads in MERGE statements?
http://weblogs.sqlteam.com/dang/archive/2009/01/31/UPSERT-Race-Condition-With-MERGE.aspx
You broke my code! That doesn't allow me to insert a NULL...
January 11, 2012 at 11:06 am
Rewritten for mere mortals (like myself):
CREATE TABLE myTable (
pKey INT IDENTITY(1,1) PRIMARY KEY,
CODE VARCHAR(10)
);
DECLARE @MYCODE VARCHAR(10) = 'MYCODE';
DECLARE @ID int = NULL;
DECLARE @OUTPUT TABLE (ID int);
WITH TestedValue (MyCode) AS (
SELECT...
January 11, 2012 at 10:54 am
Another option: use a linked server.
January 11, 2012 at 10:42 am
Viewing 15 posts - 2,131 through 2,145 (of 5,394 total)