Viewing 15 posts - 9,286 through 9,300 (of 49,571 total)
yuvipoy (4/16/2014)
Will it improve my query performance?Say where condition is index column which is "SORT_IN_TEMPDB" option
No.
The option affects where SQL allocated sort space during and only during an index...
April 16, 2014 at 2:49 am
No.
A restore over an existing database is equivalent to dropping the old DB and replacing it. It's not a merge, SQL discards the existing DB and completely replaces it with...
April 16, 2014 at 2:45 am
In that case, I'll take it. Won't be this month though. Is that OK?
April 16, 2014 at 2:38 am
It's used for temp tables, table variables, sort and hash spills (which you generally don't want because they're slower than hash/sort done in memory) and for work tables which the...
April 16, 2014 at 2:35 am
Short of writing a SQL parser in T-SQL, probably not.
April 16, 2014 at 2:28 am
ALTER DATABASE ... MODIFY FILE, set the new name. Take the DB offline. Copy the files to their new location, ensure SQL has permission on the folder, bring DB online.
April 15, 2014 at 10:29 am
Transactional replication, change data capture, mirroring, availability groups, log backups, full/diff backups, transaction rollbacks all read from the log.
Could be the writes to the log from the rebuild have a...
April 15, 2014 at 9:10 am
george sibbald (4/15/2014)
16GB is probably a tad conservative but a good starting point.
Personally I like conservative, it reduces unpleasant surprises.
Just don't use Task Manager to monitor SQL's memory, it...
April 15, 2014 at 8:55 am
sqlbuddy123 (4/15/2014)
April 15, 2014 at 8:51 am
mlwiller2 (4/15/2014)
4. On restart, enable (and check) AWE setting max system memory to?
16 is probably a good place to start.
April 15, 2014 at 8:47 am
mlwiller2 (4/15/2014)
April 15, 2014 at 8:34 am
If you have a job scheduled for 2pm, 4pm and 6pm, the job starts at 2pm is still running at 4pm and finishes at 4:15pm, the job wills start again...
April 15, 2014 at 8:02 am
ChrisM@Work (4/15/2014)
April 15, 2014 at 7:56 am
Table definitions and index definitions please.
April 15, 2014 at 4:52 am
Table definitions, index definitions and execution plan please.
How many rows qualify for that where clause predicate?
April 15, 2014 at 3:21 am
Viewing 15 posts - 9,286 through 9,300 (of 49,571 total)