Forum Replies Created

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

  • RE: Viewing transaction logs to find missing data....

    have a look at a product called LOG P.I.

    this can disect logs - but a better method is to create some triggers on your tables that audit deletes into a...

  • RE: Copying/Upgrading for testing only

    no problem at all.

    you although only restore your user databases - the master database controls all sorts of info about your server and a SQL2000 and SQL7 master databases...

  • RE: Oracle LONG to SQL TEXT - Help?

    this data is stored in pages of data in the SQL data file.

    max size for data is 2GB and can be accessed as if it were a normal varchar/nvarchar field....

  • RE: Copying/Upgrading for testing only

    why not just script out the objects by right clicking on the database and clicking on generate scripts.

    you can then select all objects (including users) and your database is scripted...

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

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