Viewing 15 posts - 15,061 through 15,075 (of 49,552 total)
Post your code with the varchar(max) used and post the exact error message
December 27, 2012 at 4:12 am
You shouldn't be using TEXT in the first place, it's an old SQL 2000 data type, included only for backward compatibility. Use Varchar(max)
December 27, 2012 at 4:01 am
Please post table definitions, index definitions and execution plan, as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Easiest temporary fix here would be to disable the button once clicked on and only re-enable it after the...
December 27, 2012 at 3:44 am
dbasql79 (12/27/2012)
QL Server has encountered 1 occurrence(s) of cachestore flush for...
December 27, 2012 at 3:40 am
Bhuvnesh (12/27/2012)
what i think is optimizer will take time to generate plan regardless of time boundation.
You would be thinking incorrectly then. Google: optimiser 'reason for early termination'
December 27, 2012 at 3:04 am
krishnarajeesh (12/23/2012)
That is OPERATION 'LOP_DELETE_ROWS' will not have have the login info, where as "LOP_BEGIN_XACT" for that delete will have.
No, it won't. It has the database user info, not the...
December 27, 2012 at 2:37 am
sqlindia (12/26/2012)
I have a query that need to Rewrite it without cursor, function or loop to produce same result and should be included in ONE SELECT (no temporary object involved).
Why...
December 26, 2012 at 2:43 pm
SQLCrazyCertified (12/26/2012)
So, by doing that automatically truncate the logs?
Yup, as soon as a checkpoint runs. In this case it won't be able to actually truncate the log, due to...
December 26, 2012 at 2:39 pm
SQLKnowItAll (12/26/2012)
If it is as simple as what you provided... creating an index on Table2.FieldB will "probably" help.
Depends how selective the filter is. It's definitely not a covering index,...
December 26, 2012 at 2:38 pm
Sean Grebey (12/26/2012)
Would putting an Index on Table2.FieldB by itself help at all since it is in the WHERE clause by itself?
Maybe, depends what's in the select clause, how...
December 26, 2012 at 1:56 pm
zi (12/26/2012)
- what if I have a huge database = 'Tables' , how to know that I need to re-organise or to re-build indexes
Then you look at the fragmentation of...
December 26, 2012 at 1:34 pm
Maybe take a read through these:
http://www.sqlservercentral.com/articles/Indexing/68439/
December 26, 2012 at 1:14 pm
tz.bahrami (12/26/2012)
I know features of object orientation could not implemented, but i want to find a way to implement them.
Only advice I can give you there is don't. SQL is...
December 26, 2012 at 1:13 pm
Golfer22 (12/25/2012)
When an index is created with STATISTICS_NORECOMPUTE = OFF, how frequently is the index updated? Is it updated every time the table has new rows created on it?
Within...
December 26, 2012 at 1:10 pm
Golfer22 (12/25/2012)
Even though the resource database is read-only, it is updated by SQL Server, right?
No. It contains no data that would require modifying, just the definitions of many of the...
December 26, 2012 at 1:07 pm
Viewing 15 posts - 15,061 through 15,075 (of 49,552 total)