Viewing 15 posts - 1,081 through 1,095 (of 3,011 total)
ekknaveen (11/18/2010)
November 18, 2010 at 7:59 am
Drop the snapshot and create a new snapshot with the name you want.
November 17, 2010 at 12:54 pm
Adiga (11/17/2010)
November 17, 2010 at 10:28 am
LiteSpeed supports encrypted backups.
Redgate web site says their Backup Pro (not Lite) supports encrypted backups.
November 17, 2010 at 10:21 am
Stefan Krzywicki (11/17/2010)
Well, I've found one reason to use GetDate() instead of Current_Timestamp. Current_Timestamp isn't supported in SSIS Expressions.
I'm fairly certain that there is no ANSI standard for SSIS. ...
November 17, 2010 at 10:19 am
The best thing to do would be to switch to using an identity column.
If you must keep the current bad design:
1. Make one table for each table you are maintaining...
November 17, 2010 at 7:46 am
Solution to the OP's question using a calendar table:
select
WEEK_NO=
min(a.WEEK_STARTING_TUE_SEQ_NO-b.WEEK_STARTING_TUE_SEQ_NO+1) ,
WEEK_START_DATE=
min(a.[DATE]),
WEEK_END_DATE=
max(a.[DATE])
from
-- Date Table Function F_TABLE_DATE available here:
-- http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61519
F_TABLE_DATE('20100901','20100930') a
cross join
F_TABLE_DATE('20100901','20100901') b
group by
a.WEEK_STARTING_TUE_SEQ_NO
order by
a.WEEK_STARTING_TUE_SEQ_NO
Results:
WEEK_NO WEEK_START_DATE ...
November 16, 2010 at 12:10 pm
Experienced developers, like Jeff, understand that doing a crap job the first time around and then having to fix it is much more expensive than doing a good job the...
November 16, 2010 at 10:24 am
Learner1 (11/15/2010)
its again an interview quetion but I got an answer already...
this can be done using a corelated query
SELECT DISTINCT (a.age) FROM test55...
November 15, 2010 at 2:47 pm
Craig Farrell (11/15/2010)
Michael Valentine Jones (11/15/2010)
That's good, as long as they don't actually decide to go out and buy a cheap laptop to replace the server. :crying:
"So, that's your...
November 15, 2010 at 2:43 pm
GilaMonster (11/15/2010)
David Lester (11/15/2010)
Consultant, 'You know, you could stop out at a PC store, pick up a cheap laptop and run better than this server does'
I've used that...
November 15, 2010 at 2:25 pm
There have been a lot of alternative suggestions posted, so maybe it’s time for a performance test… 🙂
FYI: I never vote on anything, so don't blame me for the...
November 15, 2010 at 1:37 pm
Restore simply creates the database file the way they were when the backups was made.
If you need to shrink them after the restore, you will have to set that up...
November 15, 2010 at 1:08 pm
David Lester (11/15/2010)
So I do admit, it took alot of self control to not do the I told you so thing. That group already is stunningly uncooperative with me...
It's...
November 15, 2010 at 1:02 pm
David Lester (11/15/2010)
The consultant they hired came in and after all day told them what I was telling them. The problem is in the hardware, or configuration of...
November 15, 2010 at 11:57 am
Viewing 15 posts - 1,081 through 1,095 (of 3,011 total)