Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
R
Constraint Violating Yak Guru
328 Posts |
Posted - 2012-08-17 : 04:58:49
|
I've been considering moving my database to the cloud, but yesterday read some points that I think make it unsuitable. Could anyone please cast an expert eye on these two questions...?1) Apparently SQL Azure does not support CLR. Our database has a single CLR UDF for splitting CSV strings into a table variable. This gives us a huge performance boost when used over a native SQL function. I assume therefore that this wouldn't work for us in Azure? What is the reason that CLR is not supported?2) I also read that Backup/Restore is not supported. Every week we use Backup on our live server to bring a copy of the database down to our development machine, and also to archive it. Is there a simple equivalent way to take a database copy in Azure without creating a fresh live database in the process?Many thanks. |
|
R
Constraint Violating Yak Guru
328 Posts |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-08-24 : 01:09:28
|
quote: Originally posted by R I've been considering moving my database to the cloud, but yesterday read some points that I think make it unsuitable. Could anyone please cast an expert eye on these two questions...?1) Apparently SQL Azure does not support CLR. Our database has a single CLR UDF for splitting CSV strings into a table variable. This gives us a huge performance boost when used over a native SQL function. I assume therefore that this wouldn't work for us in Azure? What is the reason that CLR is not supported?2) I also read that Backup/Restore is not supported. Every week we use Backup on our live server to bring a copy of the database down to our development machine, and also to archive it. Is there a simple equivalent way to take a database copy in Azure without creating a fresh live database in the process?Many thanks.
you've data sync agent available in sql azure for getting a copy to on premise server db. you can schedule it to happen periodically and it requires a hub server too in cloud------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
R
Constraint Violating Yak Guru
328 Posts |
Posted - 2012-08-24 : 02:20:26
|
Hi visakh16Does data sync agent create a fully working online version? The problem is that we just need a Backup file to restore interally on machine that aren't available to the outside world.Thanks |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-08-24 : 10:29:42
|
quote: Originally posted by R Hi visakh16Does data sync agent create a fully working online version? The problem is that we just need a Backup file to restore interally on machine that aren't available to the outside world.Thanks
it does but not like actual backup restore. you need to identify objects to be included in it and based on that it will generate a working set of tables.its more like replication------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|