Forum Replies Created

Viewing 15 posts - 676 through 690 (of 2,487 total)

  • RE: what characters not allowed in backup names?

    You can check the list here http://www.file-ext.com/character.html

    Whether you'd use them or not is another matter. I'd stick with the underscore character split up the parts,

    EG: master_db_20051005_1750.bak

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Why SQL server does not accept '''' (single quote) as an entry

    If you have to have the single quote stored in the database then you need to put it in twice.

    EG: don't becomes don''t

    You could also play around with SET QUOTED_IDENTIFIER,...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Why does this not work?

    As the error is "Error converting data type varchar to datetime" and I can't see anywhere in your code where you're mixing varchar and datetime vars, I'd have to say...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Dynamic SQL is bad?

    The two main points against dynamic SQL are,

    1. Performance - this procedure would be going through constant recompiles while the Query Optimizer works out which tables it's dealing with and...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Sql Server EXTREMELY Slow to start

    What account do you use for the services? If you're using a domain account and you have networking issues, the SQL startup can be impeded while the security credentials are...

    --------------------
    Colt 45 - the original point and click interface

  • RE: MSX - Multiserver Jobs from Master to Target

    The purpose of having the MSX/TSX server setup is to avoid the "on-the-fly" changes that can introduce errors becuase they're not fully tested. It also provides a single view for...

    --------------------
    Colt 45 - the original point and click interface

  • RE: sql server Questions

    Well he got you there susi, or should it be sushi

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: sql server Questions

    If you were a bit more specific on what you're looking for I could probably provide more specific links for you.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Saving a package from a Structured Storage File over an existing package causes error due to different Package ID

    Maintain the versions in something like Sourcesafe, not in SQL Server. Although the package designer does create different versions there is not facility to rollback changes, or as you've found...

    --------------------
    Colt 45 - the original point and click interface

  • RE: sql server Questions

    pvv praveen kumar, sorry if you see it as a funny thing, but many people say that SQLServerCentral.com is the best resource...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Password Matching

    Ok I'm confused ... I thought I included an example ... did you see that part highlighted in blue?

    Maybe if you provide an example of the strings you're trying to...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Password Matching

    Hmmm ... I thought it was very clear given your original post ...

    What part wasn't clear?

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Password Matching

    Best method is to use a case sensitive collation

    SELECT * FROM ::fn_helpcollations()

    Will show you the different collations that are available.

    Otherwise you'd be stuck with using something like the ASCII...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Hard time connecting

    Do you have your own domain setup at home, or are you just in a workgroup?

    If you're using a workgroup then make sure you haven't specified "Windows Only" for the...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Confusion w/Attach DataBase mdf errors

    Take a look at RESTORE VERIFYONLY in Books Online.

     

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 676 through 690 (of 2,487 total)