Viewing 15 posts - 1,576 through 1,590 (of 2,463 total)
Suresh B. (6/30/2010)
Bhuvnesh (6/30/2010)
HiIn one of my sql instance i am not getting records for table/index updation in sys.dm_db_index_usage_stats DMV.
Please post the SQL query you are running.
SELECT OBJECT_NAME(OBJECT_ID),*...
June 30, 2010 at 6:11 am
Bhuvnesh (6/30/2010)
ALZDBA (6/30/2010)
Microsoft SQL Server 2005 - 9.00.4053.00 (X64) May 26 2009 14:13:01 Copyright (c) 1988-2005 Microsoft Corporation Developer Edition (64-bit) on Windows NT...
June 30, 2010 at 5:43 am
ALZDBA (6/30/2010)
Microsoft SQL Server 2005 - 9.00.4053.00 (X64) May 26 2009 14:13:01 Copyright (c) 1988-2005 Microsoft Corporation Developer Edition (64-bit) on Windows NT 5.2...
June 30, 2010 at 5:42 am
i am sql administrator, is that enough for it ?
June 30, 2010 at 4:29 am
why ? what issue you got ?
June 29, 2010 at 12:21 am
i dont know your exact requirement but you can give them conditional flow of businees flow, if you know that . i guess high level view will work for them.
June 29, 2010 at 12:18 am
you mean to say execution plan .. i dont think there is any word like "flow chart " for queries
you can use "include actual exec plan" available in...
June 28, 2010 at 6:43 am
sqlcool (6/27/2010)
Any ideas how to automate this? Do i need to write some T-SQL code or is there any setting in SQL-Server 2005 or 2008?
USe sp_send_dbmail including Query parameter.
June 27, 2010 at 11:39 pm
Try this
IF EXISTS (SELECT name
FROM sysobjects
WHERE name = N'up_AllProcPermissionsForDB'
AND type = 'P')
...
June 27, 2010 at 11:37 pm
try this ...some what like your requirement
SELECT '''' + cast(value as varchar(2000)) + '''' FROM ::fn_trace_getinfo(0) where property = 2
SELECT ...
June 27, 2010 at 11:35 pm
Eric.Johns (6/24/2010)
June 25, 2010 at 6:30 am
i have some confusion here , if the column is identity--auto incremented then how duplicates records generated ?
June 25, 2010 at 6:27 am
Alex Laime (6/22/2010)
I tried creating and running this various ways, using the wizards or manually
Have you tried through scripting ? addtionally is there any mgmt window opened ( using...
June 23, 2010 at 5:38 am
Viewing 15 posts - 1,576 through 1,590 (of 2,463 total)