9
votes
Advantages of MS SQL Server 2008 over MS SQL Server 2005?
Kevin Kline wrote a pretty good whitepaper summing up the top ten features in 2008 that make it worthwhile.
SQL 2008 Worth the Wait …
0
votes
In SQL Server 2008 how can I secure data in a way that it cannot be decrypted unless connected to a network?
You're right - what you want is a cryptographic provider, and you're right that there's none out there yet.
If you're going to the PASS Summit in November, talk to JC Cannon from Microsoft. …
0
votes
Cloud Hosting options for ASP.NET 3.5 and SQL Server 2008
Keep your eyes out for news at the PDC conference at the end of this month. Microsoft is announcing a slew of solutions. Search the web for Microsoft Red Dog and that'll give you a head start. …
1
vote
Moving SQL2005 app to SQL2008
Change your compatibility level on the database after moving it to the 2008 server. By default, it will still stay at the old compatibility level. This will let you use the new goodies in SQL 200 …
8
votes
Can I use SQL Server Management Studio 2005 for 2008 DB?
The other question you asked was about managing 2005 servers with SSMS 2008 - and yes, you can do that. SSMS 2008 can manage 2008, 2005, 2000. I actually recommend that everybody use the latest S …
1
vote
Is there a performance hit by added nonenforced foreign keys to a SQL Server 2008 database?
The answer can be different for different environments (data/logs on same drive, tempdb on same drive, lots of cache vs little, etc) so the best way to find this out is to benchmark. Create two id …
3
votes
Detailed error message for violation of Primary Key constraint in sql2008?
There's not a way of doing it that won't slow your process down, but here's one way that will make it easier. You can add an instead-of trigger on that table for inserts and updates. The trigger …
2
votes
The filestream of sql server 2008
The file name is that 00000016-00000079-0006 that you found - look for it in the directory where you configured the FileStream storage. Just do a select * from your filestream-enabled table, and yo …
4
votes
Disable messages in SQL2008 result set
No, there's not a way to disable all messages that get sent along with the result sets. Set nocount on/off doesn't have an effect on these types of messages.
…
3
votes
Best load balance configuration with Windows 2008 and SQL Server 2008
SQL Server by itself doesn't support load balancing. You can have active/passive failovers with the mechanisms you described (database mirroring and log shipping) and there's a lot of other option …
2
votes
Sql Server Object Organisation
You can't do that with the native tools (SQL Server Management Studio) but there's a workaround: create a new empty database with those 15 tables - just the schema, not the data. Then when you're …
0
votes
How to achieve multiple Active (read and write) sites(datacenters) with continuos datareplication using SQL Server 2008?
The only active/active option for SQL Server is replication. There is no other active/active option for SQL Server as of this writing.
…
0
votes
Can you recommend a Sql Server 2008 book for developers that only addresses the new features?
The new development features in SQL 2008 don't really merit a whole book by themselves, with one exception - geospatial data. If you're using geospatial, then check into specific books on that, bu …
0
votes
How to use DataMining feature of SQL Server 2008 with ASP.Net
In a nutshell, you want to:
Build cubes to model your data
Build a prediction calculator (or whatever kind of calculator you're looking to use)
Expose that via a web …
