Viewing 15 posts - 196 through 210 (of 433 total)
Sagesh,
There is no MIDDLE JOIN. As MIDDLE is not a keyword or predicate and there is no alias already specified for tblCustomers, MIDDLE is taken as the alias.
Your queries do...
December 13, 2007 at 4:32 am
If I remember correctly the IMEX setting should be 1(one).
December 13, 2007 at 4:25 am
I've set up and ran a test on my dev machine here. When I've changed drive letters in the stored procedure, the correct value has been output to the global...
December 5, 2007 at 7:57 am
Is the K drive actually a mapped drive to a disk on another server? If so this won't show up on xp_fixeddrives.
December 5, 2007 at 7:07 am
How did you do this for the K drive? Did you recreate the procedure with a 'K' in the WHERE clause instead of a 'D'? Or something different?
You might also...
December 5, 2007 at 5:44 am
Bruce,
Congratulations on your retirement; something tells me this Christmas will be more relaxed than any you've ever had before!
Although it does sound as if you're going to busier, with...
December 5, 2007 at 2:23 am
Sometimes DTS can be a right pain in the a$$. :hehe:
What you can do to work around this is create the DiskSpace_size procedure with all of the lines involving the...
December 5, 2007 at 2:15 am
Loner,
I would be quite happy to look over your resume for you. I have completed a number of resumes for my friends (and friends of....) and family and have had...
November 29, 2007 at 2:13 am
NoYoBidnez, my apologies for the "book" suggestion in that the written word has always been my primary source of information; I was brought up with the "if you don't know...
October 12, 2007 at 8:55 am
nunYoBidnez, offering advice that has been asked for is not "fixing"; if it were then consultants would put engineers out of a job?!? 😀
Advice is neither leading nor managing, it's...
October 12, 2007 at 8:07 am
Rudy, harsh words I think; you're opinion is important but may be misconstrued as not constructive. Communities are supposed to be built not destroyed; I think Loner's post are somewhat...
October 12, 2007 at 5:30 am
Apologies, I should preview before posting... The REPLACE statement didn't appear correctly and should have been:
SELECT REPLACE(@xml, '<root>', '<root timestamp="' + CONVERT(VARCHAR(11), GETDATE(), 113) + '">')
October 4, 2007 at 2:22 am
Hi,
It's a bit crude and not very pretty but it does the job!
DECLARE @xml VARCHAR(4000)
SELECT @xml = (SELECT name as '@name', xtype as 'data/@field1'
FROM sysobjects
FOR XML PATH('object'), ROOT('root'))
SELECT REPLACE(@xml, '...
October 3, 2007 at 10:15 am
Hi,
Have you got an example of the xml you're using to populate the table? :hehe:
October 1, 2007 at 2:38 am
Viewing 15 posts - 196 through 210 (of 433 total)