Viewing 15 posts - 6,481 through 6,495 (of 6,678 total)
John - start here: http://www.sqlservercentral.com/articles/Best+Practices/61537/
I have no idea how to help you out with this, you have posted a new script with changes to it and it just opens up...
June 19, 2008 at 8:57 am
Without the client tools, you will have to resort to SQLCMD, OSQL, or some other client tool. You need to be able to connect to SQL Server to make...
June 18, 2008 at 10:28 pm
Execute sp_configure 'show advanced options', 1;
Reconfigure with override;
go
Execute sp_configure; -- show all options
go
Execute sp_configure 'max server memory (MB)', value;
Execute sp_configure 'min server memory (MB)', value;
go
Jeff
June 18, 2008 at 2:46 pm
John Chiu (6/18/2008)
-- read client data from staging table and basd on the increment...
June 18, 2008 at 2:36 pm
From SSMS: connect object explorer to the instance you want to configure. Right click on the server name and go to properties. Select the memory option.
June 18, 2008 at 2:24 pm
Are you talking about SQL Server 2005 Developer Edition? Or are you just talking about the client tools?
Either way, both should be patched to the highest level of any...
June 17, 2008 at 8:35 pm
To be honest - I don't know, since I have actually never set it up. I have a group who manages the servers and sets all that up before...
June 17, 2008 at 7:36 pm
Just to clear this up a bit. Any service that is managed by Cluster Administrator needs to be defined as Manual. If it is set to Automatic, then...
June 17, 2008 at 2:50 pm
By using three-part naming convention. I would give you an example, but I am not sure what you have tried so far and really don't know whether or not...
June 16, 2008 at 8:00 pm
In Profiler - database id and name are not default columns. You have to show all columns and select the database id and/or name to include them in the...
June 16, 2008 at 7:39 pm
Glad I could help - actually did not know about those samples until I went searching.
Jeff
June 16, 2008 at 7:25 pm
So, what exactly are you looking for. SSMS is an application that connects to SQL Server. BIDS (Business Intelligence Development Studio) is also an application that connects to...
June 16, 2008 at 3:31 pm
colin Leversuch-Roberts (6/16/2008)
June 16, 2008 at 1:48 pm
I guess I am not seeing the problem - since kcckey is a date column, couldn't you just do something like:
DECLARE @current_sunday datetime
,@previous_sunday datetime;
SET @previous_sunday = DATEADD(day, DATEDIFF(day, 0, getdate())...
June 15, 2008 at 8:07 pm
kinnon_2000 (6/15/2008)
Lets say i have two stored procedures, one callign the other to get its output into a varible. the first procedure has only one string as its output. The...
June 15, 2008 at 3:40 pm
Viewing 15 posts - 6,481 through 6,495 (of 6,678 total)