Viewing 15 posts - 7,981 through 7,995 (of 14,953 total)
Happy Halloween, and have fun at the PASS Summit (wish I could be there, just didn't work out financially this year)!
October 29, 2009 at 11:45 am
I've seen one good implementation of Sharepoint, which ignored the workflow aspects entirely but made it very easy to keep project data in one place and share it effectively. ...
October 29, 2009 at 11:43 am
jjarupan (10/27/2009)
All can be done by set one computer...
October 29, 2009 at 11:36 am
skelly-806234 (10/27/2009)
October 29, 2009 at 11:32 am
Roy Ernest (10/28/2009)
October 29, 2009 at 7:35 am
One thing you could do in that case would be to do a version of log shipping. Do an hourly backup, full or diff or log (mainly this would...
October 29, 2009 at 7:14 am
1. I generally prefer to let the presentation layer do the presentation. That means set the web page or application to display money, and it'll do so. ...
October 29, 2009 at 7:06 am
Do the two people doing those queries need up-to-the-second data for what they're doing? Would hour-old data or last night's data work for their needs?
Alternately, have you checked to...
October 26, 2009 at 2:31 pm
I don't see DBA and BI as exclusive. I know less about BI than I do about other aspects of SQL, but that's merely due to what's been needed...
October 26, 2009 at 2:21 pm
I generally use performance monitor and traces for that kind of thing. Haven't bothered with a commercial tool.
October 26, 2009 at 2:14 pm
October 26, 2009 at 2:12 pm
There are a lot of factors that go into that kind of decision.
If the datacenter server is designed for any sort of load at all, two people running a few...
October 26, 2009 at 2:11 pm
Use row_number().
;with TopDates as
(select row_number() over (order by DateColumn desc) as Row, *
from dbo.MyTable)
select *
from TopDates
where Row<=2;
Or use Top (2).
select top 2...
October 26, 2009 at 9:29 am
I could be mistaken, but so far as I know, the whole idea of using something other than the default port number is to make it so you have to...
October 26, 2009 at 7:54 am
Is the pc on a domain? If so, you can control the security quite easily.
October 26, 2009 at 7:52 am
Viewing 15 posts - 7,981 through 7,995 (of 14,953 total)