Viewing 15 posts - 121 through 135 (of 216 total)
I have not heard of the corporate job that you could get a raise without doing this. Might make a good Editorial on it's own.
And here is it 😀
February 7, 2011 at 1:04 pm
Most people will exaggerate some points (or their employment agencies do it for them - in some situations I've even seen it actively encouraged).
Back in the late 80's I had...
February 7, 2011 at 9:11 am
The challenge we have in IT is to deliver toolsets that allow users access to data without having to anticipate every question that will potentially be asked of that data...
February 2, 2011 at 10:40 am
majorbloodnock (1/25/2011)
January 26, 2011 at 5:47 pm
So when i import the package, i should import the package to the SQL Server 2008 Clustered Virtual Name and then Create Jobs to run the packages. For this i...
January 10, 2011 at 2:51 pm
GilaMonster (12/16/2010)
Ownership chaining. Dynamic SQL of any form break that. Hence the 'permissions on base table' requirement if using any form of dynamic SQL.
It's that simple. Good to know, thanks.
Ken
December 16, 2010 at 2:46 pm
Watch the performance. Probably want an index on Datetime include Variable4 for this. No point in having Variable4 in the key, that predicate's not exactly SARGable.
This is actually data...
December 6, 2010 at 1:41 pm
GilaMonster (12/6/2010)
Select
Distinct RCD.Variable4
FROM Route_Call_Detail RCD
WHERE RCD.[DateTime] > '12/4/10'
AND RCD.[DateTime] < '12/5/10'
AND CASE WHEN SUBSTRING(RCD.Variable4, 1,...
December 6, 2010 at 1:02 pm
Lowell (12/6/2010)
because the second...
December 6, 2010 at 11:54 am
I think this could be a whole other forum discussion. "How much of your time is spent doing work other than coding and how much time do you think developers...
December 6, 2010 at 9:53 am
I'm into alternative rock but could not imagine trying to do anything but the easiest tasks at work if I had it in my headphones. Would be way too distracting.
Ken
December 3, 2010 at 12:02 pm
You might look into one of the note-taking softwares like SpringPad. You can write notes on the smartphone & it syncs, automagically, with the internet where you can read it...
November 19, 2010 at 12:51 pm
Michael Lysons (10/22/2010)
October 22, 2010 at 11:56 am
Brian, thanks a lot for these articles. So we bump the permissions of the guest account so that under the hood a connection can be made from calling DB to...
October 5, 2010 at 2:08 pm
You mean something like:
use db_1
create user ROuser1 for login ROuser1 --with default_schema = user1schema
create schema user1schema authorization ROuser1
create view user1schema.vwTest as select * from db_2.dbo.test
Seems that ROuser1 still needs access...
October 1, 2010 at 2:47 pm
Viewing 15 posts - 121 through 135 (of 216 total)