Viewing 15 posts - 1,321 through 1,335 (of 3,011 total)
Jobs normally run in the context of the SQL Server Agent service.
Edit:
Description of the SQL Server Integration Services (SSIS) service and of alternatives to clustering the SSIS service
http://support.microsoft.com/kb/942176
Google is your...
July 15, 2010 at 10:07 am
dean_vr (7/15/2010)
list of dbs in use since last rebootselect a.name, a.dbid, max(last_user_seek), max(last_user_scan)
from sys.sysdatabases a
left outer join sys.dm_db_index_usage_stats b on a.dbid = b.database_id
group by a.name, a.dbid
That may be of...
July 15, 2010 at 8:55 am
A snapshot is the database as it existed at the point in time the snapshot was created, including the schema.
July 15, 2010 at 7:53 am
“Cloud Computing”?
I guess someone came up with a new BS name for external hosting and/or timesharing.
Wake me when the next “next big thing” comes along.
July 13, 2010 at 8:08 am
It appears from this that only dbcreator and securityadmin are required:
SharePoint Server 2007
Plan for administrative and service accounts (Office SharePoint Server)
http://technet.microsoft.com/en-us/library/cc263445(office.12).aspx
I never looked into this before. I just insisted...
July 9, 2010 at 2:06 pm
We have a number of Sharepoint servers, and we have never used the SA login or used an account in the sysadmin role for the Sharepoint account.
I just checked one...
July 9, 2010 at 12:47 pm
They will more than likely have identical execution plans.
You should look at the query plans for both so that you can tell for yourself.
July 9, 2010 at 9:46 am
David O (7/9/2010)
July 9, 2010 at 9:28 am
This conversion looks close to what you want:
select
*,
MyDateTime =
dateadd(mi,convert(bigint,a.MyTime-998799780)%convert(bigint,1440),dateadd(dd,(a.MyTime-998799780)/1440,0))
from
( -- Test Data
select MyTime = convert(bigint,1056915413)union all
select MyTime = 000001056915413+(00000000001440*2918000)
Results:
MyTime ...
July 8, 2010 at 1:15 pm
and it wouldn't be hard for the optimizer to know that information for built-in functions
and there could be a hint for user-defined functions"
That is just your opinion. Had you...
July 7, 2010 at 2:35 pm
You didn't post any evidence to support your contention that IO is an issue. Perf mon counters, etc. What are the results you saw when you ran standard...
July 7, 2010 at 2:27 pm
Has anyone implemented table compression in conjunction with TDE?
What was the impact of compression and TDE on database size, compared to a database with just TDE or just table compression?
It...
July 7, 2010 at 9:42 am
TravisDBA (7/6/2010)
July 6, 2010 at 6:46 pm
kbnyny (7/6/2010)
I received this error msg when I put in that case statement "An expression of non-boolean type specified in a context where a condition is expected, near 'end'."
Since you...
July 6, 2010 at 6:38 pm
You cannot use IF in a DML statement. You should use a CASE expression.
Example:
case when TRXAMT = CURTRXAM then 0 else CURTRXAM end
July 6, 2010 at 2:47 pm
Viewing 15 posts - 1,321 through 1,335 (of 3,011 total)