Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
nice123ej
Starting Member
48 Posts |
Posted - 2009-01-16 : 09:21:08
|
| HiI am trying to execute this sqlSELECT OBJECT_DEFINITION (object_id)from sys.objectswhere type in ('P','FN','TR')the problem is the result will be long textbut when i run it in Management Studio 2005so the result i get is truncated!how can i get the full text? |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-01-16 : 09:24:15
|
change the number of characters displayed in management studio by going to tools->options->queryresults. Also if its really long use results to grid and copy and paste to new window.you can also use the below if sql 2005SELECT * FROM sys.sql_modules |
 |
|
|
|
|
|