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 strongm 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: mudharan
  • Order by date
  1. mudharan

    need sql script to show object counts

    You can use the sql query below and instead of else you can add when conditions to get your count for the rest of object types. SELECT CASE WHEN type = 'P' Then 'Procedures' WHEN type = 'U' Then 'User Tables' WHEN type = 'S' Then 'System Tables'...
  2. mudharan

    How do I trim() a column?

    select ltrim(rtrim(field_name)) from table_name. [pc3]
  3. mudharan

    change database uid and password

    sp_password can change password syntax sp_password &quot;<old_pwd>&quot;, &quot;<new_pwd>&quot;,&quot;<user_name>&quot; user_name is optional.

Part and Inventory Search

Back
Top