Viewing 15 posts - 811 through 825 (of 14,953 total)
Eugene Elutin (9/17/2012)
DECLARE @year int
SET @year = 2015
SELECT
MONTH(mfd) AS MonthNo
...
September 17, 2012 at 9:39 am
ScottPletcher (9/14/2012)
DECLARE @year int
SET @year = 2012 --<<-- chg as needed
SELECT
month_start,
...
September 17, 2012 at 9:28 am
On the I/O, the high reads+scans on rCTEs are because it has to check each row that comes up for children rows.
Example (simple) hierarchy:
1 null
2 1
3 1
4 2
5 2
6 3
7...
September 17, 2012 at 9:17 am
Jeff Moden (9/14/2012)
GSquared (9/13/2012)
Tests that don't involve any table-query, just Insert statements, or a RAM-resident Select (like the cCTE), don't test all the factors in building an adjacency hierarchy crawl...
September 17, 2012 at 8:59 am
CELKO (9/14/2012)
First, email is so obviously not a natural key for a human being that I'm always shocked when people try to use it that way. It's fine...
September 17, 2012 at 8:08 am
L' Eomot Inversé (9/15/2012)
SELECT LoadNumber
FROM LoadTimes...
September 17, 2012 at 6:46 am
balajisrm (9/15/2012)
But this one is not working for SELECT CONVERT(CHAR(6), '2012-09-15', 112);i mean When we provide a hard coded date.
As mentioned, you need to convert that string to...
September 17, 2012 at 6:43 am
I have to say I think the argument is kind of pointless.
I'd need to see some sort of proof, or at least an assertion from the SQL Server devs at...
September 17, 2012 at 6:37 am
ScottPletcher (9/14/2012)
Lynn Pettis (9/14/2012)
/****** Object: UserDefinedFunction [dbo].[DelimitedSplit8K] Script Date: 09/14/2012 09:43:51 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[DelimitedSplit8K]') AND type in (N'FN',...
September 14, 2012 at 10:28 am
Don't use it on AM starts with PM ends that are lower. 10:00 start, 13:00 end, would end up with the same problem you're trying to solve here. ...
September 14, 2012 at 9:17 am
SQL Kiwi (9/14/2012)
GSquared (9/14/2012)
Yep. I forgot it needs to have the hyphens removed.
Yes. AFAIK, the 'yyyymmdd' format is always OK. I personally try to use a CONVERT...
September 14, 2012 at 9:04 am
Stefan Krzywicki (9/14/2012)
Search time type between PM and AM
I can't quite figure out a good way to google it or there's just nothing out there...
September 14, 2012 at 9:00 am
SELECT CONVERT(CHAR(6), GETDATE(), 112);
September 14, 2012 at 8:58 am
If EndTime < StartTime, subtract 12 hours from both.
DECLARE @Time1 TIME = '23:00', @Time2 TIME = '01:00';
SELECT DATEADD(hour, -12, @Time1), DATEADD(hour, -12, @Time2);
Edit: You'll have to subtract 12 hours from...
September 14, 2012 at 8:56 am
I have to agree that DUNS and email are (a) not "natural" keys, (b) very poor choices as primary keys (well, the DUNS numbers would be a good PK for...
September 14, 2012 at 8:51 am
Viewing 15 posts - 811 through 825 (of 14,953 total)