Viewing 15 posts - 7,336 through 7,350 (of 9,643 total)
I've never understood hoarding information so your job is secure. I spent 9 years supporting a manufacturing facility through 2 owners and had call that varied from every 3rd...
October 1, 2008 at 8:30 am
dcorbitt (10/1/2008)
Now all we need is someone named Ian Corb[e/i]tt to chime in, with all the Ians and Corbetts on this one.
Yeah, what is upperbognor doing on this thread?
October 1, 2008 at 8:22 am
Performing self-joins should not be any slower than joining on other tables as long as you have appropriate indexes. Also check out this article about PIVOT: http://www.sqlservercentral.com/articles/T-SQL/63681/
October 1, 2008 at 7:59 am
You can modify the trace using the sp_trace_* procedures. You would need to get the trace id from sys.traces, stop the trace using sp_trace_setstatus, and then add and enable...
October 1, 2008 at 7:52 am
Here's how I do it. If I know the column is a fixed size I used char otherwise I use varchar. I've heard the argument that smaller columns...
October 1, 2008 at 7:43 am
You can run this code within the specific database:
Select
P.name as username,
RP.name as role_name
from
sys.database_role_members R Join
sys.database_principals RP On
R.role_principal_id = RP.principal_id Join
sys.database_principals P On
R.member_principal_id = P.principal_id
Where
RP.name = 'db_owner'
October 1, 2008 at 7:23 am
Assuming the text files are all in the same location you can use a ForEach container and you would use the foreach file enumerator. You would place the file...
October 1, 2008 at 7:16 am
I don't know of an easier way to do this. You would need to create a policy and the policy would need to have some teeth.
October 1, 2008 at 7:11 am
While Vladan is probably correct in noting that there is probably a simpler, better way to do this I will attempt to answer your question. I think you need...
October 1, 2008 at 7:07 am
When you go to the security tab of the linked server in SSMS what is there? You either need to provide a mapping in the top area or select...
October 1, 2008 at 7:02 am
Sure you can concatenate first name and last name in a stored procedure just like you have done it in this post.
October 1, 2008 at 6:59 am
rbarryyoung (9/30/2008)
September 30, 2008 at 6:11 pm
GSquared (9/30/2008)
My current manager likes to joke about his "prequel" skills....
September 30, 2008 at 12:49 pm
Lynn Pettis (9/30/2008)
Jack Corbett (9/30/2008)
Jo Pattyn (9/30/2008)
Business Intelligence. Trying to get more usefull information out of your data.
Sorry, my question was meant to be funny. I do know what...
September 30, 2008 at 12:47 pm
Viewing 15 posts - 7,336 through 7,350 (of 9,643 total)