Viewing 15 posts - 76 through 90 (of 163 total)
Forget the missing index results for now and focus on working through the two articles Gail posted. Adding missing indexes is great and all but what if the real...
January 10, 2012 at 12:11 pm
I see what you're looking for now. Sounds like Paul's solution will work.
January 6, 2012 at 12:41 pm
Is the backup part of a job or maintenance plan? Might be easier to notify you via email when the backup completes. Never used a 3rd party backup...
January 6, 2012 at 11:56 am
I've seen stuff like this before. It can be a real pain in the butt to manage and locate the objects you need when their scattered all over a...
January 5, 2012 at 1:31 pm
Data and log files on a network share is not possible by default. See if this helps.
January 4, 2012 at 3:06 pm
Product_Interest is a character column(char, nchar etc.). Are you mixing numeric and character data together? Probably a bad idea.
Try to put single quotes around the 0.
select *
from customers.dbo.lead
where...
January 4, 2012 at 2:36 pm
captcooldaddy (1/4/2012)
So how do i unhash it?
From my understanding of how that would work, you wouldn't. If you wanted to see if a typed password matched what was hashed...
January 4, 2012 at 2:30 pm
GilaMonster (1/4/2012)
So store them hashed and tell him they're encrypted. It's not a big lie.
LOL, that's a good idea.
January 4, 2012 at 1:41 pm
Sean and Michael touched on where I was going with my last question. If the datepart function returns data that doesn't match your company's definition of a week then...
January 4, 2012 at 1:36 pm
Err, never mind. Lowell beat me to it. My solution doesn't take into consideration duplicate IncidentID's. Not sure if they will repeat or not.
Is this what you're...
January 4, 2012 at 1:16 pm
Do your weeks start on Sunday then? So 1/1/2011 was in week 52, not week 1?
January 4, 2012 at 12:55 pm
Oh, I see what you're talking about now. That's the equivalent of this.
select datepart(wk,'12/25/2011')
Do you want iso_week instead?
Select datepart(iso_week,(Select SalesWeekStart from fn_PrevSalesWeek(getdate())))
January 4, 2012 at 12:42 pm
I have only played around with partitioning on a local database, never in a production environment. It may be best if I just point you in the direction of...
January 4, 2012 at 12:26 pm
May have to explain more for someone to help you out. Sample data, ddl scripts, and expected output help. Hard to say without seeing under the hood...
January 4, 2012 at 12:14 pm
Have you looked into table partitioning? Or are you like me, stuck on standard edition?
January 4, 2012 at 12:00 pm
Viewing 15 posts - 76 through 90 (of 163 total)