Viewing 15 posts - 526 through 540 (of 761 total)
This does:
SSelect * From ClientDetails
Where InterviewDate IN (Select MAX(InterviewDate) From ClientDetails Group By ClientID)
May 1, 2012 at 11:29 pm
Please just post the DDL of your table and some readily consumable sample data as a series of Insert Statements.
We'll provide the query for Pivot. post "only" the DDL of...
May 1, 2012 at 6:30 am
Phil Parkin (5/1/2012)
tt-615680 (5/1/2012)
Would anyone be able to let me know how to resolve the following error message please?
Msg 911, Level 16, State 1, Line 1
Database 'databasename' does...
May 1, 2012 at 6:18 am
GilaMonster (5/1/2012)
vinu512 (5/1/2012)
Also GETDATE() returns the datetime specific to the database including the database time zone offset where as CURRENT_TIMESTAMP doesn't include the database offset.
What do you mean by that?
Getdate...
May 1, 2012 at 2:57 am
You should be able to use all those features with the hardware you've mentioned.
May 1, 2012 at 2:44 am
CURRENT_TIMESTAMP is the ANSI standard method for getting date & time while GETDATE() is the T-SQL method.
Also GETDATE() returns the datetime specific to the database including the database time zone...
May 1, 2012 at 2:38 am
Sorry missed the group by Division part in my last post...here is the edited query:
;With CTE
As
(Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)
Select...
May 1, 2012 at 2:25 am
Sorry missed the group by Division part in my last post...here is the edited query:
;With CTE
As
(Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)
Select...
May 1, 2012 at 2:24 am
Have also posted the query in your original thread. Here it is again:
;With CTE
As
(Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)
Select b.* From...
May 1, 2012 at 2:11 am
This will work.
;With CTE
As
(Select *, ROW_NUMBER() Over (Partition By DateOfBirth, SSN Order By ID) As Rownum From Employee)
Select b.* From CTE as a
JOIN Employee As b ON a.DateofBirth = b.DateofBirth...
May 1, 2012 at 2:10 am
04/30/2012 12:17:59.328 Attempting to determine security.config file path
04/30/2012 12:17:59.406 Checking to see if policy file exists
04/30/2012 12:17:59.422 .Net security policy file does not exist
04/30/2012 12:17:59.437 Attempting to create .Net security...
May 1, 2012 at 12:56 am
Please post the query and the Error that you get.
May 1, 2012 at 12:31 am
Great....good to hear that it worked 🙂
April 30, 2012 at 11:00 pm
al_yamama_1980 (4/30/2012)
I choose SQL Server
I'm afraid I can't help you further. I'll keep looking. Will tell you if I find something.
April 30, 2012 at 5:13 am
Viewing 15 posts - 526 through 540 (of 761 total)