Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dddenney

  1. dddenney

    Can only sysadmin check job history?

    You can add them to the SQLAgentReaderRole database role in the MSDB database. HTH, Dan
  2. dddenney

    SSIS & SQL SVR 2008 Developer Edition

    SQL Server 2008 Developer Edition does come with SSIS (although, its possible it wasn't selected during the install). It also sounds like Visual Studio Business Intelligence Development Studio (BIDS) wasn't install either. As long as you have the install files you can still install the...
  3. dddenney

    Migrate customer web page to Production

    Is there a way to deploy a custom web page created in SharePoint designer on a development SharePoint server to our production SharePoint server? We are using WSS 3.0 and Sql 2005. Thanks in advance, Dan
  4. dddenney

    Random sample of 5 records per user

    I need to figure out a way to pull a random sample of 5 calls per day per user. TableA (ID INT, UserID INT, CallDate DATETIME, CallDesc VARCHAR(100)) So far: select userid, callDesc from TableA where callDate between yesterday and today order by NEWID() But how can I pull just 5 recs per...
  5. dddenney

    Reporting Services - max simultaneous reports

    Thanks Jay. Most of our reporting services reports are actually hitting an Oracle database on the backend. One of our report developers thought that Reporting Services would only allow so many active reports to run at the same, before reports started getting queued pending completion of...
  6. dddenney

    Reporting Services - max simultaneous reports

    I was wondering if anyone knew if there was a limit on the number of reports run through Reporting Services (both scheduled and user run), before it either starts queueing reports or something else. Or is there even a limit (other than resources)? This is for Sql Server Standard 2005 SP2...
  7. dddenney

    Modifying a system stored procedure

    A little background: I am not in the habit of modifying system stored procedures, but this particular Sql 2005 server is used by a third party tool. The problem is that the client app for this tool uses the sp_addlogin system SP to create logins on the server. However, the password it is...
  8. dddenney

    Modifying a system stored procedure

    I am trying to modify the system stored procedure sp_addlogin, but getting the following error: "Msg 208, Level 16, State 6, Procedure sp_addlogin, Line 73 Invalid object name 'sys.sp_addlogin'." I can obviously see and open the stored procedure in Management Studio but not alter it using the...
  9. dddenney

    Execute a stored procedure from within a query

    Thank you! I'm not sure why I didn't think of that in the first place.
  10. dddenney

    Execute a stored procedure from within a query

    Is it possible to execute a store procedure from with in a query? Example of what I would like to do: select emp_id, last_name, first_name, (exec sp_Get_Overall_Incentive_Score @emp_id = em.emp_id) as score from employee_master as em where term = 0 Thanks in advance for the help, Dan
  11. dddenney

    SP won't compile w/ "Incorrect syntax near the keyword ORDER" error

    I have the following SP I am trying to create... create Proc procDirectoryFilter ( @Filter nvarchar(1) ) AS ( SELECT * FROM Users WHERE SUBSTRING(LOWER(LName), 1, 1)=@Filter ORDER BY LName ) Everytime I try to compile it in Query Analyzer, it...
  12. dddenney

    Database Structure

    Thanks again gradley. This will be a huge help. I'll make sure to read up on the Information_Schema info. Thanks!
  13. dddenney

    Database Structure

    Any way to print out a list of all the stored procedures (and there parameters if possible)? I'm taking over for someone who didn't leave any documentation.
  14. dddenney

    Database Structure

    Thanks gradley! Exactly what I needed.

Part and Inventory Search

Back
Top