Viewing 15 posts - 91 through 105 (of 224 total)
This will help:
December 31, 2009 at 9:12 am
You can use this query to check the statistics date when it was last updated.
select object_name (i.id)as objectname,i.name as indexname,i.origfillfactor,i.rowcnt,i.rowmodctr ,STATS_DATE(i.id, i.indid) as ix_Statistics_Date,o.instrig,o.updtrig,o.deltrig,o.seltrig
from sysindexes i INNER JOIN dbo.sysobjects o...
December 31, 2009 at 9:05 am
Thank you Bru.. I'll give it a go.
December 18, 2009 at 2:35 pm
Thank you guys for the information.
In sp_autostats again i have to specify table name to get the information. There are 100's of tables, so i'll have to run it individually...
December 18, 2009 at 1:41 pm
Through the parameters in the lookup from the reprts..
December 17, 2009 at 8:24 am
Hi lynn
Yes that will work,, but i will have to change all the Standard reports with : set dateformat ymd
There's 100's of reports..
Is there a setting somewhere which is incorrect??
December 17, 2009 at 8:02 am
Yes, it works with the amended query.
But why do i have to use convert for the collation latin1_general_cp1_ci_as and not with SQl1_latin1_general_cp1_ci_as?
December 17, 2009 at 7:49 am
No it didn't work. I get the same error message.
The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.
December 17, 2009 at 7:37 am
I am sorry i didn't explain it properly. What i meant was the query works fine when running it against the UK customer who have the collation as sql_latin1_general_cp1_ci_as, but...
December 17, 2009 at 7:18 am
as mentioned above it's not very clear what you are trying to achieve. This may help:
http://www.sqlservercentral.com/Forums/Topic825668-338-1.aspx#bm826044
December 16, 2009 at 8:55 am
Grant Connect Grants the user permissions to connect to SQL Server. Do the users belong to a group and the group has got Connect permissions.
December 16, 2009 at 4:30 am
I am thinking of buying practice exams; Which one is better:
http://www.measureup.com/catalog/product.aspx?vid=5&cid=All MS Practice Tests&tid=94&pid=2423
or Transcender in the link above from David.
December 14, 2009 at 12:33 pm
Have you tried it by changing the security level of the Package to:
Protectionlevel = Don'tSaveSensitive
December 14, 2009 at 8:19 am
Some thing like this will work:
EXECUTE master.sys.sp_MSforeachdb 'use ?; select ''?'' dbname, name from sys.tables where name like ''%X%'''
Replace 'X' with your tablename. If you just want the whole list...
December 13, 2009 at 1:57 pm
Viewing 15 posts - 91 through 105 (of 224 total)