Forum Replies Created

Viewing 15 posts - 196 through 210 (of 433 total)

  • RE: Join Predicate

    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...

  • RE: Import Excel to MS Access Problem

    If I remember correctly the IMEX setting should be 1(one).

  • RE: Finding Database Free space using DTS

    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...

  • RE: Finding Database Free space using DTS

    Is the K drive actually a mapped drive to a disk on another server? If so this won't show up on xp_fixeddrives.

  • RE: Finding Database Free space using DTS

    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...

  • RE: Retirement

    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...

  • RE: Finding Database Free space using DTS

    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...

  • RE: Contract job

    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...

  • RE: I just want to do my job !

    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...

  • RE: I just want to do my job !

    That guy's going to be SO upset!

  • RE: I just want to do my job !

    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...

  • RE: I just want to do my job !

    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...

  • RE: adding an xml root attribute

    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) + '">')

  • RE: adding an xml root attribute

    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, '...

  • RE: OpenXML SQL 2000

    Hi,

    Have you got an example of the xml you're using to populate the table? :hehe:

Viewing 15 posts - 196 through 210 (of 433 total)