Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 2,904 total)

  • RE: Install SP fails

    Is the server using Mixed Mode authentication or Windows Only? If it's set for Windows Only, then the SA login is disabled.

    -SQLBill

  • RE: SmallDateTime

    Also, the SMALLDATETIME and DATETIME data types DO NOT store the date in any 'normal' format.

    This is from the BOL:

    Values with the datetime data type are stored internally...

  • RE: Event 7022 - SQL Agent hung on starting

    Look at dependancies......did something get changed where SQLServerAgent is dependant upon Outlook services starting first?

    Can you try setting Outlook's services to be dependant upon SQLServerAgent service (I think that will...

  • RE: Backup plan goes wrong

    Did you right click on the job and select view job history? Then did you click on show job steps and find the step that failed?

    That job has several...

  • RE: Backup plan goes wrong

    What was step 1? What was step 2?

    There could be lots of reasons for this to happen, we just don't have enough information from you.

    In Enterprise Manager, right click on...

  • RE: OSQL Question

    OSQL is via the command line. I suggest looking it up in the BOL and you will find the syntax and all the commands there.

    BOL=Books OnLine=Microsoft SQL Server's HELP

    Installed...

  • RE: trying to mod this script... need some help.

    Who says it's for one row only? Have you tried it?

    This:

    UPDATE mytable SET mycolumn=STUFF(STUFF(STUFF(LEFT(mycolumn,23),11,1 ,' '),14,1,':'),17,1,':')

    should update the whole column.

    -SQLBill

  • RE: Suggestion for Query Tool

    Ah...like I said, MORE information. You need a query tool that will work with more than one type of database, specifically SQL Server and DB2.

    I don't know of any and...

  • RE: How stop executing batches in Query Analyzer ??

    How about:

    IF DB_NAME() 'Master'

    That way, instead of testing if the database IS Master, you are testing to see if it is NOT Master.

    -SQLBill

  • RE: How stop executing batches in Query Analyzer ??

    You can check for the DB_ID (refer to the BOL) and that might help.

    BUT why don't you just write your code to include the proper database? There are two...

  • RE: System database maintenance - best practices

    How much data can you afford to lose? If you can afford to lose several hours or days worth of data - then don't do transaction log backups.

    Only transaction log...

  • RE: Suggestion for Query Tool

    First, you need to supply some more information.

    How is this query tool going to be used? Will it be used by the DBA, developers, or users?

    Why not Query Analyzer?

    What does...

  • RE: Tansaction Logs

    Yes and no. You really need a third-party software such as Lumigent's LogExplorer (and there are others). But I believe most of them need to be installed before you need...

  • RE: backup of Database/tables

    No. You have to restore the whole database. You can restore the database to another instance or as another name and then import the table into the original database.

    -SQLBill

  • RE: import datetime conversion problem.

    TIMESTAMP has nothing to do with the date and/or time. It is a 'versioning' value used by Microsoft SQL Server.

    SQL Server has no idea how to interpret this value: 2006-05-11-16.29.43.882000

    The...

Viewing 15 posts - 1,021 through 1,035 (of 2,904 total)