Viewing 15 posts - 1,426 through 1,440 (of 2,904 total)
I couldn't find one at USPS's website. But if you GOOGLE for "ZIP CODE" Database, there's quite a few choices.
-SQLBill
December 13, 2005 at 4:45 pm
I'm not positive, but I believe you can get one from the US Postal Service.
-SQLBill
December 13, 2005 at 4:42 pm
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
December 13, 2005 at 4:41 pm
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...
December 13, 2005 at 4:38 pm
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...
December 13, 2005 at 4:34 pm
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...
December 13, 2005 at 4:33 pm
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...
December 12, 2005 at 12:32 pm
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...
December 12, 2005 at 12:22 pm
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...
December 12, 2005 at 12:07 pm
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...
December 8, 2005 at 1:33 pm
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...
December 7, 2005 at 2:01 pm
BOL is the Books on Line. The SQL Server Help files.
-SQLBill
December 7, 2005 at 1:54 pm
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
December 5, 2005 at 1:39 pm
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)?...
December 5, 2005 at 1:36 pm
Why don't you just run sp_spaceused without the updateusage part?
-SQLBill
December 5, 2005 at 1:31 pm
Viewing 15 posts - 1,426 through 1,440 (of 2,904 total)