Forum Replies Created

Viewing 15 posts - 1,861 through 1,875 (of 1,995 total)

  • RE: Inserting bold text in emails

    in @subject ???

    i'm not sure about anyone else, but i've never seen an email client that has formatting in the subject header - only in the body text.

  • RE: Way forward??..

    if you are thinking about this then you should realy look at Citrix Metaframes as well. you can run your application as a seamless published app. (or on a citrix...

  • RE: Database and Log backup

    i've just re-read some of the posts - you say that on some days it is the correct size ?

    are you doing any overnight batch processing - a reindex...

  • RE: Database and Log backup

    here's something else to try -

    use DBCC cleantable on all of your tables to see if there is any space to free up (after your migration from sybase)

    this...

  • RE: SQL Query Analyzer Results Different Than Clients

    try casting as a char(8) and then passing as a string to vb

    or in vb use formating to add back the trailing zeros

    it's for the same reason that Query analyser...

  • RE: Help using TOP n

    this works using the top method

    i have used a query to pick the top column from each table in the database - replace with your own table names and foreign...

  • RE: Help using TOP n

    select sysobjects.name,max(syscolumns.name) from sysobjects,syscolumns where sysobjects.id=syscolumns.id group by sysobjects.name

    this finds the max value, not the TOP value. might be applicable to you though

  • RE: Updating Table with values from another table ?

    no problem -

    although looking at this in retrospect i think we could have done a lot better.

    at least it will work though!!

  • RE: Updating Table with values from another table ?

    oops just spotted your mistake

    update VT_MailInfo set Inf_EmployeeNo=(select Pers_EmployeeNo from VT_PersonelData where Pers_FirstName=@FirstName and Pers_LastName=@LastName and Inf_DupMail=1) WHERE ......

  • RE: Default image in a table at creation time

    hey i'm not that old!!

    but i'm findig these QWERTY keyboard things a bit awkward compared to puch cards and kimball tags

  • RE: Updating Table with values from another table ?

    what i meant was that you are running the update against ALL of employees without checking to see if they have the DUP flag set -

    your cursor picks up...

  • RE: Default image in a table at creation time

    it covers most of the things in the BPA, and the baseline security analyser, but also a few other things all in one package.

    with the manually written recommendations it also...

  • RE: Windows 2003 server administrator password forgot

    i can't see how, perhaps it may allow you to change it. depends on how your services are set up

    if they are set up to run under local admin or...

  • RE: Windows 2003 server administrator password forgot

    there is little linux utility disk that you can download from the internet.

    boot from the disk and it will discover your local admin passwords and accounts from windows machines....

    heh...

  • RE: Updating Table with values from another table ?

    update VT_MailInfo set Inf_EmployeeNo=(select Pers_EmployeeNo from VT_PersonelData where Pers_FirstName= @FirstName and Pers_LastName=@LastName and inf_DUP_MAIL=1<-----THIS BIT HERE ???)

Viewing 15 posts - 1,861 through 1,875 (of 1,995 total)