Viewing 15 posts - 4,171 through 4,185 (of 5,394 total)
steveb. (6/16/2010)
Though this could all change under the Tories.
I don't want to disappoint you, but when a government changes, the government itself is most likely the only thing that...
June 16, 2010 at 9:14 am
I don't think it's possible.
SSMS stands for SQL Server Management Studio, the client tool used for queries and management.
June 16, 2010 at 9:06 am
20% is a standard threshold because NTFS starts degrading performance under 15% of free space.
I would recommend that percentage: it lets you discover problems before they arise.
June 16, 2010 at 8:57 am
You'll probably get the best help posting in the appropriate forum:
June 16, 2010 at 8:54 am
You can run multi-server queries with SSMS.
It's not the same as monitoring with the Job Monitor, but you can get the information in a result set.
June 16, 2010 at 8:52 am
Can you set up the linked server directly, usgin the teradata oledb provider?
Some ideas here:
http://weblogs.sqlteam.com/phils/archive/2005/11/30/8466.aspx
June 16, 2010 at 8:49 am
Steve Jones - Editor (6/16/2010)
Gianluca Sartori (6/16/2010)
Totally different subject: I get 1 notification every 10 or 20 posts on THE THREAD.Are you experiencing the same?
Maybe too many people subscribed.
I...
June 16, 2010 at 8:44 am
As far as I know it's not possible to force the use of comma as decimal separator in T-SQL code.
You can use it in SSMS to display data.
June 16, 2010 at 8:41 am
Duplicate post, no replies please.
Redirect here: http://www.sqlservercentral.com/Forums/FindPost938196.aspx
June 16, 2010 at 8:23 am
This makes things a little bit more complicated, but not impossible:
SELECT *
FROM msdb.dbo.sysjobschedules SJ
JOIN msdb.dbo.sysjobs S ON S.job_id...
June 16, 2010 at 8:11 am
You don't need to put the job_id equality condition inside the correlated subquery, since there's the ON clause to do that:
select *
from msdb.dbo.sysjobschedules SJ
...
June 16, 2010 at 7:20 am
You're not giving out much information...
Can't you avoid using DSNs?
June 16, 2010 at 7:14 am
You're not expecting somebody to look at all this code, are you?
Try to reduce the surface, or nobody will reasonably help you.
Take a look at the article linked in my...
June 16, 2010 at 7:12 am
ColdCoffee (6/16/2010)
select @user-id = USerID
where
firstname = SUBSTRING(@@UserName, 1, CHARINDEX(' ', @@UserName) - 1)
and lastname...
June 16, 2010 at 7:09 am
Viewing 15 posts - 4,171 through 4,185 (of 5,394 total)