Viewing 15 posts - 3,136 through 3,150 (of 5,356 total)
Good to know for the future and hopefully I don't need to do that conversion stuff no more.
Frank
December 15, 2003 at 2:17 pm
Ähem, I'm a little bit confused.
I thought the original question was how to select all those first name that do not start with an upper letter, or?
Frank
December 15, 2003 at 1:43 pm
December 15, 2003 at 1:04 pm
It's been a while since I done that conversion, therefore I'm not 100% sure, but I think something like this would work
DROP TABLE myName
GO
CREATE TABLE myName(
myn...
December 15, 2003 at 12:57 pm
If you want again a starting value of 1, take a look at BOL for DBCC CHECKIDENT.
Frank
December 15, 2003 at 8:36 am
December 15, 2003 at 8:17 am
AFAIK there is no way using T-SQL.
This might be interesting http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=12631
Frank
December 15, 2003 at 6:45 am
December 15, 2003 at 5:47 am
quote:
Frank seems to hate triggers I wonder why?
Not correct!
I only have no need for...
December 15, 2003 at 5:45 am
Although my company pays the subscription it is good entrepreneurial thinking to question any cost. And I doubt that I will renew subscription.
Maybe I missed this information but are...
December 15, 2003 at 5:37 am
One way could be
SELECT
CONVERT(CHAR(10),MsgDatereceived,104) FROM mails_header
GROUP BY
CONVERT(CHAR(10),MsgDatereceived,104)
ORDER BY
CONVERT(CHAR(10),MsgDatereceived,104) DESC
I know M$ advocates using CAST, but this leaves you with less alternatives...
December 15, 2003 at 4:24 am
If you need to check which event caused the trigger to fire, I would write three different triggers. For me this way the code became more manageable.
Frank
December 15, 2003 at 4:09 am
Sorry, can't help you with an example, because I don't use triggers anymore, but there is an OBJECTPROPERTY 'ExecIsTriggerDisabled'.
It returns 1 when trigger is disabled, 0 when trigger is not...
December 15, 2003 at 4:06 am
December 15, 2003 at 2:40 am
Yes, Erik is right, this might be a good start http://www.sqlservercentral.com/columnists/bkelley/normalization.asp .
And, yes, there are more appropriate forum categories like T SQL or General (works always ![]()
But...
December 15, 2003 at 2:16 am
Viewing 15 posts - 3,136 through 3,150 (of 5,356 total)