Viewing 15 posts - 556 through 570 (of 1,524 total)
For test database refreshes the connections I kill are 99.9% idle as the app keeps connections eventhough no one is using the application.
December 3, 2013 at 5:22 am
Interesting.... I got this Kill SP from this forum years ago... I have never seen anything to the effect of do not kill SPIDs... except system ones obviously. I...
December 2, 2013 at 11:16 am
Create this stored Proc, run it as a step before your restore step. I use this to refresh NonProd databases all the time. The syntax for the kill...
December 2, 2013 at 8:51 am
Steve Jones - SSC Editor (11/28/2013)
December 2, 2013 at 5:02 am
Cano may not get a 10 year 300 mill contact but to say teams aren't going to throw big contracts to players and 10 year deals are a thing of...
November 26, 2013 at 4:56 am
Since you are going from SQL2000 to 2008 you need to do a dbcc update usage.... also, at bare minimum run Update stats as SQL2008 handles indexes differently. Really...
November 14, 2013 at 1:54 pm
Not working properly is very generic.... errors..... slowness.... wrong results via query.......
What version of SQL Server and what service pack did you upgrade from and to.... also... be very specific...
October 30, 2013 at 6:27 am
If at all possible it is best to install SQL2008 on a new server and restore you dbs, jobs and users to it. In place upgrades are possible, however,...
October 18, 2013 at 11:11 am
The way I solved this is once the db is refreshed, add back what you need manually like via the GUI and script out the commands... then simply put those...
October 8, 2013 at 11:07 am
That is very bizzare. I have upgraded many dbs from 2000 to 2008 and never seen it change the attribute of a column....
September 26, 2013 at 12:46 pm
Most applications have a configuration for their app pool connections...
like
Minimum number of connections, Max number of connections and sometimes a timeout if not used number.
September 26, 2013 at 12:43 pm
Jeffrey Williams 3188 (9/23/2013)
Select r.command
, s.text
, r.start_time
,...
September 23, 2013 at 1:07 pm
Try this:
USE MASTER
--
SELECT SESSION_ID, '[' + CAST(DATABASE_ID AS VARCHAR(10)) + '] ' + DB_NAME(DATABASE_ID) AS [DATABASE],
PERCENT_COMPLETE, START_TIME, STATUS, COMMAND,
DATEADD(MS, ESTIMATED_COMPLETION_TIME, GETDATE()) AS ESTIMATED_COMPLETION_TIME, CPU_TIME
FROM SYS.DM_EXEC_REQUESTS
--Apply this Where...
September 23, 2013 at 7:23 am
Take your time and go through each SQL Server and look at the databases, the jobs, the SQL Server log, run times of jobs, CPU usage etc... to get a...
September 18, 2013 at 11:43 am
Viewing 15 posts - 556 through 570 (of 1,524 total)