Viewing 15 posts - 12,661 through 12,675 (of 18,923 total)
Good points... Maybe a faster solution would be to do it like EM does it. Create a new table with the correct datatypes, then reinsert the data, drop the...
October 6, 2005 at 11:43 am
Why not just run the alter table command on all the columns at the same time (just throwing ideas, I never had to do this)?
October 6, 2005 at 11:36 am
How do you reinsert it???
Why can't you keep it in place?
October 6, 2005 at 11:26 am
I just don't know how to fix this one... I'll keep listening in case something comes up.
October 6, 2005 at 11:25 am
The real question is : Has it been deleted or not created in the first place. The parent of the relationship must exists before any child can be added.
October 6, 2005 at 11:24 am
Is it a straight select of the column or there's some manipulation of it?
October 6, 2005 at 11:21 am
Seriously :
Select left(col1, 3) as col1,... into temp_table
copy the script from em, use the sp I sent you to make the insert statements. I care about my job...
October 6, 2005 at 10:12 am
CREATE UNIQUE NONCLUSTERED INDEX IX_Name ON dbo.TableName (col1, col2, col3, col4)
October 6, 2005 at 10:09 am
I run it under local too here. I don't know what else could be causing this.
October 6, 2005 at 10:07 am
What's the error message you are getting?
October 6, 2005 at 10:02 am
We need the DDL, sample date and sample results to answer this.
October 6, 2005 at 10:02 am
I tried that and it works for me.
What does this return?
Select DATABASEPROPERTY('Pubs', 'IsFulltextEnabled')
October 6, 2005 at 10:00 am
And please post sample data too along with the required results.
October 6, 2005 at 9:52 am
The idea is to make sure that each selects have the same datatype/length in the union... This is most likely where the problemis coming from.
October 6, 2005 at 9:44 am
Viewing 15 posts - 12,661 through 12,675 (of 18,923 total)