Viewing 15 posts - 10,636 through 10,650 (of 22,213 total)
chumphrey 12211 (7/10/2012)
July 10, 2012 at 10:27 am
Nope. SQL Server doesn't store versioned information about the objects inside of it. There's no way to get that directly. My recommendation, put all your database T-SQL code into source...
July 10, 2012 at 3:28 am
Based on the names of the objects in your query, I'm assuming you're doing JOINS against views, not tables. That means any one view could actually be hitting multiple other...
July 10, 2012 at 2:55 am
Golfer22 (7/9/2012)
July 10, 2012 at 2:50 am
Yeah, don't use profiler.
Instead, use trace events which are all done in T-SQL code. It's pretty easy. Here's an article on how to do it[/url].
However, since you're working on...
July 10, 2012 at 2:44 am
if the transaction logs grew because the databases were in full recovery without a log backup, I'd say, yes, go ahead and do a shrink on them. Otherewise, they've grown...
July 10, 2012 at 2:33 am
It's basically using 'a' as it's starting point and bringing back anything that is greater than 'a'. That includes anything starting with 'a' but adding extra letters, so 'aa', 'aaa',...
July 10, 2012 at 2:31 am
From all the tests and production work I've done with compressed backups, the only down-side is a very minor increase in CPU usage during the backup or restore process. The...
July 10, 2012 at 2:28 am
The reason for this is that IN is effectively a series of OR statements checking for equality. Nothing equals NULL, so that data will never be returned. The 2nd post's...
July 9, 2012 at 8:51 am
Thanks for the feedback. It's always good to know what worked.
July 9, 2012 at 8:19 am
By the way guys, I never meant for the MCM to imply that the bearers knew everything. I just mean, I really trust the test. Anyone passing the entire thing...
July 8, 2012 at 12:23 pm
forefj (7/8/2012)
As I mentioned I don't want to post everything for privacy reasons and I would now have to go...
July 8, 2012 at 12:04 pm
Validate that the server is configured to make connections through IP. You can do this in the Configuration Manager (a separate app installed on the server or your desktop). But...
July 8, 2012 at 12:02 pm
And don't sweat the transaction log. Any uncompleted transactions have already been dealt with by the restore process. Just make sure you set up the next set of log backups...
July 8, 2012 at 5:07 am
Ramdas Baghel (7/4/2012)
What about Oracle App Certification or SAP Certification in respective my existing skills.?
That's all different stuff. Nothing at all wrong with Oracle or SAP, but I can't suggest...
July 8, 2012 at 4:58 am
Viewing 15 posts - 10,636 through 10,650 (of 22,213 total)