can't use profiles with folder import/export tool
Moderator: SourceGear
can't use profiles with folder import/export tool
i have successfully set up profiles for the Vault Client and used them to log on. but the UI for profiles in the Folder Import/Export tool is disabled. am i supposed to be able to use profiles with the Folder Import/Export tool?
Re: can't use profiles with folder import/export tool
That currently isn't an option. I can take a feature request if you would like.
Generally, Folder Export/Import isn't something one would use on a daily basis. If you are using yours on a daily basis, then I'd be interested in learning how you work and why you chose that route.
Generally, Folder Export/Import isn't something one would use on a daily basis. If you are using yours on a daily basis, then I'd be interested in learning how you work and why you chose that route.
Beth Kieler
SourceGear Technical Support
SourceGear Technical Support
Re: can't use profiles with folder import/export tool
i agree it isn't an important feature for the import/export. but it looked like something was broken because i was used to the profile UI being enabled. i recommended hiding these profile controls in the import/export dialog, or adding a piece of text "can't use profiles here", or adding a similar message to the help.
i am using import/export as my backup plan. i export to a file in my microsoft live mesh so it gets backed up to a server. there is no simple way to back up to a different media - that is what is missing. if i use the "backup" button it puts the backup in some hidden directory. and if i remove it from that hidden directory and manually copy it to a server, then i can't use the sourcegear "restore" function, which assumes the file is in a particular location. what is the best way to back up my data to a server or to a specific folder on my hard disk?
i suppose most people put vault on a server which probably gets backed up and has a sql management plan. so backup and restore isn't a big deal. i have an unusual configuration - just a single user on a laptop with sql express, so backing up is more of a hassle.
i am using import/export as my backup plan. i export to a file in my microsoft live mesh so it gets backed up to a server. there is no simple way to back up to a different media - that is what is missing. if i use the "backup" button it puts the backup in some hidden directory. and if i remove it from that hidden directory and manually copy it to a server, then i can't use the sourcegear "restore" function, which assumes the file is in a particular location. what is the best way to back up my data to a server or to a specific folder on my hard disk?
i suppose most people put vault on a server which probably gets backed up and has a sql management plan. so backup and restore isn't a big deal. i have an unusual configuration - just a single user on a laptop with sql express, so backing up is more of a hassle.
Re: can't use profiles with folder import/export tool
The Vault backup is limited, so for more options, using your SQL Server Management Studio Express or just a script will be much nicer. A very basic backup query that you can schedule to run is something like:
You can certainly continue with the Export/Import as you are, but you might find that if you need to recover, restoring a SQL database will probably be faster. I think a SQL backup might be faster also than the Export.
If you prefer the Export/Import, you might consider just having a SQL Backup once in a while still.
There's some freebie tools that you can find on the Internet that backup SQL databases if you're not comfortable with the SQL tools. I haven't tried them myself, but I know they're out there.
Code: Select all
BACKUP DATABASE sgmaster
TO DISK = 'E:\Backups\sgmaster.BAK'
BACKUP DATABASE sgvault
TO DISK = 'E:\Backups\sgvault.BAK'
If you prefer the Export/Import, you might consider just having a SQL Backup once in a while still.
There's some freebie tools that you can find on the Internet that backup SQL databases if you're not comfortable with the SQL tools. I haven't tried them myself, but I know they're out there.
Beth Kieler
SourceGear Technical Support
SourceGear Technical Support