Viewing 15 posts - 7,621 through 7,635 (of 7,635 total)
Although there are a huge number of possible reasons for this behavior, in my experience it is almost always due to one of two probable influences:
1) Irregularities in the optimizer/statistics...
March 8, 2008 at 4:10 pm
I did give a reply in another forum similar to your example, but that was for the general case of selective test criteria.
For the specific case of collapsing null values,...
March 8, 2008 at 3:13 pm
Well you could use [font="Courier New"]xp_CmdShell[/font] to run [font="Courier New"]osql[/font] that could run your script, though frankly I wouldn't recommend it.
You really ought to be able to use a combination...
March 8, 2008 at 2:52 pm
Carolyn Stern (3/7/2008)
March 8, 2008 at 2:21 pm
ALZDBA (2/20/2008)
Any other suggestions regarding what else we can do to bring our server down ?
Oh my, yes. Unrestricted ad-hoc query facility for all app users. :w00t:
It delivers in...
March 8, 2008 at 12:44 pm
It is indeed a sad day.
I started playing D&D in 1978, was a charter member of the RPGA and actually met Gary a couple of times.
He will be missed.
March 7, 2008 at 5:11 pm
Got me. "sys.default_constraints" is a standard Catalog View in SQL Server 2005.
March 7, 2008 at 4:52 pm
You should be able to fix this with CAST() or CONVERT().
March 7, 2008 at 4:49 pm
Adam Haines (3/7/2008)
You can name the constraints. You dont have to let them auto generate.
Good point. I had forgotten that.
March 7, 2008 at 4:39 pm
tim del bosco (3/7/2008)
AA.CastValueAsType=...
March 7, 2008 at 4:33 pm
whiz.laksh (3/7/2008)
i specify that the default date value in the column is getdate()but the system assigns it a name like "DF__SecurityM__DsegL__08C105B8"
that's why i cant find the name of it.
Try...
March 7, 2008 at 3:51 pm
UPDATE tax_group_hdr
Set tax_group_id = tax_group_description
Where tax_group_id LIKE 'VA%'
March 7, 2008 at 2:32 pm
kunal (2/25/2008)
CREATE FUNCTION [dbo].[GetListOptionDetails]
(
@fListOptionID int
)
RETURNS nvarchar(255)
AS
BEGIN
RETURN (SELECT Name from ListOption where Id = @fListOptionID)
END...
March 7, 2008 at 2:24 pm
View definitions support Case functions just fine.
The query designer may not, but then just don't use the query designer. (I would never use it anyway).
March 7, 2008 at 12:00 pm
Viewing 15 posts - 7,621 through 7,635 (of 7,635 total)