Viewing 15 posts - 5,536 through 5,550 (of 6,486 total)
Nice one Jeff - I can see it's been a little while in the making (given all of the handy graphics...)
You might care to edit your first post in this...
December 6, 2007 at 8:06 am
WILLIAM MITCHELL (12/6/2007)
You can also use WHERE Field = True but in any event, beware of nulls - if your checkbox is tri-state then your results may be incorrect.
Don't forget...
December 6, 2007 at 7:48 am
Try doing the attach from within SSMS (or in your case SSMS Express). Once you add the main MDF, but before you click the attach button, you will get...
December 6, 2007 at 7:42 am
Same version as yours, and the tables open up...
I'm thinking it's file specific... maybe something in the files it just doesn't like... ugh.
December 6, 2007 at 7:37 am
Jeff Moden (12/5/2007)
I've run into this problem with "views...
December 6, 2007 at 7:32 am
I did it several ways just to make sure it IS a v.97 file:
- dusted off some of my old FLOPPIES (yeah - I had to remember what they...
December 6, 2007 at 5:59 am
ISNULL(a,b) is a function. It check to see if A is null: if it isn't - it returns A, otherwise B. I was just using it as an...
December 5, 2007 at 4:21 pm
I made an assumption as to what kind of data @franchise was. if it's supposed to be some kind of string, put quotes around the -999 (both instances), which...
December 5, 2007 at 3:58 pm
Steve Jones - Editor (12/5/2007)
December 5, 2007 at 3:53 pm
I'm sure I know the answer to this...but there's no chance of maintaining a "most current" boolean flag on the security prices, correct (after all - you don't seem to...
December 5, 2007 at 3:49 pm
I also just came across this new little feature in 2005, which allows the file to grow WITHOUT zeroing everything out. It's got some security concerns, though, so you...
December 5, 2007 at 3:14 pm
Oh it probably won't take a LOT of time, but it should be really noticeable for a while (20-40 minutes depending on your data subsystem from my guesstimates, longer...
December 5, 2007 at 3:10 pm
No - not like that.
CASE is used to return single scalar values, but not to add clauses to a SQL statement (or to add to a clause).
You need dynamic SQL...
December 5, 2007 at 1:58 pm
It will force the DB to grow right then and there to 250GB... You're going to want to do this during some down time...
December 5, 2007 at 1:44 pm
The merge joins seem to be killing you. They're occurring because of the "many to many" merge joins, which are causing multiple (apparently very large) worktables be created in...
December 5, 2007 at 1:36 pm
Viewing 15 posts - 5,536 through 5,550 (of 6,486 total)