Viewing 15 posts - 466 through 480 (of 548 total)
+1
Create a "updatedDateTime" with DATETIME type, with default GETDATE() (or GETUTCDATE())
Timestamp is a binary type to track of changes, confusing name yes
October 1, 2008 at 10:03 am
Note: ONLY Applicable on SQL 2008 (as in you need SSMS 2008, and it only works if server is SQL 2008)
If I have Red Gate SQL Prompt installed, I don't...
September 30, 2008 at 10:05 am
I agree, the question was confusing as the term "data" was not clearly defined
I picked MDW since I just tested this feature last week
As far as I am concerned, it...
September 29, 2008 at 2:40 pm
Login triggers if you want to only do it for SA?
http://technet.microsoft.com/en-us/library/bb326598.aspx
http://www.simple-talk.com/sql/sql-server-2005/logon-triggers/
http://www.sqlservercentral.com/articles/SQLServerCentral.com/sqlserver2005logontriggers/2366/
Although 'sa' account should be disabled on any SQL Server, unless you mean 'sysadmin'...
September 29, 2008 at 9:17 am
Just for fun
I REBUILD (not REORGANIZE) 5 indexes on a 0.5 million table, on SQL 2008 RTM, 5GB RAM (limit to 3GB for SQL though), 4 CPU
1 Clustered (8% fragment)
3...
September 26, 2008 at 12:40 pm
Steve Jones - Editor (9/26/2008)
September 26, 2008 at 9:34 am
Wow, that is LONG
How much was the fragmentation %? I wonder if REBUILD (instead of REORGANIZE) would've been quicker
Was this tested in other environments to estimate the hours first?
September 26, 2008 at 9:30 am
We used TFS 2008 Beta, that didn't go so well as there was no official Microsoft Upgrade Path from TFS 2008 Beta to RTM
SQL 2008 we tested RC0 and was...
September 26, 2008 at 9:27 am
LOOKUP_BI (9/25/2008)
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=110841%5B/quote%5D
He meant this 😛 (saves you guys a click)
September 25, 2008 at 2:17 pm
Gladly never had this problem
Could SET QUOTED_IDENTIFIER fix it?
September 25, 2008 at 2:15 pm
http://msdn.microsoft.com/en-us/library/ms187928(SQL.90).aspx
108 or 114 seem to do it
SELECT CONVERT(nvarchar(30), GETDATE(), 108)
16:10:04
SELECT CONVERT(nvarchar(30), GETDATE(), 114)
16:10:04:510
unless you are using SQL 2008, you can CAST datetime to 'time' type
SELECT CAST(GETDATE() AS TIME)
16:10:49.9630000
September 25, 2008 at 2:08 pm
I know SQL 2005 has Performance Dashboard reports you can import
SQL 2008 has them built-in as Standard Report (right-click on server -> reports -> standard report)
Some monitoring tools (like RedGate...
September 25, 2008 at 2:05 pm
http://technet.microsoft.com/en-us/magazine/cc434691.aspx
In this article, I'll give you an overview of the most important changes you'll find in store for SQL Server® 2008 security. One of the first things you might notice...
September 25, 2008 at 12:09 pm
Thanks Kevin
That answered my imaginary question 🙂
September 25, 2008 at 11:11 am
RedGate SQL Response
some monitoring tool
or there are couple articles in SQL Central on collecting info from multiple DB servers as a job etc...
Unless they happen frequently, I would say reactive...
September 25, 2008 at 11:08 am
Viewing 15 posts - 466 through 480 (of 548 total)