Viewing 15 posts - 4,906 through 4,920 (of 6,400 total)
just need to add in the nessesary date parts
select CONVERT(NVARCHAR,(DATEPART(HOUR,getdate())))
select CONVERT(NVARCHAR,(DATEPART(MINUTE,getdate())))
May 25, 2012 at 6:36 am
What do you get when you run DBCC CHECKCATALOG in the DB?
May 25, 2012 at 6:27 am
You need to group by ALL columns which are not contained in an aggregate function.
May 25, 2012 at 5:41 am
Raunak Jhawar (5/25/2012)
Study guides are not out and neither the test engines or the dumps, if you mean.
This is cleaver marketing, they are not actually asking for the test engines,...
May 25, 2012 at 5:16 am
Sounds like a case of UAC getting in the way. Is it disabled on your machine?
May 25, 2012 at 5:12 am
your missing a GROUP BY clause
May 25, 2012 at 5:06 am
Are you using UNC paths or have you mapped a drive to the network share?
May 25, 2012 at 5:02 am
Cadavre (5/25/2012)
SELECT WorkId, WorkName, CurrentStatus,
ActualStartDAte, ActualEndDate, ParentWorkId
INTO #yourTable
FROM (VALUES(100,'Define','Proposed','25-05-2007','26-06-2008',100),
...
May 25, 2012 at 4:41 am
You will need to pivot or cross tab.
There are two links in my signature to cross tabbing, also if you follow the second link in my signature on posting code,...
May 25, 2012 at 4:29 am
sys.dm_exec_sessions will give you that information, except numeric_roundabort, cursor_close_on_commit and implicit_transactions, just digging into where these would be.
May 25, 2012 at 4:18 am
It would call for the distinct or group by clauses to be added to your query in order to ensure that each row is unique in the result set.
You could...
May 25, 2012 at 3:08 am
Koen Verbeeck (5/25/2012)
anthony.green (5/25/2012)
So we can expect you to have tinnitus next week then Koen?Probably 🙂
It's their Black Album tour, so they're playing the entire Black Album.
Awesome times ahead.
If there...
May 25, 2012 at 2:52 am
So we can expect you to have tinnitus next week then Koen?
May 25, 2012 at 2:39 am
Jealous springs to mind right now.
I usually go to Download festival here in the UK every June, but not this year due to starting a family, so I'm gutted but...
May 25, 2012 at 2:32 am
Koen Verbeeck (5/25/2012)
Schadenfreude-Mei (5/25/2012)
Koen Verbeeck (5/24/2012)
michael vessey (5/24/2012)
can we also lose the 90s please - what is the correct parameter for that ?
As long as you keep all those grunge...
May 25, 2012 at 2:27 am
Viewing 15 posts - 4,906 through 4,920 (of 6,400 total)