Viewing 15 posts - 1,051 through 1,065 (of 5,356 total)
I admit, that I don't really read it, but each week I wonder why it is send weekly and named database daily. ![]()
February 7, 2005 at 2:21 pm
Maybe it's just me, but can you give some more details what will this be used for? ![]()
February 7, 2005 at 2:18 pm
1) Yes, you cannot buy EM or QA separately. You can however buy Personal edition. I think both are included there and it's only about $50 or so.
2) myLittleAdmin...
February 7, 2005 at 2:11 pm
I bet you'll find something here in the script section. As a very basic starter might this serve:
sp_msforeachdb "select * from sysobjects where objectproperty(id,'ismsshipped')=0"
February 7, 2005 at 1:52 pm
This statement will never work. You're mixing DDL and DML in one. Either create the table explicitely BEFORE the INSERT with CREATE TABLE or use SELECT INTO.
You got me...
February 7, 2005 at 1:22 pm
The error message is pretty much self-describing. You can hava only *one* IDENTITY column per table. I think you should provide more information on your table structure. http://www.aspfaq.com/etiquette.asp?id=5006
February 7, 2005 at 6:45 am
It would be helpful if you could post the statement that caused this error.
Do you mean, you can't do
ALTER TABLE < mytable >
ADD < myid > INT NOT NULL IDENTITY
GO
???
February 7, 2005 at 6:25 am
key column information insufficient or incorrect. too many rows were affected by update.
You have not defined a PRIMARY KEY constraint on your table!
To workaround this, open the table in...
February 7, 2005 at 5:45 am
To explain it. You apparently *do* have duplicates in your data. Run the above script, remove the duplicates which will show up there and then you should be able to...
February 7, 2005 at 4:57 am
Hey Steve, nice one-man show this thread ![]()
February 7, 2005 at 4:41 am
One son ate daddy's hearing aid batteries
One might argue, that in many cases at home a hearing aid isn't a disadvantage at all. After all you can always blame it on empty batteries...
February 7, 2005 at 4:36 am
Not much, but see if this helps: http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/incbulkload.mspx
February 7, 2005 at 3:33 am
You can have a look at the original MS training book. I like that.
As for practise tests, google the archives of the mcdba newsgroup. Plenty of information there.
February 7, 2005 at 3:32 am
Viewing 15 posts - 1,051 through 1,065 (of 5,356 total)