Viewing 15 posts - 151 through 165 (of 1,364 total)
Go to that database-->Storage-->Partition Functions-->Your function(right click and script it out).
MJ
March 3, 2010 at 9:51 am
You can try the below mentioned code provided you eunderstand enabling xp_cmdshell security effects.
EXEC master.dbo.xp_cmdshell 'wmic LOGICALDISK LIST BRIEF'
Manu
March 2, 2010 at 7:03 am
Adam,
Could you please share your SSIS package as I am also in similar situation?
Thanks in advance.
MJ
March 2, 2010 at 6:50 am
Try restarting the application(s) concerned(involved in tht hung transaction) and hope that it has a recovery mechanism to deal with any MSDTC transactions that were left unresolved.
February 26, 2010 at 1:41 pm
Try running the job step definition under SSMS manually and see if it gives you more detailed message.
Also, try whts listed at-->http://www.sqlservercentral.com/Forums/Topic117030-5-1.aspx#bm117428
MJ
February 26, 2010 at 12:05 pm
Search in default trace file for databasename='yourdbname' and eventclass=164 and objecttype=16964
February 26, 2010 at 7:00 am
Reserved is nothing but size of pages that have been allocated for that object.
For example, if you create a empty table as below.
CREATE TABLE [dbo].[Table1] (
[nh] [char] (10) COLLATE...
February 25, 2010 at 4:22 pm
I think counter value parameter is in milli seconds.
Manu
February 25, 2010 at 6:07 am
It is same as reserved column generated in output of sp_spaceused.
reserved
varchar(18)
Total amount of space allocated by objects in the database.
February 25, 2010 at 5:41 am
DBArtisan,Rapid SQL,AquaStudio and several third party tools can be used to administer sql servers of all editions.
I believe that TOAD, from Quest software, can be used to...
February 24, 2010 at 11:39 am
I think yes. MSDAORA is the name of the Microsoft OLE DB Provider for Oracle-->http://www.sqlmag.com/Articles/ArticleID/49687/49687.html?Ad=1
MJ
February 24, 2010 at 11:06 am
SQL Server 2005 introduces automatic horizonal partitioning based on a column and specification of the ranges for the partition. If you have a date column you can partition based on...
February 24, 2010 at 10:51 am
Try what worked for Deepak, stated on http://social.msdn.microsoft.com/Forums/en-US/sqlreplication/thread/c6e9c5ff-0d72-4af0-be40-a13e5f063eec
MJ
February 24, 2010 at 10:30 am
Thats correct.
A new table or index is generally allocated pages from mixed extents. When the table or index grows to the point that it has eight pages, it then switches...
February 24, 2010 at 7:51 am
Did you gave this a try?
MJ
February 24, 2010 at 7:46 am
Viewing 15 posts - 151 through 165 (of 1,364 total)