Viewing 15 posts - 226 through 240 (of 1,156 total)
Well considering he needs to license 2 servers in an Active/active scenario, and only one in an Active/Passive (yes - even with Standard) - I'm not sure I follow how...
March 24, 2008 at 12:51 pm
Query the system views to see if it exists.
SELECT *
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = 'atest'
March 24, 2008 at 12:00 pm
SELECT MIN(a.Start_dt), MAX(a.End_dt)
FROM(
SELECT
ROW_NUMBER() OVER(ORDER BY End_Dt DESC) AS [RowNbr],
Start_Dt [Start_dt],
End_Dt
FROM @t
WHERE End_Dt < GETDATE()
) AS a
WHERE a.RowNbr < 3
March 24, 2008 at 11:39 am
In addition to what was said above, by dropping/recreating you also loose all your changes history. Normally, you can use the query below to determine when a stored procedure...
March 24, 2008 at 10:44 am
Well no results usually means that you have any FTCs. Can you confirm that the text catalogs are in the questioned database. If you used the attach/detach method,...
March 24, 2008 at 10:16 am
Full text catalogs are backup up when you perform a full database backup. When restoring the database, the FTC should be pointing to the same place. If you...
March 24, 2008 at 7:34 am
On SQL 2005 only.
Palwi: Questions related to SQL 2000 should rather go into the sql 2000 forums. Otherwise you'll get a lot of suggestions that won't work.
Yep. I...
March 23, 2008 at 8:40 am
It is stored as a float. The portion left of the decimal is the date and the right portion is the time and seconds.
March 21, 2008 at 8:18 pm
To further expand what Kent was saying. SQL server has explicit and implicit comversions. Explict conversions when you cast or convert a value to another data type. ...
March 21, 2008 at 6:31 pm
This is a sample I came up with. It may not be 100%, but it should be enough to get you going. The logic is to get all...
March 21, 2008 at 4:01 pm
Yep. It does but I still need more information. I take it that the WOID is what relates the work orders together. I need that piece of...
March 21, 2008 at 2:34 pm
I am not sure what you mean by grouped? I do not see any aggregations, so I am guessing that you want the results ordered by parent/child. Is...
March 21, 2008 at 2:19 pm
You can also query msdb for suspect pages.
SELECT * FROM msdb..suspect_pages
March 21, 2008 at 1:47 pm
SP2 does not have a summary, it has Object Explorer Details. The reports are not listed on the Object Exploerer details, for SP2. You have to right-click the...
March 21, 2008 at 1:34 pm
Viewing 15 posts - 226 through 240 (of 1,156 total)