Viewing 15 posts - 121 through 135 (of 151 total)
Following the footsteps of Mr. Jeff Moden, I believe this would be good enough
DECLARE @StartDate DATETIME, @EndDate DATETIME, @MonthDiff INT
SELECT @StartDate = '1901-08-10', @EndDate = '4850-10-31'
...
November 17, 2011 at 3:35 am
Do not know what is the status of your problem but you cannot do such comparison. Besides you are not using the right attribute to search for. "score match_option" is...
November 16, 2011 at 6:01 am
Why don't you explicitly DENY the permissions on [dbo] schema for that AD Group.
November 16, 2011 at 2:20 am
Besides, If there is a column in both tables which have same values but all other columns could have different values then this is the solution which may outperform the...
November 15, 2011 at 6:17 am
I believe Joseph Hampton's solution(with a minor modification i.e. UNION ALL instead of UNION) is a much easier solution for SQL 2005+.
(SELECT * FROM A
EXCEPT
SELECT * FROM B)
UNION ALL
(SELECT *...
November 15, 2011 at 5:14 am
Thanks a lot Gail. It is always nice to see your detailed response with much ease to understand.
It is getting interested as I expected. Since read uncommitted isolation level could...
November 10, 2011 at 10:36 pm
There seems to be problem with the permissions rather than the query itself. You can easily identify it by fetching the server principals through connecting to the servers with a...
November 10, 2011 at 3:38 am
Ninja's_RGR'us (11/1/2011)
sqlzealot-81 (10/31/2011)
November 10, 2011 at 1:53 am
Ninja's_RGR'us (11/1/2011)
@Gail, take over from here. Getting outside my confort zone and no time to research.
You are indeed outside your confort oops.. comfort zone. 🙂 just kidding, please do...
November 1, 2011 at 6:58 am
I disagree to disagree your agreeing to second point of view and agree to disagree your point of view as disagreeing :hehe: Must be time for me to get a...
November 1, 2011 at 4:52 am
Ninja's_RGR'us (11/1/2011)
Usman Butt (11/1/2011)
November 1, 2011 at 4:41 am
Can you please let us know which Windows Server and SQL Server are you using? Moreover, is your server on a VM?
November 1, 2011 at 4:21 am
I would rather disagree slightly with sqlzealot-81. Index rebuild/reorganize should be part of the maintenance plan, but so should be updating the statistics. Index rebuild/reorganize is required to make the...
November 1, 2011 at 4:04 am
Your question is a bit weird. If I can understand correctly, then you need only some specific tables data to be in original state. Right? If this is the case...
November 1, 2011 at 1:35 am
Viewing 15 posts - 121 through 135 (of 151 total)