Viewing 15 posts - 436 through 450 (of 1,365 total)
July 1, 2009 at 7:27 pm
Try this query:
select object_name(si.object_id) As TableName,fg.name,si.type_desc
from sys.indexes si join sys.data_spaces fg
on si.data_space_id=fg.data_space_id
join sys.objects so on so.object_id=si.object_id
where so.type='U'
MJ
July 1, 2009 at 2:45 pm
Itd under second tab(Optimizations).
From BOL:
Reorganizing the data on the data and index pages by rebuilding indexes with a new fill factor. This ensures that database pages contain an...
June 26, 2009 at 7:11 pm
SQL Server Integration Services Package Scheduling with SQL Server Agent
http://www.mssqltips.com/tip.asp?tip=1180
The code that I provided is for scheduling ssis package stored in msdb database. Just open Jobs under sql server...
June 26, 2009 at 6:28 pm
Scheduled SSIS job code:
/SQL "\Package location under msdb folder with its name" /SERVER "SQLInstanceName" /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING E
MJ
June 26, 2009 at 4:39 pm
EG: if the Database is 20GB, reduce the auto grow to 5% from 10% so the Db grows 1GB at a stretch...
Rather than adopting the above methos try specifying autogrowth...
June 25, 2009 at 2:45 pm
Did you run DBCC CHECKDB with DATA_PURITY command
after the upgrade?
http://www.mssqltips.com/tip.asp?tip=1119
MJ
June 25, 2009 at 2:09 pm
To test the performance of existing hardware you can make use of sqliostress utility.
http://support.microsoft.com/kb/231619
For server consolidation search in sqlservercentral forums and you will find some really gud information.
MJ
June 25, 2009 at 12:56 pm
Now what you are telling is that I should script out permissions of bob on dbo.test (does by default BOB has create table permission for dbo schema ? No...
June 25, 2009 at 12:33 pm
June 24, 2009 at 7:13 pm
Following is an example of ALTER SCHEMA command
ALTER SCHEMA
siteadmin —Target Schema
TRANSFER
dbo.testTable –Object to be transferred
Please ensure that you have scripted all the permission of original object before transferring to new...
June 24, 2009 at 6:30 pm
Run:
sp_changedbowner 'domainA\UserY'
under tht database.
HTH!
MJ
June 24, 2009 at 5:52 pm
Have you tried running checkdb in that database?
Mj
June 24, 2009 at 5:48 pm
Restrictions for Point-in-time Recovery
If a log backup taken under the bulk-logged recovery model contains bulk-logged changes, point-in-time recovery is not allowed. Trying to perform point-in-time recovery on a log...
June 24, 2009 at 3:57 pm
June 24, 2009 at 12:45 pm
Viewing 15 posts - 436 through 450 (of 1,365 total)