Viewing 10 posts - 121 through 130 (of 130 total)
Thanks for your responses. It worked well. I appreciate the security concerns. If/when we have to work this way with a vendor, how can we check the files for viruses/worms? Thanks...
September 19, 2005 at 1:36 pm
Not exactly, we copied the mdf&ldf files (used detach/attach), sent them to our vendor, they updated them and sent them back. So I just detached the database, renamed the old...
September 19, 2005 at 1:04 pm
I am going to use copy of the backup. Thanks to all for the help.
September 16, 2005 at 7:34 am
I was able to get the results I needed by using
format(date_of_birth, "YYYYMMDDhhmmss")
Thanks for the help!
August 22, 2005 at 3:23 pm
I ran 3 separate steps:
update tablename set phonenumber = replace(phonenumber, '(','')
update tablename set phonenumber = replace(phonenumber, ')','')
update tablename set phonenumber = replace(phonenumber, '-','')
Thanks again for your help!
August 9, 2005 at 10:53 am
Thanks it worked with one less replace:
update tablename set phonenumber = replace(phonenumber, '(', ''), ')', '')
August 9, 2005 at 7:48 am
How would it go in the backup statement then:
DECLARE @FileSaveDate varchar(16)
-- Get and format the date and time to be used in this backup's file name. Note that
...
July 22, 2005 at 1:52 pm
I tried adding the name of the backup file and that works:
BACKUP DATABASE CE10 to disk = 'c:\mssql7\BACKUP\ce10_db_0722051200PM'
WITH NOINIT
But how can I get the date and time to be...
July 22, 2005 at 10:36 am
Thanks, I was afraid of that. Unfortunatey our tape backup didn't work the last few days.
June 28, 2005 at 8:42 am
There is software to be installed on the pocket pc's, but my understanding is SQL Server CE Server Tools will install on the server.
May 3, 2005 at 10:05 am
Viewing 10 posts - 121 through 130 (of 130 total)