Viewing 15 posts - 4,306 through 4,320 (of 9,253 total)
I'm not being snarky that comment is a subtle hint.
The old
EXEC sp_attach_db @dbname = N'AdventureWorks2012', @filename1 =
N'C:\Somepath\AdventureWorks2012_Data.mdf', @filename2 =
N'C:\Somepath\AdventureWorks2012_log.ldf';
The new
CREATE DATABASE database_name
ON PRIMARY (name=mydb_data, filename='d:\somepath\mydbdata.mdf')
LOG ON (name=mydb_log,...
February 13, 2013 at 2:01 pm
Jason Shadonix (2/13/2013)
You're joking right? Create and alter database have been enhanced extensively to include extra commands (file management, mirroring,...
February 13, 2013 at 12:56 pm
balasach82 (2/13/2013)
February 13, 2013 at 12:29 pm
Jason Shadonix (2/12/2013)
Question - What advantages does this method have over the detatch/reattach method of moving files around?
It's the supported way of moving database files and doesn't involve dropping the...
February 13, 2013 at 9:07 am
balasach82 (2/12/2013)
Database_Data.mdf
Database_1.ndf
Database_2.ndf
Database_3.ndf
Database_4.ndf
Database_log.ldf
I have decided on...
February 13, 2013 at 8:18 am
Check the output of the following query for top consuming tables and post their names
USE msdb
GO
SELECTOBJECT_NAME(i.object_id) AS TableName
, ISNULL(i.name, 'HEAP') AS IndexName
, i.type_desc AS IndexType
, p.partition_number AS PartitionNo
, p.rows AS...
February 13, 2013 at 6:18 am
The issue only seems to be affecting local disks too, all my windows 2012\sql server 2012 VMs are on ESX5.1 and are using iSCSI disks not VMWare virtual disks. I...
February 13, 2013 at 6:13 am
kevaburg (2/12/2013)
Although this is a very good article with regards to moving user databases
That is exactly what it is targeted at!
kevaburg (2/12/2013)
February 12, 2013 at 8:47 am
where did you check the bindings?
double check the TCPIP settings for each NIC and report back
February 12, 2013 at 4:37 am
sismb8 (2/12/2013)
February 12, 2013 at 3:40 am
Yulingxu (2/11/2013)
Thanks Perry for this article.I see MS SQL Server is more like Oracle Database to handle those physical files.
Thanks
Yuling
As a SQL Server\Oracle DBA i disagree. Oracle has no concept...
February 12, 2013 at 3:39 am
SQL Pizza (2/11/2013)
Security Handshake failed to obtain SecurityContext for NetFT driver
You need to throw a dog a bone here my friend, what you've given is not very helpful. Can you...
February 11, 2013 at 8:25 am
Very little, you still have a clustered SQL Server service and a clustered sql server agent service. Now, if you're asking the differences between Windows 2003 clusters and Windows 2008...
February 11, 2013 at 7:23 am
With that level of knowledge you're not leaving yourself much margin for error!
The first thing you will want to do is to check the current hardware against the Windows Server...
February 11, 2013 at 6:33 am
Viewing 15 posts - 4,306 through 4,320 (of 9,253 total)