Viewing 15 posts - 9,571 through 9,585 (of 18,926 total)
You can always add an identity column and use that as uniqueidentifier to delete the tuples, then drop the column.
Create perm table (exact match)
insert ValidData into newtable
drop old table
rename new table
rebuild...
July 29, 2007 at 10:38 am
Also there are easier ways to clean out data.
If you want, we can check for another solution, but we need the table definition (with keys) and what determines the row...
July 29, 2007 at 9:56 am
That's certainly one reason.
I've never actually tried this but I think it can work. Thanks for letting me know.
You can do this to correct the problem :
(
dbo.flightinfo.end_date = b.end_date
OR
dbo.flightinfo.end_date IS...
July 29, 2007 at 9:54 am
Here's a suggestion : start the profiler, then start doing your thing with EM.
Once you're done. go back to profiler and see how it's done with scripts.
July 29, 2007 at 6:38 am
In the mean time you can check out this fact
where null = null doesn't work
you need something like where Col1 IS NULL AND Col2 IS NULL
July 29, 2007 at 6:20 am
I need some sample data and the required output to be sure to understand what you want.
July 29, 2007 at 6:19 am
Just a matter of logic.
Of course, if you get many correct answers on questions like this one, you might want to go see a specialist
July 29, 2007 at 5:55 am
The only use I could see for that is to keep some sort of history. This order went out before that order, then that order...
But that would be usefull only...
July 28, 2007 at 4:04 pm
I've started my business. I'll be needing help in the coming months. I'll drop you a line when that happens
.
July 28, 2007 at 4:00 pm
I can get this one right too :
She kills her sister because she expects that man to be at her funeral too!
July 28, 2007 at 12:43 pm
One other thing to consider about the index scan...
I'd much rather have the server scan 1M rows of 50 Bytes each VS scanning 1M row or 2 K each. Scan...
July 28, 2007 at 12:39 pm
My opinion : XML = Bloatware. Why parse 200 MB when I can parse 2 MB for the same data? I understand the point when working with heterogenous systems, or...
July 28, 2007 at 12:34 pm
Cool, we do we start working together (in our own business, much more enjoyable than working for someone!!).
July 28, 2007 at 12:29 pm
Ya, thanks for pointing that function out... I don't use it often enough!
July 28, 2007 at 12:28 pm
Viewing 15 posts - 9,571 through 9,585 (of 18,926 total)