Use a derived table to locate the duplicates. Join to the derived table to return the rest of the columns for those records.
Select t.*
From YourTable As t
Inner Join
(
Select UserID, SubscriptionID
From YourTable
Group By
UserID, SubscriptionID
Having Count(*) >= 2
) dt
On (dt.UserID = t.UserID And
dt.SubscriptionID = t.SubscriptionID)