Viewing 15 posts - 2,281 through 2,295 (of 2,469 total)
Do your ALLOC_PROPOSED & MPS_PROPOSED have any clustered indexes at all ? I was wondering why you didn't make your primary keys clustered ?
Also, if the # of rows...
May 22, 2005 at 5:58 pm
Have you tried running the index tuning wizard against this ?!
May 22, 2005 at 10:56 am
sqlindia - I don't think you've addressed ron's question...which of the 2 or many roles would you want displayed ?
May 22, 2005 at 10:48 am
Is the registrations table the only one throwing up this error ? Have you queried the other tables with varchar columns with no problem ?
May 22, 2005 at 9:04 am
Yes you can - if you right click on the table and click on import - the wizard comes up & you can select foxpro as your data source from...
May 20, 2005 at 3:05 pm
Read up on bulk insert on BOL....
BULK INSERT [ [ 'database_name'.] [ 'owner' ].] { 'table_name' FROM 'data_file' }
[ WITH
...
May 20, 2005 at 3:01 pm
Remi - here's an interesting link considering you just said that you wanted to be called Neo/Luke...
May 20, 2005 at 2:29 pm
Enjoy the break!
Long live the Queen.....(or at least holidays in her name!!!)
May 20, 2005 at 2:26 pm
Remi - my response was only to correct the update that I originally posted - not a solution to Alex's problem (which in any case you have resolved in your...
May 20, 2005 at 1:52 pm
Remi - apologies for the delay (that darn thing called work keeps interrupting) - yes, you're right (surprise! surprise!) - that does return all the nulls...
I was confusing it with...
May 20, 2005 at 1:33 pm
Ananda - pl. follow this link for comma separated list...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=174305#bm174355
May 20, 2005 at 7:10 am
OOPS - Like Ron K. said yesterday - should learn to type faster!
May 20, 2005 at 7:04 am
Seems to me you should add another clause to this:
UPDATE Ticketing SET TicketPriceExVat =
(SELECT TicketPriceExVat FROM TempTicketing
WHERE TempTicketing.EventID = Ticketing .EventID
AND TicketPriceExVat IS NOT NULL)
May 20, 2005 at 7:03 am
Here's something to get you started - these will give you a list of computed columns from all the user tables:
SELECT syscolumns.name FROM syscolumns
JOIN sysobjects ON sysobjects.id = syscolumns.id
AND...
May 20, 2005 at 6:55 am
Viewing 15 posts - 2,281 through 2,295 (of 2,469 total)