Viewing 15 posts - 15,286 through 15,300 (of 39,824 total)
GSquared (8/18/2011)
Steve, you'll like this one: http://www.sqlservercentral.com/Forums/Topic1161841-391-1.aspxWe just answered a MySQL question, because the forums for that product were too hostile and unhelpful. Good PR for this site!
*cool* 😎
August 18, 2011 at 10:27 am
August 18, 2011 at 9:53 am
Well it looks like we might have an SSC party at the PASS Summit after all for those of you that are going. No deal with PASS, but we'll likely...
August 18, 2011 at 7:57 am
There are quite a few on the site. A search will turn up many.
Here is one: http://www.sqlservercentral.com/scripts/T-Log/69750/
August 17, 2011 at 7:26 pm
For service broker, you'd essentially run a piece of code in SQL Server, which would put a message in a queue. I think that might be overkill for this. If...
August 17, 2011 at 7:14 pm
The way I've usually done this is create a table to store a message of some sort. Could be a bit, could include a user, time, etc. Then what I...
August 16, 2011 at 4:37 pm
Jeff Moden (8/16/2011)
R.P.Rozema (8/16/2011)
However, in situations where readability is more important than raw execution speed
You're absolutely barking up the wrong tree with me on that subject. 😉 For...
August 16, 2011 at 12:52 pm
800GB isn't really a monster. There are 1TB drives these days and lots of backup products are built to handle multi-TB backups.
Best advice, use backup compression first. If you have...
August 16, 2011 at 10:39 am
cengland0 (8/16/2011)
August 16, 2011 at 10:05 am
I would expect you to use sp_change_log_shipping_secondary_primary (http://msdn.microsoft.com/en-us/library/ms180034%28v=SQL.100%29.aspx) or sp_change_log_shipping_secondary_database (http://msdn.microsoft.com/en-us/library/ms177507%28v=SQL.100%29.aspx) to change the settings for the secondary server.
August 16, 2011 at 10:01 am
The easy way to do this is use the identity property.
You don't need to insert a value, SQL Server will calculate an incrementing value.
CREATE TABLE MyBigInt
(
MyID bigint IDENTITY(100000000000000,...
August 16, 2011 at 9:57 am
Thanks for the update. I believe for all OS versions, you need to log off and log on for new variables to appear. In your case, it would depend on...
August 15, 2011 at 6:16 pm
You shouldn't have to restart SQL Server.
An environment variable should be read when it's accessed. Depending on how you created it, it's possible that it needs a new logon...
August 15, 2011 at 5:29 pm
Viewing 15 posts - 15,286 through 15,300 (of 39,824 total)