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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: TWillard
  • Content: Threads
  • Order by date
  1. TWillard

    how to disable print output from within sp

    I have a tsql stored procedure that contains print statements. I was wondering if there is a tsql command that I can include in the stored procedure that would disable/enable these output statements? Sometimes, I want to see the output like when I am developing in the procedure. However, I...
  2. TWillard

    converting value of float out of exponential notation

    The following sql returns the following: "1E-07" How can I get the select @data to return the original value of '0.0000001' without the exponent being applied and displayed? DECLARE @data float SET @data = '0.0000001' select @data
  3. TWillard

    List Dependencies - Table Names within Query Definition

    I am working in an ms access environment with many tables and queries. It contains some linked tables and some access tables. The queries are built off of access tables, linked tables, and also other queries. I have vba code to loop through all query objects and display name, type, sql, etc...
  4. TWillard

    help with like query - table.column like '%table.column%' - ?

    Is there a way to use a like operator and both sides of the like equation are columns. Listed below are two examples of what I am thinking. Is there a way to achieve this logic in a standalone query, without having to write a script or procedure? select count(*) from table_a a where...
  5. TWillard

    execute oracle procedure from sql server tsql

    I am trying to execute an oracle pl/sql stored procedure from within sql server via tsql. I have used linked servers many times to perform selects and updates from sql server to and from oracle. I am looking for tsql syntax to call oracle procedure. Thank You.
  6. TWillard

    Help formulating totals - max min average on data sheet

    I have an excel sheet that has 52 columns and 4000+ rows. The data in the sheet is raw data. I would like to add three rows at the bottom of my sheet to display max, min, and averages per each column of data. I know that I can click on the function button and manually build a single function...
  7. TWillard

    form submit prompts undesired login?

    I have a form built within fp that sends an email. If I access the page with an administrator account, then the form submits fine. If I access the page with a non-admin account then I get a login prompt. If I hit cancel the non-admin receives the following: You are not authorized to view this...
  8. TWillard

    maintenance plan - change owner?

    How can I change the owner of a maintenance plan?
  9. TWillard

    Format Hyperlink - alias?

    Using Crystal 10.... I have a hyperlink value from a stored procedure. This field is formatted as a hyperlink in crystal using 'Current Website Field Value'. The hint states "This option will automatically create a hyperlink based on the data that is stored in the field in your data source."...
  10. TWillard

    New Fields added to Stored Procedure not visible in Crystal Fields

    I have a Crystal 10 Report that is executing a ms sql 2000 stored procedure. I modified the stored procedure by adding an additional column. The column was appended as the field in the select clause of the returning sql statement. This new field is not showing up in my report. I have tried...
  11. TWillard

    read image data with tsql

    I am working with the sharepoint database. The docs table has a column titled MetaInfo. It is of type image. Its contents are xml files that store the metadata information about the doucment. I would like to create a procedure that queries this column and extracts the contants into a...
  12. TWillard

    CREATE TABLE test Yes/No column

    I would like to create a table in access via a sql ddl statement. The sql will be executed from a SQL Server DTS package. I have it working provided that I use varchar column types. The varchar matches to access's Text. But I am not sure how to specifiy an Access Yes/No data type for access...
  13. TWillard

    dynamic restore script dbmp backup file

    In sql 2000, I would like to write my own restore script. I am using the dbmp to administer the database and transaction log backup dumps. What I would like is a script ready for on demand use, that will query the user or system database appropriate to obtain the last *.bak dump file and...
  14. TWillard

    SQL 2005 - security and visiblity of objects

    I have a sql 2005 instance. There are going to be multiple end users accessing a database on the server via windows authentication. I would like to restrict the access onto which objects they have visibility to. If I create odbc connections, by default the users see all the tables/views in...
  15. TWillard

    2005 Maintenance Plan - Script Out

    I have built a maintenace plan that is quite basic and generic. It is set to execute against all database on the server. It covers the basic functions backup, integrity and optimizations. I set all my basic servers databases to simple model and do not worry about the transaction log backups...
  16. TWillard

    Restore Database - time estimate or progress indicator

    I am getting ready to restore a 145 gig database. What are my best options for estimating the time it will take to complete the restore. This is a one time operation on a new server, so I do not have previous metrics to compare restore times against. I am aware of enterpise manager's restore...
  17. TWillard

    Document Library View - Column of doc full path?

    I have several document libraries that use folders for organization and classification. The folders are located at the root level under the document library name. Within each folder are the many documents. I am now looking at creating views for this document library. I want the result set...
  18. TWillard

    log shipping error with tuf file

    I am using log shipping via database maintence plans within SQL 2000 environment. The copy job and restore job are failing on my secondary server. The average size of the log shipped trn files is approximately 1 - 3 mb. Once a week, we rebuild the indexes and a 3 or 4 gig trn file will get...
  19. TWillard

    CDO.Message error puzzler

    I am getting the following error: error '80070008' Com Error Number :-2147024888--File Name :/email_CDO_remote_mail_server.asp--Error Line :5-- on line: Set ObjSendMail = CreateObject("CDO.Message") I have a fairly good knowledge of the cdo object and have used it multiple times. The asp...
  20. TWillard

    convert a tall table to a flat table - sql help

    I am trying query a tall table with sql and have the oupt appear as a flat result set for easier reporting. TALL table is what I have ------------------------- 1 a 2 b 3 a 4 a 5 c 6 d 7 e 8 f 9 g 10 a FLAT result set is what I desire --------------------------- 1 2 3 4 5 6 7 8 9 10 a...

Part and Inventory Search

Back
Top