Viewing 15 posts - 3,181 through 3,195 (of 11,678 total)
Without any table DDL, index definitions, queries used and query plan we can only guess.
Maybe because in the first query data was already presorted by an index, while in the...
April 30, 2014 at 3:27 am
BWFC (4/30/2014)
Koen Verbeeck (4/30/2014)
BWFC (4/30/2014)
Koen Verbeeck (4/30/2014)
BWFC (4/30/2014)
Koen, that really gives the answer away, you don't even need Google :ermm:
Your point being?
Normally you only see this thread after you answered...
April 30, 2014 at 1:41 am
BWFC (4/30/2014)
Koen Verbeeck (4/30/2014)
BWFC (4/30/2014)
Koen, that really gives the answer away, you don't even need Google :ermm:Your point being?
Normally you only see this thread after you answered the question.
There's a...
April 30, 2014 at 1:22 am
BWFC (4/30/2014)
Koen, that really gives the answer away, you don't even need Google :ermm:
Your point being?
Normally you only see this thread after you answered the question.
April 30, 2014 at 1:15 am
Since you control the string that is to be executed, you can add some extra SQL to it.
For example:
DECLARE @SQLStatement NVARCHAR(1000) = '';
DECLARE @ID INT = 0;
SELECT @SQLStatement = Query,...
April 30, 2014 at 1:12 am
Interesting question, thanks.
For people who like an official reference:
ALTER COLUMN
Specifies that the named column is to be changed or altered.
The modified column cannot be any one of the...
April 30, 2014 at 12:07 am
Chowdary's (4/28/2014)
Thank you so much Grant..Now am very much clear on that.
Still i am Expecting the Replies from Other Experts...
Thanks In Adv...
Not sure I am an expert, but I second...
April 28, 2014 at 7:28 am
You cannot take a log backup when you are in simple recovery mode (the log is recycled).
So it is either option 1, or option 2.
April 28, 2014 at 5:28 am
The log file keeps recording transactions until you take a log backup (unless in simple recovery mode).
If the log file grows, it's because it needs that space to log all...
April 28, 2014 at 4:15 am
Since you use the wildcard % at the beginning of the search term, you cannot index on that.
This means SQL Server has to scan the entire 100 million row table...
April 28, 2014 at 3:55 am
Maybe try a metaphor.
A very busy businessman has a few kids.
He can either drive them around town with his car to bring them to school et cetera and waste a...
April 28, 2014 at 3:48 am
If your log file is full and it isn't allowed to grow, the database can't do any transactions any more.
So you either make sure the log file is big enough...
April 28, 2014 at 3:46 am
SQL is delicious (4/25/2014)
Koen Verbeeck (4/24/2014)
Did you try a repair of BIDS? (bit of a long shot, I know)
I think this...
April 27, 2014 at 11:57 pm
Viewing 15 posts - 3,181 through 3,195 (of 11,678 total)