Welcome to WindowsAdvice Sign in | Join | Help

July 2005 - Posts

Sort of.

As you may (or may not) know, I live and work in the UK. In my previous job I worked with SMS and I still keep in touch with the online community I discovered. And it's through that community that I found this: http://spaces.msn.com/members/alfred/Blog/cns!1peScUDIRoEIsu-1YenjVb8w!301.entry .

At the end of September, Microsoft will putting on a "The Best of MMS" at their Reading campus, near where I live. It's a one-day event with what looks like to be some overview sessions of what SMS and MOM are capable of. I've already signed myself up for it and you can do the same here: https://msevents-eu.microsoft.com/cui/EventDetail.aspx?culture=en-GB&eventid=118761227 .

We've just done an Exchange 5.5 to 2003 migration. It was all set in motion before I arrived and for some reason the ADC (Active Directory Connector for Exchange 5.5) wasn't used.

The guy who did the migration over the weekend isn't in this week. He timed that very well as I've been dealing with the fall out.

I had a call yesterday from a user saying that my "From name" is wrong (the user, female, had got married since joining the company). It had to be picking it up from Active Directory, and as the user had no Display Name, Exchange was picking her name up from old Active Directory information. Giving her the right Display Name (in ADUC) solved that problem.

Had another today. A guy couldn't connect via POP - his authentication failed. I went into System Manager -> Servers -> <Server Name> , right click and "Properties" and to the "Diagnostics Logging" tab. I Chose "POP3Svc" from the left and set the logging level of all the right hand side entries to "Medium". Now Exchange started logging the guys login attempts.

One such log messages was:  "Authentication attempt from [IP address] to [email address] has failed with error 0x52e" . A search through Google Groups lead me to a posting on the 19 July from the SBS (Small Business Server) group that pointed in the direction of this knowledge article: http://support.microsoft.com/default.aspx?scid=kb;en-us;296387 . That was the clue that I needed; I had the guy try logging on with various usernames as I kept making changes in Active Directory. What eventually worked was changing the mailbox alias to his short-form username which then matched his pre-Windows 2000 username.

Something that I’ve talked about before is the similarity and the annoyances in the SQL tables and field names using in Queries and Web Reports.

Way back in October last year I saw some similarities and I wanted to investigate them further.

It wasn’t until February this year that a posting on the MSSMS list prompted me to have a look at the SQL table side of things and I confirmed my suspicions. This is what I posted to the list:

Firstly, as I've suspected for sometime, but haven't got round to fully investigating it, there seems to be a strong correlation between the table names available for reports and the sections available for reports.

I've just visually identified something. Try changing all instances of SMS_R_ to v_R_ , SMS_G_ to v_GS_ and that should get you looking at/pointing to the right tables.

Then you're going to have to change some of the field names: Some of the text fields may just need an '0' at the end. Some of the others require a bit of lateral thinking - i.e. it's not SMS_R_System.LastLogonUserName but v_R_System.User_Name0 .

It seems that it’s a good few of us who are interested in this aspect of SMS. Only recently did another poster email the MSSMS list wanting to know how to convert an SMS Query into a SMS Web Report. I posted the above and her reply was as follows:

I've done what you suggest and it does work. You just have to change the table names to the correct names and the field names to the correct names, but it's a long, manual process to match the two up (query field name and report field name, that is...).

I believe all fields in one table in the query are also in one table in the report. For instance, if the SMS_R_System table has 17 fields, the corresponding v_R_System will have the same 17 fields, even if they are named a bit differently. I don't think I've run across anything yet where I found a field in SMS_R_System that was not in the corresponding v_R_System, but in v_R_Something_Else.

So there you go. Investigate everything in SMS, because you never know who else might be thinking along the same lines  .