Viewing 15 posts - 241 through 255 (of 299 total)
I was doing something similar yesterday
UnzipCommand = "%comspec% /c Bin\7za.exe e -y " & File2
OBJShell.Run(UnzipCommand) ,1,TRUE
The /c after comspec tell it...
January 27, 2006 at 5:00 am
You don't say what RAID level you are running at. Generally I try to put my data on a RAID 5 and put the log on a RAID 1 (Mirrored)...
January 27, 2006 at 4:50 am
If you want to allow NULLS in a table then you need to alter the table definition to allow this. If you want to ensure the SELECT is not outputing...
January 26, 2006 at 9:48 am
Collation can be a pain. It's definateley better to chose the right collation at install time because changing it later is painfull. The default collation for a database can be...
January 26, 2006 at 4:23 am
I think the FTP task only does get, it does not do put. Thereare 3rd party FTP tasks available that support both..
Alternatively yo can use an Activex script task and...
January 26, 2006 at 4:02 am
I can think of a couple of things to check.
1. Check the file is not currently open by you or anyone else.
2. Does the Account SQL is runing under have...
January 25, 2006 at 3:27 am
Yeah - pity it's not there on the mouse menu.
You can ALTER DATABSE <DBname> SET OFFLINE
January 25, 2006 at 3:03 am
BOL recomends you use ALTER DATABASE instead of sp_dboption (supported for backward compatability).
ALTER DATABASE <DB Name> SET SINGLE_USER
I don't think you have to be in master?
January 25, 2006 at 3:00 am
I can ping that IP so it's probably coming from outside your network. On your firewall you should be blocking port 1433.
January 24, 2006 at 7:02 am
Generally when I have seen this done in repro scripts and the like you just code some INSERT statements with your fixed valuess. If you have lots of data you...
January 24, 2006 at 5:43 am
To change collation on existing tables you neeed to run ALTER TABLE statements like GilaMonster wrote.
You can generate these up from sysobjects and syscolumns.
Alternativeley you can alter collation on the...
January 24, 2006 at 3:06 am
I have asked this before and never found an answer that satisfies. The best I got was from an MVP who said that essentially they are abstract and can only...
January 24, 2006 at 2:46 am
My gut feeling is to re-start SQL but that seems a bit drastic.
Anyone with a less intrusive suggestion?
- Just saw your post above - let the restore complete if...
January 20, 2006 at 10:12 am
If replication cannot be removed try taking the database offline and then try dropping it.
January 20, 2006 at 9:45 am
Viewing 15 posts - 241 through 255 (of 299 total)