Viewing 15 posts - 6,541 through 6,555 (of 7,191 total)
Arun
Double-click on the SQL Server resource in Cluster Administrator and go the Dependencies tab. Add as a dependency every disk resource on which SQL Server data or log files reside.
John
February 23, 2007 at 3:43 am
Mike
Have you done any performance monitoring to find out what the bottleneck is on your current server? You could save thousands if it turns out that all you need to...
February 22, 2007 at 7:55 am
You need to run comclust.exe, which configures MSDTC on a cluster server.
John
February 22, 2007 at 7:31 am
That all depends on how much the database is used. If, for example, you're running queries that return large result sets then you may be filling up the buffer cache,...
February 21, 2007 at 1:51 am
Robert
I've got both set up on my PC and everything is working.
John
February 20, 2007 at 9:29 am
Not sure what you're asking, really. The sqlmanager.exe process is for the little icon that sits in your system tray and tells you whether SQL Server is running or not. ...
February 20, 2007 at 8:57 am
Brian doesn't want to control which objects go to which file. He only wants to ensure that data is split evenly across the files. Having multiple files within the same...
February 20, 2007 at 8:44 am
Michelle
That's just too tricky. If you don't have somewhere you can test this before you do it for real, then a large part of it is going to be keeping...
February 20, 2007 at 8:38 am
Michelle
I wouldn't risk trying to restore the system databases. That's why I suggested scripting out logins, jobs and so on, so that you can do a clean install and then...
February 20, 2007 at 7:53 am
Adam
This will work in SQL Server 2005 as well:
CREATE PROCEDURE MyProc @colname sysname
AS
SELECT 'select [' + column_name + '] from [' + table_schema + '].[' + table_name + ']'
FROM information_schema.columns
WHERE column_name = @colname
GO
Call it like this:
February 20, 2007 at 6:12 am
Charlie
I'm not sure how you got any results at all from that query, but never mind - try this:
--Table
CREATE TABLE MyTable (sampleno INT, workcode decimal(5, 2), result INT)
--Data
INSERT INTO MyTable VALUES (211, 33, 50)
INSERT INTO MyTable VALUES (211, 33.01, 51)
INSERT INTO MyTable VALUES (211, 33.02, 54)
INSERT INTO MyTable VALUES (211, 33.03, 32)
INSERT INTO MyTable VALUES (212, 33, 23)
INSERT INTO MyTable VALUES (212, 33.01, 34)
INSERT INTO MyTable VALUES (212, 33.02, 24)...
February 20, 2007 at 3:08 am
Brian
I suppose one way to do it would be to create twelve new files in a new filegroup. Then you can drop the clustered index of each table and recreate...
February 19, 2007 at 7:02 am
Adam
It sounds like poor database design to me - are we allowed to know why they want to do this?
Anyway, to answer your question. How about creating a table with...
February 14, 2007 at 10:11 am
BK
Use the sp_helplogins stored procedure to get a list of how logins map to users and roles in databases. The query below will return a list of logins and what...
February 14, 2007 at 8:30 am
Kenneth
Some DDL would have been helpful. Still, here's a guess. Despite the title of the thread, you don't need a loop - you can do it with a set-based query.
February 12, 2007 at 9:34 am
Viewing 15 posts - 6,541 through 6,555 (of 7,191 total)