Viewing 15 posts - 5,071 through 5,085 (of 5,678 total)
biju.pad (11/5/2010)
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 5, 2010 at 5:40 pm
Lynn Pettis (11/5/2010)
tosscrosby (11/5/2010)
ALZDBA (11/5/2010)
Jack Corbett (11/5/2010)
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 5, 2010 at 3:13 pm
Much luck, Roy. May your rain be soft and pretty, instead of sideways and flipping trees. 😀
On a lighter note, I made into the top 5 posters for...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 5, 2010 at 2:20 pm
Hey Lutz.
Yeah, found the 'Monday' equation, which is how I think I went flying up the wrong DATEFIRST when I did a little research behind it on the web. ...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 5, 2010 at 11:50 am
Jeff Moden (11/4/2010)
Craig Farrell (11/3/2010)
It manipulates DATEFIRST and you might botch something up on your real servers if you run it.
Setting DATEFIRST in a query only affects the session, not...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 4, 2010 at 9:34 pm
Perhaps something like this?
select
o.name,
i.rowcnt
from
sysobjects o
JOINsysindexes I
ONo.id = i.id
where
o.type = 'u'
and i.indid IN (0,1)
order by
o.name
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 4, 2010 at 3:50 pm
Greg Edwards-268690 (11/4/2010)
CirquedeSQLeil (11/4/2010)
GilaMonster (11/4/2010)
CirquedeSQLeil (11/4/2010)
GilaMonster (11/4/2010)
Gianluca Sartori (11/4/2010)
Nothing to complain about today?Plenty, but I think most people are tired of hearing me whine about the Nightmare Project.
Nah - do...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 4, 2010 at 12:52 pm
Use a higher precision numeric/decimal then you're going to display as. For an example:
DECLARE @n1a NUMERIC (25, 8),
@n1b NUMERIC (25, 8),
@n1c NUMERIC (25, 8),
@n2 NUMERIC (20, 4),
@n3 MONEY,
@n4 NUMERIC...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 4, 2010 at 12:45 pm
SQL33 (11/4/2010)
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 4, 2010 at 12:33 pm
Michael Valentine Jones (11/4/2010)
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 4, 2010 at 12:32 pm
Michael Valentine Jones (11/3/2010)
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 3, 2010 at 10:56 pm
<------------- Okay, I earned one of these...
Michael Valentine Jones (11/3/2010)
When you have @@DATEFIRST =...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 3, 2010 at 10:44 pm
SQL-Tucker (11/3/2010)
At this point I either need to rethink my approach and handle the conversion on the...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 3, 2010 at 10:35 pm
SQL-Tucker (11/3/2010)
You Rock! Thank you!FORCE ORDER was exactly what was needed (still need to gauge performance impacts and such but the error is gone)
Hold up. Force Order is letting...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 3, 2010 at 7:43 pm
The optimizer doesn't promise it's going to do anything in a specific order, just the fastest it can figure out.
The WHERE clause is a good start, but the issue here...
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
November 3, 2010 at 6:22 pm
Viewing 15 posts - 5,071 through 5,085 (of 5,678 total)