Viewing 15 posts - 7,171 through 7,185 (of 7,597 total)
Eugene Elutin (9/19/2012)
...
ISO currency and Country codes are a prime example of an when the natural key (ISO Code) can be used as an Identity column and Primary Key.
...
You wouldn't...
September 19, 2012 at 8:26 am
I would use @@VERSION for that, because you can get the SQL version year, and then it's more self-evident about what you're checking:
DECLARE @isSqlServer2008 bit
SET @isSqlServer2008 = CASE WHEN...
September 18, 2012 at 12:56 pm
Definitely don't use a cursor.
But you could pass all the values at once as a table-valued parameter; you just need to modify the code of the sp to handle a...
September 18, 2012 at 8:46 am
Lowell (9/18/2012)
September 18, 2012 at 8:09 am
Eugene Elutin (9/17/2012)
GSquared (9/17/2012)
Eugene Elutin (9/17/2012)
And you didn't respond to the basic assertion about e-mail, which is its horrible weakness as a primary key for human beings. I...
September 17, 2012 at 4:35 pm
Do yahoo and other email provides allow expired and reclaimed email addresses to be re-cycled?
If any of them did recycle one, and I got the same email address as a...
September 17, 2012 at 2:58 pm
CELKO (9/17/2012)
Think of a parking garage (disk) and parking slot numbers (identity, rowid, or other physical locator). The slot number does not appear on your insurance from, at the DMV,...
September 17, 2012 at 2:56 pm
Luis Cazares (9/17/2012)
September 17, 2012 at 2:40 pm
SELECT
CustId
FROM dbo.product_details
GROUP BY
CustId
HAVING
MAX(CASE WHEN ProdId = 0 THEN 1 ELSE 0 END) = 0 AND
...
September 17, 2012 at 1:10 pm
GSquared (9/17/2012)
FROM (
SELECT CAST(CAST(@year * 10000 + 0101 AS char(8)) AS datetime) AS month_start UNION ALL
SELECT CAST(@year * 10000 + 0201 AS...
September 17, 2012 at 1:06 pm
CELKO (9/17/2012)
Wikipedia says that as of 2011, more than 2.2 billion people – nearly a third of Earth's population — have email. I seldom work with a target audience...
September 17, 2012 at 11:05 am
Lynn Pettis (9/17/2012)
September 17, 2012 at 10:58 am
sorry last request... if Sunday were to be added on there? So both Saturday and Sunday.
I'll assume you want to count them separately. If you want a total...
September 17, 2012 at 10:44 am
DECLARE @year int
SET @year = 2012 --<<-- chg as needed
SELECT
month_start,
--'19000106' is a Saturday, so DATEDIFFs below count Saturdays:
...
September 17, 2012 at 10:33 am
GSquared (9/17/2012)
ScottPletcher (9/14/2012)
DECLARE @year int
SET @year = 2012 --<<-- chg as needed
SELECT
month_start,
...
September 17, 2012 at 10:31 am
Viewing 15 posts - 7,171 through 7,185 (of 7,597 total)