Forum Replies Created

Viewing 15 posts - 1,426 through 1,440 (of 2,904 total)

  • RE: zip code database

    I couldn't find one at USPS's website. But if you GOOGLE for "ZIP CODE" Database, there's quite a few choices.

    -SQLBill

  • RE: zip code database

    I'm not positive, but I believe you can get one from the US Postal Service.

    -SQLBill

  • RE: How to make a DB a "black box"

    Depends on what you are really trying to do....you could always create a VIEW of your database with the VIEW having different column names to hide the actual names.

    -SQLBill

  • RE: NULLS not behaving as expected

    To backup what Steve says....

    NULL basically means "I don't know what this is".

    So, when you compare a NULL to 0....(WHERE NULL 0), SQL Server says 'I don't know if...

  • RE: Log File Improper growth

    One other thing, go to Enterprise Manager, expand until you see your database. Right click on your database, select Properties. Go to the Transaction Log tab. There will be a...

  • RE: Log File Improper growth

    1. What are you doing when it grows?

    -As dcpeterson says, index rebuilds will do this. Do you have a maintenance plan running?

    2. Are you doing backups (Full and...

  • RE: Backup Log with retaindays

    RETAIN DAYS and EXPIRE only work for tape backups or backups that are saved with dates for the file name. If you keep reusing the same backup file, RETAIN DAYS...

  • RE: Timestamp insert record problem....

    There may be a big problem. What do you want your timestamp column to do? What datatype is the timestamp column - is it TIMESTAMP or DATETIME?

    Timestamp datatype is...

  • RE: Authentication Problems

    How are logins being done?

    Is your SQL Server set to use Windows Authentication only or is it set for Mixed Mode?

    Is the user's login set for Windows Authentication...

  • RE: DBAs and System Administrators

    As Steve says, SysAdmins handle the OS and network (sometimes there is a different Network Admin) and the Database admins handle SQL Server.

    For example: I can assign someone a SQL...

  • RE: Two Databases - same name: Can do?

    Due to applications being used, I need the database name to remain the same. This way the only thing that needs to be changed is an ODBC connection to the...

  • RE: DataBase Restore

    BOL is the Books on Line. The SQL Server Help files.

    -SQLBill

  • RE: How do I restore a DB that wants 6X more space then it needs?

    Suggestion:

    Create a script that shrinks the files and then does the backup. Supply the script to your clients whenever you need them to send you backup files.

    -SQLBill

  • RE: DataBase Restore

    So you aren't doing the restore on the original system?

    Did you copy the tape backup to the same drive location as on the original server (to N'D:\SQL Data Files\RSMS\Backups)?...

  • RE: how to monitor the DB used and unallocated space?

    Why don't you just run sp_spaceused without the updateusage part?

    -SQLBill

Viewing 15 posts - 1,426 through 1,440 (of 2,904 total)