|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Today @ 4:53 AM
Points: 19,
Visits: 93
|
|
i just know this must be a breeze if you have any type of experiance in t-sql, but i im a newbie im struggling with this...
all i want to do is have the results of:
select value from master.sys.configurations where name = 'max server memory (MB)'
and this query
select @@SERVERNAME
on the same row in the results...
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Today @ 2:23 PM
Points: 160,
Visits: 1,142
|
|
select @@SERVERNAME ,value from master.sys.configurations where name = 'max server memory (MB)'
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Friday, May 03, 2013 3:06 AM
Points: 42,
Visits: 285
|
|
| select @@SERVERNAME as "Server_Name" , value from master.sys.configurations where name = 'max server memory (MB)'
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Today @ 4:53 AM
Points: 19,
Visits: 93
|
|
thanks alot!
any tips on where i might learn the basics in t-sql?
/J
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Today @ 6:36 AM
Points: 192,
Visits: 406
|
|
MSDN and some books like SQL Server for dummies are good for the initial start .
|
|
|
|