Viewing 15 posts - 18,766 through 18,780 (of 39,903 total)
The backup file isn't changed. What happens when you do the restore is that the mdf/ldf/ndf are created as sparse files. All reads from these files are redirected to the...
August 11, 2010 at 8:29 am
I've turned the kids onto chorizo here, and that's supplanted bacon most of the time.
August 10, 2010 at 7:55 pm
I found this one, but only in L. I need a XXL.
August 10, 2010 at 9:00 am
Apologies to anyone that feels I crossed the line into too much advertising. I was asked to write something on this product, and I think I failed to editorialize on...
August 10, 2010 at 9:00 am
The same functionality, AFAIK, continues in SQL 2008. If you have those fields and insert too much data, it gets truncated.
We understand your situation. I think most of us have...
August 10, 2010 at 8:11 am
You need to write some code.
Query sys.server_principals for users, write a loop or cursor with the results, build an ALTER LOGIN script from there.
http://msdn.microsoft.com/en-us/library/ms188786%28v=SQL.100%29.aspx
August 10, 2010 at 8:03 am
I'm not sure what you mean. 10 varchar(2000) in one table still wouldn't have more than 8k in the row since that's a 2000 limitation. You can convert to varchar(max)...
August 10, 2010 at 8:02 am
If this is a one time thing, or rare thing, you could use the data import wizard in SQL Server to do it. Otherwise, I agree with Paul's advice. Openquery...
August 10, 2010 at 8:00 am
One more thing on the iPad/iPhone. There are quite a few libraries doing electronic lending of materials. Mine uses the Overdrive Media Console, which registers to my account. I can...
August 10, 2010 at 7:40 am
Yes, sorted in that order. The data is stored like that on pages.
Note that page splits happen all the time, updates cause them when the new values don't fit on...
August 10, 2010 at 7:38 am
Brandie Tarvin (8/10/2010)
jcrawf02 (8/9/2010)
CirquedeSQLeil (8/9/2010)
Of the people that have a Kindle or Nook or both, can books be shared between people with the same device?
I think one of those has...
August 10, 2010 at 7:36 am
Buffering isn't something I've typically worried about. Are you selecting millions of records? If not, I wouldn't be concerned here. The default isolation works fine.
Replication was a little shaky in...
August 10, 2010 at 7:29 am
The insert will occur inside the clustered index, and if there is not enough space, a page split will occur.
August 10, 2010 at 7:27 am
This would be cumbersome in T-SQL. You'd be better off running SQL Trace and capturing all changes that way, replaying them against another copy of the database.
August 9, 2010 at 10:06 pm
Viewing 15 posts - 18,766 through 18,780 (of 39,903 total)