Viewing 15 posts - 571 through 585 (of 1,155 total)
Major new features that you should get familiar with
1. Policy Based Management
2. Resource Governor
3. Auditing
4. Change Data Capture
5. Backup & Data Compression
6. Central Management Server
7. Performance Data Collector
8. Filtered Indexes
9....
September 11, 2011 at 3:57 pm
Try to install the Backward Compatibility Tools and DTS designer Components for SQL Server 2005 . It should resolve the issue.
You can download them from this link.
To delete a package...
May 18, 2011 at 11:28 pm
Grant is Right.. Follow his advice. RML Utilities is a good tool for the analysis.
Thank...
May 18, 2011 at 6:44 pm
Check this link ..
Thank You,
Best Regards,
SQLBuddy
May 18, 2011 at 5:59 pm
You can Do that...
To get the resource utilization , start a perfmon counter Log .
To capture the SQL Queries, start a SQL Server profiler.
Then you can import perfmon data into...
May 18, 2011 at 5:52 pm
Check if the previous versions are getting deleted for that package somehow from the MSDB.
Thank You,
Best...
May 17, 2011 at 9:56 pm
After making the recommended changes, how much memory is SQL Server using ?
Thank You,
Best Regards,
SQLBuddy
May 17, 2011 at 9:54 pm
DBID () func in the DMV will return in a error for 80 comp Mode dbs. It doesn't return complete information for 80 comp mode databases. May be it's due...
May 17, 2011 at 7:08 am
Is the problem resolved ? Could you provide us an update ?
Thank You,
Best Regards,
SQLBuddy
May 16, 2011 at 8:44 pm
It doesn't work if there is a 80 compatibility mode database. It gives an error for DB_ID() function. If you manually enter the Database ID in its place it will...
May 16, 2011 at 8:43 pm
Do the following for Maintenance.
1. Reorg indexes on Nightly Basis
2. Update stats on Nightly Basis
3. Rebuild indexes on Weekly Basis
4. DBCC CheckDB on Weekly Basis
The thresholds should something be like...
May 16, 2011 at 12:06 am
Check this one
---- Query to find the Fill Factor and index fragmentation
SELECT
db_name() AS DbName,
SCHEMA_NAME(B.schema_id) AS SchemaName
, B.name AS TableName
, C.name AS IndexName
, A.INDEX_DEPTH as Index_depth
,...
May 15, 2011 at 11:59 pm
SQLMyFriend (5/12/2011)
1. Even if you add additional memory, it is necessary to configure the above settings to get optimum Performance. If it is dedicated SQL Server BOx, then always enable...
May 12, 2011 at 11:11 pm
State 11 means the domain login trying to access sql server that wasnt explicitly added to sql server .Even though it can access OS, it cant login in to sql...
May 12, 2011 at 6:48 pm
Shivrudra (5/12/2011)
Total Srv memory :cntr_value =1661808 and cntr_type = 65536
This indicates that SQL Server is using only 1.6 GB of Memory in spite of the 12 GB Max Memory.
What is...
May 12, 2011 at 6:39 pm
Viewing 15 posts - 571 through 585 (of 1,155 total)