Viewing 15 posts - 541 through 555 (of 1,131 total)
"is it possible to access Windows Event Viewer from SQL?"
Not directly, but the Log Parser utility can be used to load the windows event log into a SQL Server table....
SQL = Scarcely Qualifies as a Language
January 7, 2008 at 7:53 am
"f I am understanding what you wrote then the solution is truly laughable from a performance (and coding) standpoint!! You have to create two tables and populate them both row-by-row...
SQL = Scarcely Qualifies as a Language
January 7, 2008 at 6:04 am
"5. Just TRY to write a set based trigger in Oracle... just go ahead and try!" This can be done.
1. For the triggering table, create two temporary tables,...
SQL = Scarcely Qualifies as a Language
January 6, 2008 at 3:15 pm
Here some SQL to list all of the database properties:
selectCAST( SERVERPROPERTY ('MachineName') as nvarchar(128) )AS MachineName
,COALESCE ( CAST( SERVERPROPERTY ('InstanceName') as nvarchar(128) ) , 'Default')AS InstanceName
,db.name as DatabaseName
,db.crdateas CreateTs
,db.sidas...
SQL = Scarcely Qualifies as a Language
January 4, 2008 at 1:34 pm
Under SQL Server 2000 32 bit with AWE enable, memory is not managed dynamically, so under your specifications of max server memory of 15Gb, at start-up SQL Server will obtain...
SQL = Scarcely Qualifies as a Language
January 4, 2008 at 1:23 pm
Your example SQL is exactly the case where a table would be superior to a stored procedure. With a table, the values of the date range are visible to...
SQL = Scarcely Qualifies as a Language
December 30, 2007 at 2:20 pm
For a calendar, there are two alternative solutions of creating a table or using a function.
As the SQL Query optimizer can make use of table indicies, constraints and statistics but...
SQL = Scarcely Qualifies as a Language
December 30, 2007 at 11:30 am
FYI: SQL Server 2008 SSMS starts much faster than 2005. An initial open takes about 9 seconds versus about 45 seconds for SSMS 2005 and a second open about...
SQL = Scarcely Qualifies as a Language
December 24, 2007 at 12:14 pm
I am not having a problem and here is test case.
select database_id,name
from master.sys.databases
wheredatabase_id <= 5
FOR XML AUTO, ELEMENTS, ROOT('databases')
SQL = Scarcely Qualifies as a Language
December 20, 2007 at 8:20 am
The "ROOT" keyword is only available with the "RAW" option and is not available with the "AUTO" option.
SQL = Scarcely Qualifies as a Language
December 19, 2007 at 9:52 am
Try the "dBase File" ODBC driver.
SQL = Scarcely Qualifies as a Language
December 13, 2007 at 8:15 pm
4 to 6 weeks !!? In Chicago, I typically get 3 offers in the first week I am looking at $65 an hour. Have a colleague with a...
SQL = Scarcely Qualifies as a Language
December 8, 2007 at 12:23 pm
Task Manager does not provide accurate memory usage information for AWE. System Monitor should be used instead.
http://msdn2.microsoft.com/en-us/library/aa213764(sql.80).aspx
Process explorer can show more information as is available at http://www.microsoft.com/technet/sysinternals/default.mspx
SQL = Scarcely Qualifies as a Language
December 6, 2007 at 2:10 pm
The ISO SQL standards has, amoung others, these trigger options:
1. "Before", "After" and "Instead"
2. "for each statement" and "for each row"
3. firing order
SQL Server 2000 supports:
1. ...
SQL = Scarcely Qualifies as a Language
December 3, 2007 at 3:49 pm
"We just had a Disaster Recovery test that experienced some problems with servers using a real-time replication software called Double-Take. "
How interesting - I also had a DR test on...
SQL = Scarcely Qualifies as a Language
December 3, 2007 at 3:21 pm
Viewing 15 posts - 541 through 555 (of 1,131 total)