AzureFeeds - All your Azure feeds in one place.

Monday, June 14, 2010

Stanford Project Creates CloudLab with Windows Azure

by WindowsAzure via Windows Azure on 6/14/2010 9:10:11 PM

Recently, the Microsoft Research team blogged about a cool project called CloudLab, which was developed by a team of students enrolled in CS210, Project-Based Computer Science Innovation & Development at Stanford University. During the course, Microsoft External Research challenged students to make satellite data more accessible to environmental scientists, with the Lawrence Berkeley National Laboratory serving as the team's customers.  The result was CloudLab, which utilizes the Window ...

[ read more ]

Condition Database Drop on SQL Azure

by Wayne Walter Berry via SQL Azure Team Blog on 6/14/2010 5:39:52 PM

SQL Azure’s Transact-SQL syntax requires the DROP DATABASE statement be the only statement executed in the batch. For more information, see the MSDN documentation. So how do you execute a conditional drop? Maybe you only want to drop the database when the database exists. Here is how: DECLARE @DBName SYSNAME, @Command NVARCHAR(MAX) SELECT @DBName = 'db1' IF EXISTS (SELECT * FROM sys.databases WHERE name=@DBName) BEGIN SELECT @Command = 'DROP DATABASE [' + @DBName + '];' EXEC @Command EN ...

[ read more ]

Legal Note

The content of the postings is owned by the respective author. AzureFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on AzureFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.

Advertise with us