Viewing 15 posts - 736 through 750 (of 757 total)
Make sure that there are no connections to the database before shutting down the SQL Services, do this via sp_who2 active
Make sure that there are no backups etc running.
October 14, 2011 at 4:52 am
That should do it
Remember though, this is predicated on the fact that you have no constraints on the tables you want to delete. Foreign Keys etc...
October 12, 2011 at 11:58 pm
Perry Whittle (10/12/2011)
Do you have a storage administrator, someone who looks after said...
October 12, 2011 at 8:40 am
SQLTestUser (10/6/2011)
October 12, 2011 at 8:39 am
Perry Whittle (10/12/2011)
1. On Node B: Add the required roles and features to enable for failover clustering
2. On Node A: Run the...
October 12, 2011 at 8:00 am
Perry Whittle (10/12/2011)
derekr 43208 (10/12/2011)
I'm quoting from your SSC article "Creating a 2 Node SQL Server 2008" - In the beginning of Part 3 you mention: "the Windows 2008 cluster...
October 12, 2011 at 6:43 am
Perry Whittle (10/11/2011)
derekr 43208 (10/11/2011)
does running the "add node" install SQL Server.Thanks
That's exactly what it does. As i mentioned previously, ensure the node is added to the Windows cluster first...
October 12, 2011 at 5:50 am
Perry Whittle (10/11/2011)
derekr 43208 (10/11/2011)
does running the "add node" install SQL Server.Thanks
That's exactly what it does. As i mentioned previously, ensure the node is added to the Windows cluster first...
October 12, 2011 at 5:06 am
Perry Whittle (10/10/2011)
derekr 43208 (10/10/2011)
I have SQL 2008 enterprise Sp2 installed on Windows 2008 enterprise.
This is a single node cluster
What is the process of adding a second node to...
October 11, 2011 at 4:48 am
- Index maintenance on something this large - how long could it take (luckily we will only have to do it once a month).
- Any rules of thumb for how...
October 6, 2011 at 5:36 am
You could write a query that goes through Information_schema and creates a drop table script
Something like:
set nocount on
select 'DROP TABLE '+table_schema+'.'+table_name+'
GO'
from INFORMATION_SCHEMA.TABLES where TABLE_NAME = ''
This is assuming you have...
October 6, 2011 at 5:23 am
Thanks tested but doesnt work
This is the result:
(18 row(s) affected)
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near 'GO'.
Msg 102, Level 15, State 1, Line 6
Incorrect syntax near 'GO'.
Msg...
October 3, 2011 at 5:55 am
Viewing 15 posts - 736 through 750 (of 757 total)