Viewing 10 posts - 1 through 10 (of 10 total)
Is there any permanent solution for this issue?
November 19, 2012 at 4:25 am
It is happened recently... Before that i could able to create jobs and all...
now when i open the SSMS and in the 1st attempt i can edit/create job.. when...
November 19, 2012 at 4:22 am
Yes. When I rebuild the clustered Index ,I am Getting the result and it returns all the rows.
select * from tablename where field_id =2 returns the row.
But Why it...
September 7, 2012 at 4:45 am
CREATE NONCLUSTERED INDEX [IX_FIS_Pub_Author_Publication_ID] ON [dbo].[FIS_Publication_Author]
(
[Publication_ID] ASC,
[IsDeleted] ASC
)
INCLUDE ( [Author_ID],
[Seq_No]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE...
September 7, 2012 at 3:31 am
If we force clustered index it is display all the columns .
select * from <table_name> with (index (cluster index name>)) where field_id = 2
its gets result.
Execution plan attached
September 7, 2012 at 2:58 am
No. It is Table.
Column_name Type LengthNullable
Publication_Author_IDbigint8 no ...
September 7, 2012 at 12:29 am
Here is the attachment
September 7, 2012 at 12:14 am
Yes I got the solution !!
SELECT Column1
FROM
(SELECT ROW_NUMBER() OVER (PARTITION BY Column1 ORDER BY Column1) As RNO, Column1
from
<Table_Name>)A WHERE RNO = 1
April 27, 2011 at 5:45 am
Viewing 10 posts - 1 through 10 (of 10 total)