Viewing 15 posts - 31 through 45 (of 55 total)
Yes that fixed it, I also found good information at http://www.sqlservercentral.com/Forums/Topic332162-146-1.aspx
Thank You
March 10, 2009 at 4:00 pm
I tried that and it gives me the same error.
March 10, 2009 at 2:54 pm
I USED THIS SELECT AND IT HAD ALL THE INFORMATION I NEEDED
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'YOUR_TABLE_NAME' ORDER BY COLUMN_NAME
THANKS
March 3, 2009 at 10:27 am
I have just uploaded the results from running sys.dm_db_missing_index_group_stats
is this is bad as it looks I am really not sure how to read it yet.
I know I am asking a...
February 5, 2009 at 10:00 am
I really do not know what this means but I have uploaded a file with the results of
select * from sys.dm_db_missing_index_details
February 5, 2009 at 9:37 am
The query was created and is maintained in peoplesoft query manager.
February 4, 2009 at 12:59 pm
Peoplesoft Enterprise
Finance
February 4, 2009 at 12:11 pm
PeopleSoft 9.0 peopletools 8.48 query was created throught the PIA
February 4, 2009 at 10:53 am
Table definition Added
February 4, 2009 at 8:04 am
STATISTICS TIME
SQL Server parse and compile time:
CPU time = 3119 ms, elapsed time = 3119 ms.
(1841 row(s) affected)
SQL Server Execution Times:
CPU time =...
February 4, 2009 at 7:37 am
STATISTICS IO FROM MY PRODUCTION SERVER
Table 'Worktable'. Scan count 5523, logical reads 32808, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads...
February 4, 2009 at 7:34 am
Table definition and index definitions please? I do not know how to get these but I am looking and learning.
February 3, 2009 at 10:24 am
execution plan add in attachments
February 3, 2009 at 10:06 am
I fixed it by adding
AND B.ACTIVE_HOLD_DTTM= (SELECT MAX(MX.ACTIVE_HOLD_DTTM) FROM PS_ORD_HOLD_AUDIT MX
WHERE B.ORDER_NO=MX.ORDER_NO
ND MX.ACTIVE_HOLD_DTTM <= SUBSTRING(CONVERT(CHAR,GETDATE(),121), 1, 10))
to the where statement
January 16, 2009 at 2:20 pm
Viewing 15 posts - 31 through 45 (of 55 total)