|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 6:28 AM
Points: 15,
Visits: 68
|
|
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 @ 3:05 PM
Points: 150,
Visits: 1,022
|
|
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: Thursday, May 16, 2013 6:28 AM
Points: 15,
Visits: 68
|
|
thanks alot!
any tips on where i might learn the basics in t-sql?
/J
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 11:06 PM
Points: 179,
Visits: 380
|
|
MSDN and some books like SQL Server for dummies are good for the initial start .
|
|
|
|