Viewing 15 posts - 1,141 through 1,155 (of 1,518 total)
MohammedU (6/2/2008)
Here is the MS article...How to configure SQL Server to use more than 2 GB of physical memory
Thanks, but that link does not apply in my case (I have...
June 2, 2008 at 12:41 pm
My 0.2 cents on this:
If you are starting off connecting through SQL auth, save yourself the heartache and go with it all the way.
Setting up Windows auth double-hop/chaining is not...
May 30, 2008 at 3:28 pm
Thanks Matt, all you are saying makes a lot of sense.
I'd also rather leverage the .NET framework.
I'll give it a try...
May 30, 2008 at 10:15 am
Thanks guys for your suggestions, I will have a look at the info provided.
Matt, I was thinking of creating a .NET console app, but I'm not sure all machines of...
May 30, 2008 at 8:55 am
Mani raises very good points.
Auditing is a must in a prod environment, as is removing BUILTIN\ADMINS from a prod instance.
May 30, 2008 at 7:59 am
SQL ORACLE (5/29/2008)
at 6:30pm /EVERY:Monday,Tuesday,Wednesday,Thursday,Friday,Sunday "c:\stop.bat"
at 6:30pm /EVERY:Monday,Tuesday,Wednesday,Thursday,Friday,Sunday "c:\start.bat"
Where stop.bat
net start mssqlserver
start.bat
net stop...
May 30, 2008 at 7:35 am
I managed to resolve this the following way.
main.bat:
sqlcmd -S srvr\instance -i D:\checkJobsRunning.sql
sqlcmd -S srvr\instance -i D:\stopAgent.bat
checkJobsRunning.sql:
SET NOCOUNT ON
CREATE TABLE #JobStatus
(
job_id uniqueidentifier,
LastRunDate int,
LastRunTime int,
NextRunDate int,
NextRunTime int,
NextRunSchedule int,
RequestedToRunint,
Request_Source int,
Request_Source_ID varchar(100),
Running int,
CurrentStep int,
CurrentRetryAttempt...
May 29, 2008 at 2:41 pm
There is no such thing for SQL 2000 unfortunately.
May 29, 2008 at 12:18 pm
Steve Jones - Editor (5/29/2008)
I think you'd implement this as T-SQL logic, a stored proc perhaps, and then call that from SQLCMD.
I'm almost there, but I'm stuck trying to pass...
May 29, 2008 at 11:18 am
Ola Hallengren (5/29/2008)
Look in the trc - files that are located in the same directory as the error logs.
Ola...
May 29, 2008 at 10:33 am
Steve Jones - Editor (5/29/2008)
May 29, 2008 at 8:17 am
I think I got it. I have to connect to an instance from the cmd line and THEN reconnect with the :CONNECT directive.
Like this:
On cmd prompt:
sqlcmd -S srvr1\instance1 -i "test.sql"
test.sql...
May 29, 2008 at 8:11 am
Ratheesh.K.Nair (5/29/2008)
I have error log ..Is that helpful.Can i find who deleted the database and when???
Start with who currently has db_owner/sysadmin permissions.
Hopefully not too many people...
May 29, 2008 at 7:42 am
In SSMS, right-click on the Database Mail node under Management, and pick View Database Mail Log.
This will give you a list of recent activity along with possible errors.
May 29, 2008 at 7:27 am
Ratheesh.K.Nair (5/29/2008)
Is there any way to know about a database which...
May 29, 2008 at 7:24 am
Viewing 15 posts - 1,141 through 1,155 (of 1,518 total)