Viewing 15 posts - 45,661 through 45,675 (of 49,571 total)
You said "It's not in the same order" Do you mean when retrieving?
Tables are considered unordered in SQL. Unless you specify an ORDER BY in a select, there are no...
July 16, 2008 at 8:51 am
Straight from T-SQL, you can't. This is one of the valid reasons to use CLR procs.
July 16, 2008 at 8:45 am
Do you have the transaction log backups from the time of the last full backup?
July 16, 2008 at 8:35 am
Do you need to be able to restore that database to the point of failure (should a failure occur) or is it acceptable to restore to the last full backup?
July 16, 2008 at 8:34 am
ashok (7/16/2008)
I'm not sure why the ROWLOCK is locking the complete table instead of the row...* My table DOES NOT contain any Indexes...
If you have no indexes, then a read...
July 16, 2008 at 8:31 am
DTS packages are not stored in any of the user databases. They're stored in MSDB and backed up and restored along with that database, not the user databases.
July 16, 2008 at 8:29 am
Also sysindxes shows statistics, while sys.dm_db_index_usage_stats won't.
July 16, 2008 at 8:28 am
And don't truncate the log unless you are willing to throw log records away and lose the ability to do point in time recovery until another full/diff backup is taken.
July 16, 2008 at 8:15 am
I'd start by fnding out what those queries are running.
You can get the query/proc using the sys.dm_exec_requests and sys.dm_exec_query_text dmvs.
July 16, 2008 at 8:13 am
rinu philip (7/16/2008)
Now if the target size is not reached with the above command, we can go on to truncate the...
July 16, 2008 at 1:31 am
Please don't cross post.
Also asked (and answered) here:
http://www.sqlservercentral.com/Forums/Topic534754-1291-1.aspx
July 16, 2008 at 1:25 am
Refer to thread:
http://www.sqlservercentral.com/Forums/Topic534754-1291-1.aspx
July 16, 2008 at 1:24 am
rinu philip (7/16/2008)
Hi,what does 'log_reuse_wait_desc' --mean?
I explained it above.
Its the reason that the space in the log file is not been reused and hence the log is growing
July 16, 2008 at 1:20 am
rinu philip (7/16/2008)
After shrinking the log then a trucate will get more space.:)
Explain what you mean there please?
July 16, 2008 at 1:19 am
GilaMonster (7/16/2008)[hr
If you need to restore that database to a point after Tranlog backup 12, the restore paths are:
Full 1, Diff 2, Tran backups 5,6,7,8,9,10,11,12
Or
Full 2, Diff 4, Tran backups...
July 16, 2008 at 1:18 am
Viewing 15 posts - 45,661 through 45,675 (of 49,571 total)