Viewing 15 posts - 1,216 through 1,230 (of 7,498 total)
Do also check the actual database owner for the involved databases.
If you performed the restore, the database will have your userid as owner unless you've executed sp_changedbowner after the recovery.
June 27, 2013 at 6:41 am
Exactly what I've been preaching over here 🙂
Configuration nor budget is my call in this case :Whistling:
But this being the first case since this new hosting company is in charge,...
June 26, 2013 at 8:31 am
we always use a windows domain account as service account for our sqlserver instances.
Are there firewalls involved ? If yes, did you open the needed ports ?
June 26, 2013 at 1:13 am
6 spindles:
4x136GB -> 2 RAID1 volumes -> C-drive and D-drive
2x300GB -> 1 RAID1 volume -> E-drive
I hope they upgraded all hardware drivers before they made it available because that was...
June 25, 2013 at 11:53 pm
Thank you for your reply.
Having my concerns confirmed certainly counts !
Apparently our hosting company works at "least effort" basis and doesn't heasitate to charge big piles of $$ just to...
June 25, 2013 at 12:49 pm
aren't you just killing your engine using all these cursors, UDF in in-clauses, row level nested views ( who knows what is in there ) ...
How about adding a group...
June 25, 2013 at 7:44 am
could be kind of application logging that has been implemented and enabled.
Could it be an insert on a cursor-ed object (ado recordset insert) ?
June 25, 2013 at 6:53 am
unlike the old syntax ( not using the keyword JOIN ) the placement of the on-clause predicates don't play a role in determining the left part of your left join.
...
June 24, 2013 at 12:23 am
+5 stars ( and that's just because that is the maximum supported over here ) :hehe:
Well said, Jeff :w00t:
June 24, 2013 at 12:16 am
the way you did it is grouping by minute ( not taking year/month/day/hour into account )
This is how I would do it.
SELECT
datepart(mi,[startDate]) as MI,
min(startDate) as startDate,
avg(duration) Duration
FROM ...
June 23, 2013 at 2:15 am
well, consider it as if you were to write the from part in a (long) single line
In English, we read it from left to right, correct ?
Hence a left...
June 23, 2013 at 2:06 am
I'm glad SSC republished your fine article, Gianluca.
Nice work, great descussions.
June 21, 2013 at 2:58 am
did you try :
, CASE WHEN ss.enabled IS NOT NULL THEN 'Schedule is enabled'
...
June 11, 2013 at 12:21 am
please check out the procedure described at msdn: How to: Rename a Computer that Hosts a Stand-Alone Instance of SQL Server 2005 : http://msdn.microsoft.com/en-us/library/ms143799%28v=sql.90%29.aspx
June 10, 2013 at 6:10 am
As documented in BOL: TRUNCATE TABLE (Transact-SQL)
Restrictions
You cannot use TRUNCATE TABLE on tables that:
Are referenced by a FOREIGN KEY constraint. (You can truncate a table that...
June 6, 2013 at 11:58 pm
Viewing 15 posts - 1,216 through 1,230 (of 7,498 total)