Viewing 15 posts - 826 through 840 (of 14,953 total)
SQL Kiwi (9/14/2012)
GSquared (9/14/2012)
SQL Kiwi (9/14/2012)
-- Style 103 = dd/mm/yyyy
SELECT DATEPART(DAY, CONVERT(date,...
September 14, 2012 at 8:26 am
I have about a dozen with various IT-related products/companies/whatever marketed on them.
My current favorites aren't IT though. I recently got a couple of custom t-shirts with:
Front:
Vote Illuminati
No matter...
September 14, 2012 at 8:22 am
Stefan Krzywicki (9/14/2012)
GSquared (9/14/2012)
Stefan Krzywicki (9/14/2012)
Brandie Tarvin (9/14/2012)
Stefan Krzywicki (9/14/2012)
GilaMonster (9/14/2012)
Case in point:
"I read through those articles [on index...
September 14, 2012 at 8:17 am
SQL Kiwi (9/14/2012)
Rather than trying to navigate all the quirks of the interpretation of strings as dates, use an explicit style:
-- Style 103 = dd/mm/yyyy
SELECT DATEPART(DAY, CONVERT(date, '13/09/2012', 103));
Or ANSI/ISO...
September 14, 2012 at 8:15 am
Stefan Krzywicki (9/14/2012)
Brandie Tarvin (9/14/2012)
Stefan Krzywicki (9/14/2012)
GilaMonster (9/14/2012)
Case in point:
"I read through those articles [on index column ordering], but...
September 14, 2012 at 8:13 am
Or "by design because they hoped it would never come up and couldn't figure out a good solution for it". I've seen that one before too. (As opposed...
September 14, 2012 at 8:10 am
Like this:
DECLARE @StartDate DATE = '20120101';
WITH Seeds(Seed)
AS (SELECT *
...
September 14, 2012 at 8:07 am
Brandie Tarvin (9/14/2012)
But...
September 14, 2012 at 7:58 am
Gazareth (9/14/2012)
It's the where clause that's causing the difference in the results,...
September 14, 2012 at 7:55 am
What isn't working about it. Do you get an error message? Get the wrong results? Something else?
September 14, 2012 at 7:50 am
Yep. Knowing which forum/site to use isn't helped by the fact that they're all "SQL". Definitely feel for you on that one.
September 14, 2012 at 7:49 am
Partial recompile.
Statement-level, not proc-level.
Example here: http://sqlserverplanet.com/sql-optimization/temp-table-recompiles/
Excellent article on table variables and temp tables and other options: http://www.simple-talk.com/sql/t-sql-programming/temporary-tables-in-sql-server/
September 14, 2012 at 7:47 am
Gazareth (9/14/2012)
It's the where clause that's causing the difference in the results,...
September 14, 2012 at 7:00 am
PL/SQL doesn't declare variables with @ symbols on them, per the samples I found. Here's an example: http://www.plsqltutorial.com/plsql-variables/
The problem you're running into is that T-SQL (Microsoft's version of SQL)...
September 14, 2012 at 6:55 am
I couldn't find an answer to this guy's question: http://www.sqlservercentral.com/Forums/Topic1359181-391-1.aspx?
I always thought that "," and "CROSS JOIN" were identical, but he found a case where they aren't. "," generates...
September 14, 2012 at 6:47 am
Viewing 15 posts - 826 through 840 (of 14,953 total)