Viewing 15 posts - 1,036 through 1,050 (of 5,356 total)
February 9, 2005 at 3:06 am
Thanks for explaining. Sounds cooler than "I can't believe this is happening to me (or us in this case". ![]()
February 9, 2005 at 1:54 am
No shortcut here. And that's good so. Here are some thought on this from SQL Server MVP Kenneth Wilhelmsson:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=158711
February 8, 2005 at 3:04 pm
For the records, here are some more examples of this parsing trick:
http://vyaskn.tripod.com/fun_with_numbers_in_t-sql_queries.htm
February 8, 2005 at 2:56 pm
I doubt whether you will find much help around here. SQL Server pros aren't going to be willing to help people "blag" a job in their profession because it kinda belittles...
February 8, 2005 at 2:49 pm
ALTER TABLE YourTableNAME
ALTER COLUMN SerialNo int identity (1,1) not null
Go
Interesting script. Do you think it will work? ![]()
February 8, 2005 at 2:28 pm
Not directly what you asked for, but maybe these tools will help you somehow
http://www.microsoft.com/technet/archive/itsolutions/intranet/downloads/webstres.mspx
February 8, 2005 at 8:27 am
Glad I could help. ![]()
February 8, 2005 at 7:14 am
...oops, forgot to mention. It works also in EM. You only need to refresh the view.
February 8, 2005 at 6:59 am
Are you trying this from within EM???
This works fine for me with QA:
CREATE TABLE [dbo].[Table1] (
[c1] [int] NOT NULL ,
[c2] [char] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Table1]...
February 8, 2005 at 6:58 am
First, let me say, that the INT value of today is *not* 38390! Since we are now past 12:00:00 some methods round up which isn't correct. So, the correct value is...
February 8, 2005 at 6:34 am
Welcome here! ![]()
You asked a FAQ which is best explained here:
February 8, 2005 at 3:32 am
Hm, in this case I'll second Remi.
February 8, 2005 at 2:14 am
February 7, 2005 at 2:25 pm
Viewing 15 posts - 1,036 through 1,050 (of 5,356 total)