Viewing 15 posts - 181 through 195 (of 272 total)
We keep a calendar table (100 years, past and future) that has flags for business days, holidays EOM, days of the week, quarters etc.
March 12, 2010 at 11:05 am
Type "system error messages" into the search tab of books-on-line.
March 12, 2010 at 11:00 am
You can also use the import wizard. Right-click on the database in the object explorer. Select Tasks --> Import. From the there, the wizard will guide you....
March 11, 2010 at 2:00 pm
My definition of a good QOD: Anytime I get the correct answer 😀
Good Question!
March 11, 2010 at 1:55 pm
We do a lot of this. We keep tables of extended metadata that include source and destination information, conversion and special mapping instructions. These are used to generate...
March 10, 2010 at 12:23 pm
As a general rule, it is feasable (we do it), but you must use care when updating the tables with developed applications or T-SQL or whatever. You may not...
March 10, 2010 at 12:04 pm
aroatenberry (3/10/2010)
So let's say that...
March 10, 2010 at 11:55 am
If you want everything to be identical, backup/restore should work just fine.
March 10, 2010 at 11:52 am
DECLARE @Yesterday datetime
SET @Yesterday = CONVERT(DATE,GETDATE() - 1)
SELECT DATEADD(HH,15,@YesterDay)
March 10, 2010 at 11:49 am
rburke 87921 (3/9/2010)
SELECT dbo.Product.ProductID, dbo.Product.Category, dbo.Product.ProductCode, dbo.Product.Description, dbo.Product.Price, dbo.[Order].CustomerID, dbo.[Order].OrderID,
...
March 9, 2010 at 2:17 pm
You should add SQL debugger (part of SSMS) to that list. I've found most DBAs don't appreciate the value.
March 6, 2010 at 5:21 pm
Viewing 15 posts - 181 through 195 (of 272 total)