Viewing 15 posts - 661 through 675 (of 14,953 total)
Ask them what they really need the most. Judging from the required skills list, they're probably most interested in VLDB administration and DR, and some of the rest of...
October 24, 2012 at 7:46 am
vinu512 (10/19/2012)
October 24, 2012 at 7:22 am
TravisDBA (10/22/2012)
October 24, 2012 at 7:09 am
TravisDBA (10/22/2012)
GSquared (10/18/2012)
I also ask: What prompted you to look for a DBA?
I want to know if I'm going to be filling the shoes of a successful DBA who has...
October 24, 2012 at 7:08 am
Ivan Mohapatra (10/18/2012)
well i want to know is that will that Nolock will be helpful or...
October 19, 2012 at 6:54 am
Cast the DateTime column to Time datatype, and then use that in your Where clause. Should work for what you need.
October 18, 2012 at 2:01 pm
Beyond the fact that NoLock is almost always a really bad idea, here's the data on it: http://msdn.microsoft.com/en-us/library/ms187373.aspx
Microsoft specifically states that NoLock (and Read Uncommitted) are ignored for the target...
October 18, 2012 at 1:59 pm
Peter Maloof (10/15/2012)
Also, some people say that if you want the job, you should explicitly...
October 18, 2012 at 1:16 pm
Don't let the advice about 24x7 turn you off of this too heavily. I've been on-call, 24x7, for the past 10 years, and it's only come up once when...
October 18, 2012 at 7:24 am
vinu512 (10/18/2012)
Eugene Elutin (10/18/2012)
October 18, 2012 at 7:01 am
The reason "AA" is not "larger" than "D" is because it works simply by ASCII sorting. D comes after AA alphabetically, so D > AA. That's why I...
October 18, 2012 at 6:59 am
What is the SSIS package accessing the same table for? To read values out of the inserted row?
If it's to read values out of the row, then what you...
October 18, 2012 at 6:29 am
I'll second the motion on 2 & 3.
A good addition to 2 would be to move tempdb onto a separate RAID array from the main production database. If you...
October 17, 2012 at 1:50 pm
stimetb (10/17/2012)
What happens if you have digits to right of decimal?declare @value3 integer
@value3 = 197.81
SELECT RIGHT('000'+CAST(CAST(@value3 AS INT) AS VARCHAR(7)),7)
gives value 000197
any help on this would be appreciated.
Do you...
October 17, 2012 at 12:02 pm
If the trigger is running forever, that means the package isn't returning control to the trigger. To find out where in the package this is hanging up, set up...
October 17, 2012 at 11:22 am
Viewing 15 posts - 661 through 675 (of 14,953 total)