Viewing 15 posts - 226 through 240 (of 14,952 total)
I create a dev environment that parallels the production environment, in terms of disk names, windows domains, etc. Then develop on there.
I usually deploy the packages to msdb instead...
January 7, 2013 at 9:24 am
Terrie (1/7/2013)
January 7, 2013 at 9:17 am
I make it really easy on myself and keep a Calendar table in a database called Common, on each server.
The table has each day as a row. Columns include...
January 7, 2013 at 9:13 am
The fact that their own FAQ on using their product to back up SQL Server databases has incorrect information in it isn't promising to me:
If you use SQL's own backup...
January 7, 2013 at 9:04 am
It depends on the size of the indexes. They have to have enough room to be rebuilt. How big are they?
Rebuilding in tempdb won't necessarily help with overall...
January 7, 2013 at 8:46 am
Terrie (1/7/2013)
Thanks for all your replies. One shrinks a database to recover space. What does shrink with notruncate accomplish?Terrie
Move pages to the beginning of the file. Mildly...
January 7, 2013 at 8:43 am
It depends on the business-definition. Which is usually the ISO definition, but not always.
Most places I've worked, they want the first week to include 1 Jan, but to start...
January 7, 2013 at 8:16 am
Try this:
DECLARE @Date DATE = GETDATE();
SELECT *
FROM Client_Trades.DBO.Trades
WHERE Trade_Date >= DATEADD(MONTH, DATEDIFF(MONTH, 0, @Date), 0)
AND Trade_Date < DATEADD(MONTH, DATEDIFF(MONTH, 0, @Date)+1, 0);
What that does is calculate the first day of...
January 7, 2013 at 8:08 am
In that kind of situation, yeah, shrink the database, and rebuild the indexes. See if you have the option to rebuild them in tempdb, since that can help reduce...
January 7, 2013 at 8:04 am
jcrawf02 (1/4/2013)
hahaha
The encryption piece doesn't even matter. What obviously happened is Vader left his laptop where a rebel could steal it. Probably lost it on the bus on...
January 7, 2013 at 8:01 am
dwain.c (1/6/2013)
GilaMonster (1/6/2013)
Stefan Krzywicki (1/6/2013)
GilaMonster (1/6/2013)
Stefan Krzywicki (1/5/2013)
January 7, 2013 at 7:50 am
dwain.c (1/3/2013)
Evil Kraig F (1/3/2013)
Any twitter folks here use a samsung galaxy? If so, what app do you recommend?
About a week and a half ago, I bought my wife...
January 7, 2013 at 7:46 am
sqlpadawan_1 (1/7/2013)
January 7, 2013 at 6:32 am
Concatenate the list of columns into a string, use that in dynamic SQL. It's the only way to to do what you're trying.
January 4, 2013 at 7:07 am
Viewing 15 posts - 226 through 240 (of 14,952 total)