Viewing 15 posts - 1,921 through 1,935 (of 1,957 total)
Unless I missed it earlier in the thread, has anyone wondered why the text is "DW.DimClass"?
Is this data coming out of a Data Warehouse?
If so, would you not be...
December 30, 2009 at 5:06 pm
I am not an expert on XML Namespaces in SQL server, so I could be off the mark, but it seems like there is an issue with the nodes that...
December 22, 2009 at 6:31 pm
It would help if you provided information about what you have tried....
however this might steer you in the right direction:
;with xmlnamespaces(
DEFAULT 'http://www.lpsvcs.com/DataStream',
'http://www.lpsvcs.com/DataStream/DataDictionary/Document' as ns24
)
select @x.query('//ns24:Document')
This does not...
December 22, 2009 at 5:35 pm
Have you checked the Schema Changes History Report?
Have you considered writing a database trigger to log the procedure drops?
Something along the lines of....
CREATE TRIGGER log_procedure_drops ON DATABASE
FOR drop_procedure
AS
DECLARE @msg...
December 10, 2009 at 5:49 pm
@jeff 😀
(I have seen that format quite often in data interface files - as it avoids the issue of different locales/regions using different decimal seperators e.g. "." and...
December 3, 2009 at 6:05 pm
I've got to ask because I am always looking for the simple solution to things....
If trailing "0"s are allowed, why bother with all that?
Why not just (based on the column...
December 3, 2009 at 4:41 pm
Is your application using SQL Authentication while SQL Agent is using Windows Authentication?
November 26, 2009 at 6:10 pm
I like Jeff's solution, but just wanted to offer an alternative that requires no user input beyond the initial running of the script....(I like not having to think)
Firstly, here is...
November 26, 2009 at 5:54 pm
Reason: By including NULLS in your SELECTS, you are sort of adding extra NULL values to the sets Nb and Nc...
You can achieve the same by doing this:
SELECT Na.Number [Ball...
November 26, 2009 at 5:09 pm
romanoplescia (11/20/2009)... I wanted to flag these accounts up for daily review...
Hi, can I suggest that you do not use a trigger as there is no immediate need.
You said yourself...
November 26, 2009 at 4:37 pm
sorry - posted about the comma without seeing all the other posts - dunno whats wrong with this browser of mine...
July 17, 2009 at 4:42 pm
I agree about normalising.:)
However if you have to do it this way, you can:
Use Unpivot
Or
Use a where clause like:
WHERE 'CODING' IN (skill1,skill2,skill3 etc...)
I make no claims for performance or...
April 29, 2009 at 6:01 am
Paul White (4/28/2009)
@mister.magoo,I think the function you refer to was one I posted originally, and improved by Flo. Not that I'm territorial!
I do apologise - it's such a long...
April 28, 2009 at 9:07 am
Paul White (4/28/2009)
mister.magoo (4/28/2009)
EDIT: forget it - when I figure out how to post results I will try again!Ooo! You removed that just as I was quoting you!
Sorry!
The...
April 28, 2009 at 7:39 am
Viewing 15 posts - 1,921 through 1,935 (of 1,957 total)