Bonjour,
Comment peut-on vérifier la version du Service Pack Analysis Services
installé ?
Merci,
RedRag
Bonjour,
Comment peut-on vérifier la version du Service Pack Analysis Services
installé ?
Merci,
RedRag
Bonjour,
Comment peut-on vérifier la version du Service Pack Analysis Services
installé ?
Merci,
RedRag
Bonjour,
Via DSO :
Public Sub ConnectToServer()
Dim dsoServer As DSO.Server
On Error GoTo ErrHandler
' Initialize server.
Set dsoServer = New DSO.Server
' Connect to the local Analysis server.
' If a connection cannot be made, an error is raised.
dsoServer.Connect "LocalHost"
' Print server properties to the Debug window.
With dsoServer
Debug.Print "Server Properties --------------------------"
Debug.Print "Name: " & .Name
Debug.Print "Description: " & .Description
Debug.Print "ConnectTimeout: " & .ConnectTimeout
Debug.Print "LockTimeout: " & .LockTimeout
Debug.Print "Version: " & .Version
End With
' Close connection to server.
dsoServer.CloseServer
ExitRoutine:
Set dsoServer = Nothing
Exit Sub
ErrHandler:
Debug.Print "Error connecting to server:"
Debug.Print Err.Number, Err.Description, Err.Source
End Sub
Phil.
________________________________________________________
Philippe TROTIN http://blogs.msdn.com/ptrotin
Microsoft Services France http://www.microsoft.com/france
"Red Rag" wrote in message
news:
> Bonjour,
> Comment peut-on vérifier la version du Service Pack Analysis Services
> installé ?
>
> Merci,
>
> RedRag
>
>
>
Bonjour,
Via DSO :
Public Sub ConnectToServer()
Dim dsoServer As DSO.Server
On Error GoTo ErrHandler
' Initialize server.
Set dsoServer = New DSO.Server
' Connect to the local Analysis server.
' If a connection cannot be made, an error is raised.
dsoServer.Connect "LocalHost"
' Print server properties to the Debug window.
With dsoServer
Debug.Print "Server Properties --------------------------"
Debug.Print "Name: " & .Name
Debug.Print "Description: " & .Description
Debug.Print "ConnectTimeout: " & .ConnectTimeout
Debug.Print "LockTimeout: " & .LockTimeout
Debug.Print "Version: " & .Version
End With
' Close connection to server.
dsoServer.CloseServer
ExitRoutine:
Set dsoServer = Nothing
Exit Sub
ErrHandler:
Debug.Print "Error connecting to server:"
Debug.Print Err.Number, Err.Description, Err.Source
End Sub
Phil.
________________________________________________________
Philippe TROTIN http://blogs.msdn.com/ptrotin
Microsoft Services France http://www.microsoft.com/france
"Red Rag" <RedRag@libre.fr> wrote in message
news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
> Bonjour,
> Comment peut-on vérifier la version du Service Pack Analysis Services
> installé ?
>
> Merci,
>
> RedRag
>
>
>
Bonjour,
Via DSO :
Public Sub ConnectToServer()
Dim dsoServer As DSO.Server
On Error GoTo ErrHandler
' Initialize server.
Set dsoServer = New DSO.Server
' Connect to the local Analysis server.
' If a connection cannot be made, an error is raised.
dsoServer.Connect "LocalHost"
' Print server properties to the Debug window.
With dsoServer
Debug.Print "Server Properties --------------------------"
Debug.Print "Name: " & .Name
Debug.Print "Description: " & .Description
Debug.Print "ConnectTimeout: " & .ConnectTimeout
Debug.Print "LockTimeout: " & .LockTimeout
Debug.Print "Version: " & .Version
End With
' Close connection to server.
dsoServer.CloseServer
ExitRoutine:
Set dsoServer = Nothing
Exit Sub
ErrHandler:
Debug.Print "Error connecting to server:"
Debug.Print Err.Number, Err.Description, Err.Source
End Sub
Phil.
________________________________________________________
Philippe TROTIN http://blogs.msdn.com/ptrotin
Microsoft Services France http://www.microsoft.com/france
"Red Rag" wrote in message
news:
> Bonjour,
> Comment peut-on vérifier la version du Service Pack Analysis Services
> installé ?
>
> Merci,
>
> RedRag
>
>
>
Merci Philippe,
Mais je suis tout à fait débutant dans Analysis Services ! Comment accède
t-on à l'interface de programmation de DSO ?
Merci encore,
Red Rag
"Philippe T [MS]" a écrit dans le message
news:
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" wrote in message
> news:
> > Bonjour,
> > Comment peut-on vérifier la version du Service Pack Analysis Services
> > installé ?
> >
> > Merci,
> >
> > RedRag
> >
> >
> >
>
>
Merci Philippe,
Mais je suis tout à fait débutant dans Analysis Services ! Comment accède
t-on à l'interface de programmation de DSO ?
Merci encore,
Red Rag
"Philippe T [MS]" <ptrotin@online.microsoft.com> a écrit dans le message
news:OoxmZoMBFHA.3596@TK2MSFTNGP12.phx.gbl...
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" <RedRag@libre.fr> wrote in message
> news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
> > Bonjour,
> > Comment peut-on vérifier la version du Service Pack Analysis Services
> > installé ?
> >
> > Merci,
> >
> > RedRag
> >
> >
> >
>
>
Merci Philippe,
Mais je suis tout à fait débutant dans Analysis Services ! Comment accède
t-on à l'interface de programmation de DSO ?
Merci encore,
Red Rag
"Philippe T [MS]" a écrit dans le message
news:
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" wrote in message
> news:
> > Bonjour,
> > Comment peut-on vérifier la version du Service Pack Analysis Services
> > installé ?
> >
> > Merci,
> >
> > RedRag
> >
> >
> >
>
>
Bonjour,
Via DSO :
Public Sub ConnectToServer()
Dim dsoServer As DSO.Server
On Error GoTo ErrHandler
' Initialize server.
Set dsoServer = New DSO.Server
' Connect to the local Analysis server.
' If a connection cannot be made, an error is raised.
dsoServer.Connect "LocalHost"
' Print server properties to the Debug window.
With dsoServer
Debug.Print "Server Properties --------------------------"
Debug.Print "Name: " & .Name
Debug.Print "Description: " & .Description
Debug.Print "ConnectTimeout: " & .ConnectTimeout
Debug.Print "LockTimeout: " & .LockTimeout
Debug.Print "Version: " & .Version
End With
' Close connection to server.
dsoServer.CloseServer
ExitRoutine:
Set dsoServer = Nothing
Exit Sub
ErrHandler:
Debug.Print "Error connecting to server:"
Debug.Print Err.Number, Err.Description, Err.Source
End Sub
Phil.
________________________________________________________
Philippe TROTIN http://blogs.msdn.com/ptrotin
Microsoft Services France http://www.microsoft.com/france
"Red Rag" wrote in message
news:Bonjour,
Comment peut-on vérifier la version du Service Pack Analysis Services
installé ?
Merci,
RedRag
Bonjour,
Via DSO :
Public Sub ConnectToServer()
Dim dsoServer As DSO.Server
On Error GoTo ErrHandler
' Initialize server.
Set dsoServer = New DSO.Server
' Connect to the local Analysis server.
' If a connection cannot be made, an error is raised.
dsoServer.Connect "LocalHost"
' Print server properties to the Debug window.
With dsoServer
Debug.Print "Server Properties --------------------------"
Debug.Print "Name: " & .Name
Debug.Print "Description: " & .Description
Debug.Print "ConnectTimeout: " & .ConnectTimeout
Debug.Print "LockTimeout: " & .LockTimeout
Debug.Print "Version: " & .Version
End With
' Close connection to server.
dsoServer.CloseServer
ExitRoutine:
Set dsoServer = Nothing
Exit Sub
ErrHandler:
Debug.Print "Error connecting to server:"
Debug.Print Err.Number, Err.Description, Err.Source
End Sub
Phil.
________________________________________________________
Philippe TROTIN http://blogs.msdn.com/ptrotin
Microsoft Services France http://www.microsoft.com/france
"Red Rag" <RedRag@libre.fr> wrote in message
news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
Bonjour,
Comment peut-on vérifier la version du Service Pack Analysis Services
installé ?
Merci,
RedRag
Bonjour,
Via DSO :
Public Sub ConnectToServer()
Dim dsoServer As DSO.Server
On Error GoTo ErrHandler
' Initialize server.
Set dsoServer = New DSO.Server
' Connect to the local Analysis server.
' If a connection cannot be made, an error is raised.
dsoServer.Connect "LocalHost"
' Print server properties to the Debug window.
With dsoServer
Debug.Print "Server Properties --------------------------"
Debug.Print "Name: " & .Name
Debug.Print "Description: " & .Description
Debug.Print "ConnectTimeout: " & .ConnectTimeout
Debug.Print "LockTimeout: " & .LockTimeout
Debug.Print "Version: " & .Version
End With
' Close connection to server.
dsoServer.CloseServer
ExitRoutine:
Set dsoServer = Nothing
Exit Sub
ErrHandler:
Debug.Print "Error connecting to server:"
Debug.Print Err.Number, Err.Description, Err.Source
End Sub
Phil.
________________________________________________________
Philippe TROTIN http://blogs.msdn.com/ptrotin
Microsoft Services France http://www.microsoft.com/france
"Red Rag" wrote in message
news:Bonjour,
Comment peut-on vérifier la version du Service Pack Analysis Services
installé ?
Merci,
RedRag
Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
code similaire au tiens pour afficher la version
Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
est à jour
A tester...avec différents SP
--
Bien cordialement
Med Bouchenafa
"Philippe T [MS]" a écrit dans le message
news:
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" wrote in message
> news:
>> Bonjour,
>> Comment peut-on vérifier la version du Service Pack Analysis Services
>> installé ?
>>
>> Merci,
>>
>> RedRag
>>
>>
>>
>
>
Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
code similaire au tiens pour afficher la version
Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
est à jour
A tester...avec différents SP
--
Bien cordialement
Med Bouchenafa
"Philippe T [MS]" <ptrotin@online.microsoft.com> a écrit dans le message
news: OoxmZoMBFHA.3596@TK2MSFTNGP12.phx.gbl...
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" <RedRag@libre.fr> wrote in message
> news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
>> Bonjour,
>> Comment peut-on vérifier la version du Service Pack Analysis Services
>> installé ?
>>
>> Merci,
>>
>> RedRag
>>
>>
>>
>
>
Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
code similaire au tiens pour afficher la version
Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
est à jour
A tester...avec différents SP
--
Bien cordialement
Med Bouchenafa
"Philippe T [MS]" a écrit dans le message
news:
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" wrote in message
> news:
>> Bonjour,
>> Comment peut-on vérifier la version du Service Pack Analysis Services
>> installé ?
>>
>> Merci,
>>
>> RedRag
>>
>>
>>
>
>
Bonjour Med,
Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
(SP3).
Le Service Pack est bien explicité.
Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel SP
s'agit-il ?
Merci
Red Rag
"Med Bouchenafa" a écrit dans le message de
news:Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
uncode similaire au tiens pour afficher la version
Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
est à jour
A tester...avec différents SP
--
Bien cordialement
Med Bouchenafa
"Philippe T [MS]" a écrit dans le message
denews:
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" wrote in message
> news:
>> Bonjour,
>> Comment peut-on vérifier la version du Service Pack Analysis Services
>> installé ?
>>
>> Merci,
>>
>> RedRag
>>
>>
>>
>
>
Bonjour Med,
Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
(SP3).
Le Service Pack est bien explicité.
Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel SP
s'agit-il ?
Merci
Red Rag
"Med Bouchenafa" <com.hotmail@bouchenafa> a écrit dans le message de
news:ej3SjvRBFHA.3824@TK2MSFTNGP10.phx.gbl...
Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
un
code similaire au tiens pour afficher la version
Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
est à jour
A tester...avec différents SP
--
Bien cordialement
Med Bouchenafa
"Philippe T [MS]" <ptrotin@online.microsoft.com> a écrit dans le message
de
news: OoxmZoMBFHA.3596@TK2MSFTNGP12.phx.gbl...
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" <RedRag@libre.fr> wrote in message
> news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
>> Bonjour,
>> Comment peut-on vérifier la version du Service Pack Analysis Services
>> installé ?
>>
>> Merci,
>>
>> RedRag
>>
>>
>>
>
>
Bonjour Med,
Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
(SP3).
Le Service Pack est bien explicité.
Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel SP
s'agit-il ?
Merci
Red Rag
"Med Bouchenafa" a écrit dans le message de
news:Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
uncode similaire au tiens pour afficher la version
Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
est à jour
A tester...avec différents SP
--
Bien cordialement
Med Bouchenafa
"Philippe T [MS]" a écrit dans le message
denews:
> Bonjour,
>
> Via DSO :
>
> Public Sub ConnectToServer()
> Dim dsoServer As DSO.Server
>
> On Error GoTo ErrHandler
>
> ' Initialize server.
> Set dsoServer = New DSO.Server
>
> ' Connect to the local Analysis server.
> ' If a connection cannot be made, an error is raised.
> dsoServer.Connect "LocalHost"
>
> ' Print server properties to the Debug window.
> With dsoServer
> Debug.Print "Server Properties --------------------------"
> Debug.Print "Name: " & .Name
> Debug.Print "Description: " & .Description
> Debug.Print "ConnectTimeout: " & .ConnectTimeout
> Debug.Print "LockTimeout: " & .LockTimeout
> Debug.Print "Version: " & .Version
> End With
>
> ' Close connection to server.
> dsoServer.CloseServer
>
> ExitRoutine:
> Set dsoServer = Nothing
> Exit Sub
>
> ErrHandler:
> Debug.Print "Error connecting to server:"
> Debug.Print Err.Number, Err.Description, Err.Source
> End Sub
>
>
>
> Phil.
> ________________________________________________________
> Philippe TROTIN http://blogs.msdn.com/ptrotin
> Microsoft Services France http://www.microsoft.com/france
>
> "Red Rag" wrote in message
> news:
>> Bonjour,
>> Comment peut-on vérifier la version du Service Pack Analysis Services
>> installé ?
>>
>> Merci,
>>
>> RedRag
>>
>>
>>
>
>
http://www.frenchsql.com/Default.aspx?page
--
Bien cordialement
Med Bouchenafa
"Red Rag" a écrit dans le message de news:
> Bonjour Med,
> Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> (SP3).
> Le Service Pack est bien explicité.
> Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel
> s'agit-il ?
>
> Merci
> Red Rag
>
> "Med Bouchenafa" a écrit dans le message de
> news:
>> Le menu de "Au sujet de..." de Analysis Manager doit certainement
> un
>> code similaire au tiens pour afficher la version
>> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
>> est à jour
>> A tester...avec différents SP
>>
>> --
>> Bien cordialement
>> Med Bouchenafa
>>
>>
>> "Philippe T [MS]" a écrit dans le
> de
>> news:
>> > Bonjour,
>> >
>> > Via DSO :
>> >
>> > Public Sub ConnectToServer()
>> > Dim dsoServer As DSO.Server
>> >
>> > On Error GoTo ErrHandler
>> >
>> > ' Initialize server.
>> > Set dsoServer = New DSO.Server
>> >
>> > ' Connect to the local Analysis server.
>> > ' If a connection cannot be made, an error is raised.
>> > dsoServer.Connect "LocalHost"
>> >
>> > ' Print server properties to the Debug window.
>> > With dsoServer
>> > Debug.Print "Server Properties --------------------------"
>> > Debug.Print "Name: " & .Name
>> > Debug.Print "Description: " & .Description
>> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
>> > Debug.Print "LockTimeout: " & .LockTimeout
>> > Debug.Print "Version: " & .Version
>> > End With
>> >
>> > ' Close connection to server.
>> > dsoServer.CloseServer
>> >
>> > ExitRoutine:
>> > Set dsoServer = Nothing
>> > Exit Sub
>> >
>> > ErrHandler:
>> > Debug.Print "Error connecting to server:"
>> > Debug.Print Err.Number, Err.Description, Err.Source
>> > End Sub
>> >
>> >
>> >
>> > Phil.
>> > ________________________________________________________
>> > Philippe TROTIN
>> > Microsoft Services France http://www.microsoft.com/france
>> >
>> > "Red Rag" wrote in message
>> > news:
>> >> Bonjour,
>> >> Comment peut-on vérifier la version du Service Pack Analysis
>> >> installé ?
>> >>
>> >> Merci,
>> >>
>> >> RedRag
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
>
http://www.frenchsql.com/Default.aspx?page
--
Bien cordialement
Med Bouchenafa
"Red Rag" <RedRag@libre.fr> a écrit dans le message de news:
uxRBv3RBFHA.824@TK2MSFTNGP11.phx.gbl...
> Bonjour Med,
> Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> (SP3).
> Le Service Pack est bien explicité.
> Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel
> s'agit-il ?
>
> Merci
> Red Rag
>
> "Med Bouchenafa" <com.hotmail@bouchenafa> a écrit dans le message de
> news:ej3SjvRBFHA.3824@TK2MSFTNGP10.phx.gbl...
>> Le menu de "Au sujet de..." de Analysis Manager doit certainement
> un
>> code similaire au tiens pour afficher la version
>> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
>> est à jour
>> A tester...avec différents SP
>>
>> --
>> Bien cordialement
>> Med Bouchenafa
>>
>>
>> "Philippe T [MS]" <ptrotin@online.microsoft.com> a écrit dans le
> de
>> news: OoxmZoMBFHA.3596@TK2MSFTNGP12.phx.gbl...
>> > Bonjour,
>> >
>> > Via DSO :
>> >
>> > Public Sub ConnectToServer()
>> > Dim dsoServer As DSO.Server
>> >
>> > On Error GoTo ErrHandler
>> >
>> > ' Initialize server.
>> > Set dsoServer = New DSO.Server
>> >
>> > ' Connect to the local Analysis server.
>> > ' If a connection cannot be made, an error is raised.
>> > dsoServer.Connect "LocalHost"
>> >
>> > ' Print server properties to the Debug window.
>> > With dsoServer
>> > Debug.Print "Server Properties --------------------------"
>> > Debug.Print "Name: " & .Name
>> > Debug.Print "Description: " & .Description
>> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
>> > Debug.Print "LockTimeout: " & .LockTimeout
>> > Debug.Print "Version: " & .Version
>> > End With
>> >
>> > ' Close connection to server.
>> > dsoServer.CloseServer
>> >
>> > ExitRoutine:
>> > Set dsoServer = Nothing
>> > Exit Sub
>> >
>> > ErrHandler:
>> > Debug.Print "Error connecting to server:"
>> > Debug.Print Err.Number, Err.Description, Err.Source
>> > End Sub
>> >
>> >
>> >
>> > Phil.
>> > ________________________________________________________
>> > Philippe TROTIN
>> > Microsoft Services France http://www.microsoft.com/france
>> >
>> > "Red Rag" <RedRag@libre.fr> wrote in message
>> > news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
>> >> Bonjour,
>> >> Comment peut-on vérifier la version du Service Pack Analysis
>> >> installé ?
>> >>
>> >> Merci,
>> >>
>> >> RedRag
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
>
http://www.frenchsql.com/Default.aspx?page
--
Bien cordialement
Med Bouchenafa
"Red Rag" a écrit dans le message de news:
> Bonjour Med,
> Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> (SP3).
> Le Service Pack est bien explicité.
> Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel
> s'agit-il ?
>
> Merci
> Red Rag
>
> "Med Bouchenafa" a écrit dans le message de
> news:
>> Le menu de "Au sujet de..." de Analysis Manager doit certainement
> un
>> code similaire au tiens pour afficher la version
>> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
>> est à jour
>> A tester...avec différents SP
>>
>> --
>> Bien cordialement
>> Med Bouchenafa
>>
>>
>> "Philippe T [MS]" a écrit dans le
> de
>> news:
>> > Bonjour,
>> >
>> > Via DSO :
>> >
>> > Public Sub ConnectToServer()
>> > Dim dsoServer As DSO.Server
>> >
>> > On Error GoTo ErrHandler
>> >
>> > ' Initialize server.
>> > Set dsoServer = New DSO.Server
>> >
>> > ' Connect to the local Analysis server.
>> > ' If a connection cannot be made, an error is raised.
>> > dsoServer.Connect "LocalHost"
>> >
>> > ' Print server properties to the Debug window.
>> > With dsoServer
>> > Debug.Print "Server Properties --------------------------"
>> > Debug.Print "Name: " & .Name
>> > Debug.Print "Description: " & .Description
>> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
>> > Debug.Print "LockTimeout: " & .LockTimeout
>> > Debug.Print "Version: " & .Version
>> > End With
>> >
>> > ' Close connection to server.
>> > dsoServer.CloseServer
>> >
>> > ExitRoutine:
>> > Set dsoServer = Nothing
>> > Exit Sub
>> >
>> > ErrHandler:
>> > Debug.Print "Error connecting to server:"
>> > Debug.Print Err.Number, Err.Description, Err.Source
>> > End Sub
>> >
>> >
>> >
>> > Phil.
>> > ________________________________________________________
>> > Philippe TROTIN
>> > Microsoft Services France http://www.microsoft.com/france
>> >
>> > "Red Rag" wrote in message
>> > news:
>> >> Bonjour,
>> >> Comment peut-on vérifier la version du Service Pack Analysis
>> >> installé ?
>> >>
>> >> Merci,
>> >>
>> >> RedRag
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
>
http://www.frenchsql.com/Default.aspx?page
--
Bien cordialement
Med Bouchenafa
"Red Rag" a écrit dans le message de news:
> Bonjour Med,
> Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> (SP3).
> Le Service Pack est bien explicité.
> Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel SP
> s'agit-il ?
>
> Merci
> Red Rag
>
> "Med Bouchenafa" a écrit dans le message de
> news:
>> Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
> un
>> code similaire au tiens pour afficher la version
>> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
>> est à jour
>> A tester...avec différents SP
>>
>> --
>> Bien cordialement
>> Med Bouchenafa
>>
>>
>> "Philippe T [MS]" a écrit dans le message
> de
>> news:
>> > Bonjour,
>> >
>> > Via DSO :
>> >
>> > Public Sub ConnectToServer()
>> > Dim dsoServer As DSO.Server
>> >
>> > On Error GoTo ErrHandler
>> >
>> > ' Initialize server.
>> > Set dsoServer = New DSO.Server
>> >
>> > ' Connect to the local Analysis server.
>> > ' If a connection cannot be made, an error is raised.
>> > dsoServer.Connect "LocalHost"
>> >
>> > ' Print server properties to the Debug window.
>> > With dsoServer
>> > Debug.Print "Server Properties --------------------------"
>> > Debug.Print "Name: " & .Name
>> > Debug.Print "Description: " & .Description
>> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
>> > Debug.Print "LockTimeout: " & .LockTimeout
>> > Debug.Print "Version: " & .Version
>> > End With
>> >
>> > ' Close connection to server.
>> > dsoServer.CloseServer
>> >
>> > ExitRoutine:
>> > Set dsoServer = Nothing
>> > Exit Sub
>> >
>> > ErrHandler:
>> > Debug.Print "Error connecting to server:"
>> > Debug.Print Err.Number, Err.Description, Err.Source
>> > End Sub
>> >
>> >
>> >
>> > Phil.
>> > ________________________________________________________
>> > Philippe TROTIN http://blogs.msdn.com/ptrotin
>> > Microsoft Services France http://www.microsoft.com/france
>> >
>> > "Red Rag" wrote in message
>> > news:
>> >> Bonjour,
>> >> Comment peut-on vérifier la version du Service Pack Analysis Services
>> >> installé ?
>> >>
>> >> Merci,
>> >>
>> >> RedRag
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
>
http://www.frenchsql.com/Default.aspx?page
--
Bien cordialement
Med Bouchenafa
"Red Rag" <RedRag@libre.fr> a écrit dans le message de news:
uxRBv3RBFHA.824@TK2MSFTNGP11.phx.gbl...
> Bonjour Med,
> Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> (SP3).
> Le Service Pack est bien explicité.
> Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel SP
> s'agit-il ?
>
> Merci
> Red Rag
>
> "Med Bouchenafa" <com.hotmail@bouchenafa> a écrit dans le message de
> news:ej3SjvRBFHA.3824@TK2MSFTNGP10.phx.gbl...
>> Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
> un
>> code similaire au tiens pour afficher la version
>> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
>> est à jour
>> A tester...avec différents SP
>>
>> --
>> Bien cordialement
>> Med Bouchenafa
>>
>>
>> "Philippe T [MS]" <ptrotin@online.microsoft.com> a écrit dans le message
> de
>> news: OoxmZoMBFHA.3596@TK2MSFTNGP12.phx.gbl...
>> > Bonjour,
>> >
>> > Via DSO :
>> >
>> > Public Sub ConnectToServer()
>> > Dim dsoServer As DSO.Server
>> >
>> > On Error GoTo ErrHandler
>> >
>> > ' Initialize server.
>> > Set dsoServer = New DSO.Server
>> >
>> > ' Connect to the local Analysis server.
>> > ' If a connection cannot be made, an error is raised.
>> > dsoServer.Connect "LocalHost"
>> >
>> > ' Print server properties to the Debug window.
>> > With dsoServer
>> > Debug.Print "Server Properties --------------------------"
>> > Debug.Print "Name: " & .Name
>> > Debug.Print "Description: " & .Description
>> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
>> > Debug.Print "LockTimeout: " & .LockTimeout
>> > Debug.Print "Version: " & .Version
>> > End With
>> >
>> > ' Close connection to server.
>> > dsoServer.CloseServer
>> >
>> > ExitRoutine:
>> > Set dsoServer = Nothing
>> > Exit Sub
>> >
>> > ErrHandler:
>> > Debug.Print "Error connecting to server:"
>> > Debug.Print Err.Number, Err.Description, Err.Source
>> > End Sub
>> >
>> >
>> >
>> > Phil.
>> > ________________________________________________________
>> > Philippe TROTIN http://blogs.msdn.com/ptrotin
>> > Microsoft Services France http://www.microsoft.com/france
>> >
>> > "Red Rag" <RedRag@libre.fr> wrote in message
>> > news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
>> >> Bonjour,
>> >> Comment peut-on vérifier la version du Service Pack Analysis Services
>> >> installé ?
>> >>
>> >> Merci,
>> >>
>> >> RedRag
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
>
http://www.frenchsql.com/Default.aspx?page
--
Bien cordialement
Med Bouchenafa
"Red Rag" a écrit dans le message de news:
> Bonjour Med,
> Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> (SP3).
> Le Service Pack est bien explicité.
> Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel SP
> s'agit-il ?
>
> Merci
> Red Rag
>
> "Med Bouchenafa" a écrit dans le message de
> news:
>> Le menu de "Au sujet de..." de Analysis Manager doit certainement appeler
> un
>> code similaire au tiens pour afficher la version
>> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il reporte
>> est à jour
>> A tester...avec différents SP
>>
>> --
>> Bien cordialement
>> Med Bouchenafa
>>
>>
>> "Philippe T [MS]" a écrit dans le message
> de
>> news:
>> > Bonjour,
>> >
>> > Via DSO :
>> >
>> > Public Sub ConnectToServer()
>> > Dim dsoServer As DSO.Server
>> >
>> > On Error GoTo ErrHandler
>> >
>> > ' Initialize server.
>> > Set dsoServer = New DSO.Server
>> >
>> > ' Connect to the local Analysis server.
>> > ' If a connection cannot be made, an error is raised.
>> > dsoServer.Connect "LocalHost"
>> >
>> > ' Print server properties to the Debug window.
>> > With dsoServer
>> > Debug.Print "Server Properties --------------------------"
>> > Debug.Print "Name: " & .Name
>> > Debug.Print "Description: " & .Description
>> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
>> > Debug.Print "LockTimeout: " & .LockTimeout
>> > Debug.Print "Version: " & .Version
>> > End With
>> >
>> > ' Close connection to server.
>> > dsoServer.CloseServer
>> >
>> > ExitRoutine:
>> > Set dsoServer = Nothing
>> > Exit Sub
>> >
>> > ErrHandler:
>> > Debug.Print "Error connecting to server:"
>> > Debug.Print Err.Number, Err.Description, Err.Source
>> > End Sub
>> >
>> >
>> >
>> > Phil.
>> > ________________________________________________________
>> > Philippe TROTIN http://blogs.msdn.com/ptrotin
>> > Microsoft Services France http://www.microsoft.com/france
>> >
>> > "Red Rag" wrote in message
>> > news:
>> >> Bonjour,
>> >> Comment peut-on vérifier la version du Service Pack Analysis Services
>> >> installé ?
>> >>
>> >> Merci,
>> >>
>> >> RedRag
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
>
Bonjour,
Et les services packs SQL Server et Analysis Services sont indépendants.
qui explique les différences.
Cordialement,
LionelP
"Med Bouchenafa" wrote:
> http://www.frenchsql.com/Default.aspx?page
>
> --
> Bien cordialement
> Med Bouchenafa
>
>
> "Red Rag" a écrit dans le message de news:
>
> > Bonjour Med,
> > Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> > (SP3).
> > Le Service Pack est bien explicité.
> > Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel
> > s'agit-il ?
> >
> > Merci
> > Red Rag
> >
> > "Med Bouchenafa" a écrit dans le message de
> > news:
> >> Le menu de "Au sujet de..." de Analysis Manager doit certainement
> > un
> >> code similaire au tiens pour afficher la version
> >> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
> >> est à jour
> >> A tester...avec différents SP
> >>
> >> --
> >> Bien cordialement
> >> Med Bouchenafa
> >>
> >>
> >> "Philippe T [MS]" a écrit dans le
> > de
> >> news:
> >> > Bonjour,
> >> >
> >> > Via DSO :
> >> >
> >> > Public Sub ConnectToServer()
> >> > Dim dsoServer As DSO.Server
> >> >
> >> > On Error GoTo ErrHandler
> >> >
> >> > ' Initialize server.
> >> > Set dsoServer = New DSO.Server
> >> >
> >> > ' Connect to the local Analysis server.
> >> > ' If a connection cannot be made, an error is raised.
> >> > dsoServer.Connect "LocalHost"
> >> >
> >> > ' Print server properties to the Debug window.
> >> > With dsoServer
> >> > Debug.Print "Server Properties --------------------------"
> >> > Debug.Print "Name: " & .Name
> >> > Debug.Print "Description: " & .Description
> >> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
> >> > Debug.Print "LockTimeout: " & .LockTimeout
> >> > Debug.Print "Version: " & .Version
> >> > End With
> >> >
> >> > ' Close connection to server.
> >> > dsoServer.CloseServer
> >> >
> >> > ExitRoutine:
> >> > Set dsoServer = Nothing
> >> > Exit Sub
> >> >
> >> > ErrHandler:
> >> > Debug.Print "Error connecting to server:"
> >> > Debug.Print Err.Number, Err.Description, Err.Source
> >> > End Sub
> >> >
> >> >
> >> >
> >> > Phil.
> >> > ________________________________________________________
> >> > Philippe TROTIN
> >> > Microsoft Services France
> >> >
> >> > "Red Rag" wrote in message
> >> > news:
> >> >> Bonjour,
> >> >> Comment peut-on vérifier la version du Service Pack Analysis
> >> >> installé ?
> >> >>
> >> >> Merci,
> >> >>
> >> >> RedRag
> >> >>
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>
> >
> >
>
>
>
Bonjour,
Et les services packs SQL Server et Analysis Services sont indépendants.
qui explique les différences.
Cordialement,
LionelP
"Med Bouchenafa" wrote:
> http://www.frenchsql.com/Default.aspx?page
>
> --
> Bien cordialement
> Med Bouchenafa
>
>
> "Red Rag" <RedRag@libre.fr> a écrit dans le message de news:
> uxRBv3RBFHA.824@TK2MSFTNGP11.phx.gbl...
> > Bonjour Med,
> > Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> > (SP3).
> > Le Service Pack est bien explicité.
> > Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel
> > s'agit-il ?
> >
> > Merci
> > Red Rag
> >
> > "Med Bouchenafa" <com.hotmail@bouchenafa> a écrit dans le message de
> > news:ej3SjvRBFHA.3824@TK2MSFTNGP10.phx.gbl...
> >> Le menu de "Au sujet de..." de Analysis Manager doit certainement
> > un
> >> code similaire au tiens pour afficher la version
> >> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
> >> est à jour
> >> A tester...avec différents SP
> >>
> >> --
> >> Bien cordialement
> >> Med Bouchenafa
> >>
> >>
> >> "Philippe T [MS]" <ptrotin@online.microsoft.com> a écrit dans le
> > de
> >> news: OoxmZoMBFHA.3596@TK2MSFTNGP12.phx.gbl...
> >> > Bonjour,
> >> >
> >> > Via DSO :
> >> >
> >> > Public Sub ConnectToServer()
> >> > Dim dsoServer As DSO.Server
> >> >
> >> > On Error GoTo ErrHandler
> >> >
> >> > ' Initialize server.
> >> > Set dsoServer = New DSO.Server
> >> >
> >> > ' Connect to the local Analysis server.
> >> > ' If a connection cannot be made, an error is raised.
> >> > dsoServer.Connect "LocalHost"
> >> >
> >> > ' Print server properties to the Debug window.
> >> > With dsoServer
> >> > Debug.Print "Server Properties --------------------------"
> >> > Debug.Print "Name: " & .Name
> >> > Debug.Print "Description: " & .Description
> >> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
> >> > Debug.Print "LockTimeout: " & .LockTimeout
> >> > Debug.Print "Version: " & .Version
> >> > End With
> >> >
> >> > ' Close connection to server.
> >> > dsoServer.CloseServer
> >> >
> >> > ExitRoutine:
> >> > Set dsoServer = Nothing
> >> > Exit Sub
> >> >
> >> > ErrHandler:
> >> > Debug.Print "Error connecting to server:"
> >> > Debug.Print Err.Number, Err.Description, Err.Source
> >> > End Sub
> >> >
> >> >
> >> >
> >> > Phil.
> >> > ________________________________________________________
> >> > Philippe TROTIN
> >> > Microsoft Services France
> >> >
> >> > "Red Rag" <RedRag@libre.fr> wrote in message
> >> > news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
> >> >> Bonjour,
> >> >> Comment peut-on vérifier la version du Service Pack Analysis
> >> >> installé ?
> >> >>
> >> >> Merci,
> >> >>
> >> >> RedRag
> >> >>
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>
> >
> >
>
>
>
Bonjour,
Et les services packs SQL Server et Analysis Services sont indépendants.
qui explique les différences.
Cordialement,
LionelP
"Med Bouchenafa" wrote:
> http://www.frenchsql.com/Default.aspx?page
>
> --
> Bien cordialement
> Med Bouchenafa
>
>
> "Red Rag" a écrit dans le message de news:
>
> > Bonjour Med,
> > Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> > (SP3).
> > Le Service Pack est bien explicité.
> > Dans "A propos de Analysis Services", j'ai : version 8.00.194. De quel
> > s'agit-il ?
> >
> > Merci
> > Red Rag
> >
> > "Med Bouchenafa" a écrit dans le message de
> > news:
> >> Le menu de "Au sujet de..." de Analysis Manager doit certainement
> > un
> >> code similaire au tiens pour afficher la version
> >> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
> >> est à jour
> >> A tester...avec différents SP
> >>
> >> --
> >> Bien cordialement
> >> Med Bouchenafa
> >>
> >>
> >> "Philippe T [MS]" a écrit dans le
> > de
> >> news:
> >> > Bonjour,
> >> >
> >> > Via DSO :
> >> >
> >> > Public Sub ConnectToServer()
> >> > Dim dsoServer As DSO.Server
> >> >
> >> > On Error GoTo ErrHandler
> >> >
> >> > ' Initialize server.
> >> > Set dsoServer = New DSO.Server
> >> >
> >> > ' Connect to the local Analysis server.
> >> > ' If a connection cannot be made, an error is raised.
> >> > dsoServer.Connect "LocalHost"
> >> >
> >> > ' Print server properties to the Debug window.
> >> > With dsoServer
> >> > Debug.Print "Server Properties --------------------------"
> >> > Debug.Print "Name: " & .Name
> >> > Debug.Print "Description: " & .Description
> >> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
> >> > Debug.Print "LockTimeout: " & .LockTimeout
> >> > Debug.Print "Version: " & .Version
> >> > End With
> >> >
> >> > ' Close connection to server.
> >> > dsoServer.CloseServer
> >> >
> >> > ExitRoutine:
> >> > Set dsoServer = Nothing
> >> > Exit Sub
> >> >
> >> > ErrHandler:
> >> > Debug.Print "Error connecting to server:"
> >> > Debug.Print Err.Number, Err.Description, Err.Source
> >> > End Sub
> >> >
> >> >
> >> >
> >> > Phil.
> >> > ________________________________________________________
> >> > Philippe TROTIN
> >> > Microsoft Services France
> >> >
> >> > "Red Rag" wrote in message
> >> > news:
> >> >> Bonjour,
> >> >> Comment peut-on vérifier la version du Service Pack Analysis
> >> >> installé ?
> >> >>
> >> >> Merci,
> >> >>
> >> >> RedRag
> >> >>
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>
> >
> >
>
>
>
Question à 0,10 ? :
Que signifie l'acronyme RTM en terme de version ?
Merci
Red Rag
""
a écrit dans le
message de news:
> Bonjour,
>
> Et les services packs SQL Server et Analysis Services sont indépendants.
Ce
> qui explique les différences.
>
> Cordialement,
> LionelP
>
> "Med Bouchenafa" wrote:
>
> > http://www.frenchsql.com/Default.aspx?page
> >
> > --
> > Bien cordialement
> > Med Bouchenafa
> >
> >
> > "Red Rag" a écrit dans le message de news:
> >
> > > Bonjour Med,
> > > Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> > > (SP3).
> > > Le Service Pack est bien explicité.
> > > Dans "A propos de Analysis Services", j'ai : version 8.00.194. De
SP
> > > s'agit-il ?
> > >
> > > Merci
> > > Red Rag
> > >
> > > "Med Bouchenafa" a écrit dans le message de
> > > news:
> > >> Le menu de "Au sujet de..." de Analysis Manager doit certainement
appeler
> > > un
> > >> code similaire au tiens pour afficher la version
> > >> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
reporte
> > >> est à jour
> > >> A tester...avec différents SP
> > >>
> > >> --
> > >> Bien cordialement
> > >> Med Bouchenafa
> > >>
> > >>
> > >> "Philippe T [MS]" a écrit dans le
message
> > > de
> > >> news:
> > >> > Bonjour,
> > >> >
> > >> > Via DSO :
> > >> >
> > >> > Public Sub ConnectToServer()
> > >> > Dim dsoServer As DSO.Server
> > >> >
> > >> > On Error GoTo ErrHandler
> > >> >
> > >> > ' Initialize server.
> > >> > Set dsoServer = New DSO.Server
> > >> >
> > >> > ' Connect to the local Analysis server.
> > >> > ' If a connection cannot be made, an error is raised.
> > >> > dsoServer.Connect "LocalHost"
> > >> >
> > >> > ' Print server properties to the Debug window.
> > >> > With dsoServer
> > >> > Debug.Print "Server Properties --------------------------"
> > >> > Debug.Print "Name: " & .Name
> > >> > Debug.Print "Description: " & .Description
> > >> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
> > >> > Debug.Print "LockTimeout: " & .LockTimeout
> > >> > Debug.Print "Version: " & .Version
> > >> > End With
> > >> >
> > >> > ' Close connection to server.
> > >> > dsoServer.CloseServer
> > >> >
> > >> > ExitRoutine:
> > >> > Set dsoServer = Nothing
> > >> > Exit Sub
> > >> >
> > >> > ErrHandler:
> > >> > Debug.Print "Error connecting to server:"
> > >> > Debug.Print Err.Number, Err.Description, Err.Source
> > >> > End Sub
> > >> >
> > >> >
> > >> >
> > >> > Phil.
> > >> > ________________________________________________________
> > >> > Philippe TROTIN
http://blogs.msdn.com/ptrotin
> > >> > Microsoft Services France
http://www.microsoft.com/france
> > >> >
> > >> > "Red Rag" wrote in message
> > >> > news:
> > >> >> Bonjour,
> > >> >> Comment peut-on vérifier la version du Service Pack Analysis
Services
> > >> >> installé ?
> > >> >>
> > >> >> Merci,
> > >> >>
> > >> >> RedRag
> > >> >>
> > >> >>
> > >> >>
> > >> >
> > >> >
> > >>
> > >>
> > >
> > >
> >
> >
> >
Question à 0,10 ? :
Que signifie l'acronyme RTM en terme de version ?
Merci
Red Rag
"lionelp@online.microsoft.com"
<lionelponlinemicrosoftcom@discussions.microsoft.com> a écrit dans le
message de news:A04BEEF0-6250-4692-BDAC-D35F8838BA44@microsoft.com...
> Bonjour,
>
> Et les services packs SQL Server et Analysis Services sont indépendants.
Ce
> qui explique les différences.
>
> Cordialement,
> LionelP
>
> "Med Bouchenafa" wrote:
>
> > http://www.frenchsql.com/Default.aspx?page
> >
> > --
> > Bien cordialement
> > Med Bouchenafa
> >
> >
> > "Red Rag" <RedRag@libre.fr> a écrit dans le message de news:
> > uxRBv3RBFHA.824@TK2MSFTNGP11.phx.gbl...
> > > Bonjour Med,
> > > Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> > > (SP3).
> > > Le Service Pack est bien explicité.
> > > Dans "A propos de Analysis Services", j'ai : version 8.00.194. De
SP
> > > s'agit-il ?
> > >
> > > Merci
> > > Red Rag
> > >
> > > "Med Bouchenafa" <com.hotmail@bouchenafa> a écrit dans le message de
> > > news:ej3SjvRBFHA.3824@TK2MSFTNGP10.phx.gbl...
> > >> Le menu de "Au sujet de..." de Analysis Manager doit certainement
appeler
> > > un
> > >> code similaire au tiens pour afficher la version
> > >> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
reporte
> > >> est à jour
> > >> A tester...avec différents SP
> > >>
> > >> --
> > >> Bien cordialement
> > >> Med Bouchenafa
> > >>
> > >>
> > >> "Philippe T [MS]" <ptrotin@online.microsoft.com> a écrit dans le
message
> > > de
> > >> news: OoxmZoMBFHA.3596@TK2MSFTNGP12.phx.gbl...
> > >> > Bonjour,
> > >> >
> > >> > Via DSO :
> > >> >
> > >> > Public Sub ConnectToServer()
> > >> > Dim dsoServer As DSO.Server
> > >> >
> > >> > On Error GoTo ErrHandler
> > >> >
> > >> > ' Initialize server.
> > >> > Set dsoServer = New DSO.Server
> > >> >
> > >> > ' Connect to the local Analysis server.
> > >> > ' If a connection cannot be made, an error is raised.
> > >> > dsoServer.Connect "LocalHost"
> > >> >
> > >> > ' Print server properties to the Debug window.
> > >> > With dsoServer
> > >> > Debug.Print "Server Properties --------------------------"
> > >> > Debug.Print "Name: " & .Name
> > >> > Debug.Print "Description: " & .Description
> > >> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
> > >> > Debug.Print "LockTimeout: " & .LockTimeout
> > >> > Debug.Print "Version: " & .Version
> > >> > End With
> > >> >
> > >> > ' Close connection to server.
> > >> > dsoServer.CloseServer
> > >> >
> > >> > ExitRoutine:
> > >> > Set dsoServer = Nothing
> > >> > Exit Sub
> > >> >
> > >> > ErrHandler:
> > >> > Debug.Print "Error connecting to server:"
> > >> > Debug.Print Err.Number, Err.Description, Err.Source
> > >> > End Sub
> > >> >
> > >> >
> > >> >
> > >> > Phil.
> > >> > ________________________________________________________
> > >> > Philippe TROTIN
http://blogs.msdn.com/ptrotin
> > >> > Microsoft Services France
http://www.microsoft.com/france
> > >> >
> > >> > "Red Rag" <RedRag@libre.fr> wrote in message
> > >> > news:e2dlcyLBFHA.1200@tk2msftngp13.phx.gbl...
> > >> >> Bonjour,
> > >> >> Comment peut-on vérifier la version du Service Pack Analysis
Services
> > >> >> installé ?
> > >> >>
> > >> >> Merci,
> > >> >>
> > >> >> RedRag
> > >> >>
> > >> >>
> > >> >>
> > >> >
> > >> >
> > >>
> > >>
> > >
> > >
> >
> >
> >
Question à 0,10 ? :
Que signifie l'acronyme RTM en terme de version ?
Merci
Red Rag
""
a écrit dans le
message de news:
> Bonjour,
>
> Et les services packs SQL Server et Analysis Services sont indépendants.
Ce
> qui explique les différences.
>
> Cordialement,
> LionelP
>
> "Med Bouchenafa" wrote:
>
> > http://www.frenchsql.com/Default.aspx?page
> >
> > --
> > Bien cordialement
> > Med Bouchenafa
> >
> >
> > "Red Rag" a écrit dans le message de news:
> >
> > > Bonjour Med,
> > > Dans les "propriétés" de SQL Server, je trouve bien version 8.00.760
> > > (SP3).
> > > Le Service Pack est bien explicité.
> > > Dans "A propos de Analysis Services", j'ai : version 8.00.194. De
SP
> > > s'agit-il ?
> > >
> > > Merci
> > > Red Rag
> > >
> > > "Med Bouchenafa" a écrit dans le message de
> > > news:
> > >> Le menu de "Au sujet de..." de Analysis Manager doit certainement
appeler
> > > un
> > >> code similaire au tiens pour afficher la version
> > >> Je ne sais pas, par contre, dans quelle mesure l'indication qu'il
reporte
> > >> est à jour
> > >> A tester...avec différents SP
> > >>
> > >> --
> > >> Bien cordialement
> > >> Med Bouchenafa
> > >>
> > >>
> > >> "Philippe T [MS]" a écrit dans le
message
> > > de
> > >> news:
> > >> > Bonjour,
> > >> >
> > >> > Via DSO :
> > >> >
> > >> > Public Sub ConnectToServer()
> > >> > Dim dsoServer As DSO.Server
> > >> >
> > >> > On Error GoTo ErrHandler
> > >> >
> > >> > ' Initialize server.
> > >> > Set dsoServer = New DSO.Server
> > >> >
> > >> > ' Connect to the local Analysis server.
> > >> > ' If a connection cannot be made, an error is raised.
> > >> > dsoServer.Connect "LocalHost"
> > >> >
> > >> > ' Print server properties to the Debug window.
> > >> > With dsoServer
> > >> > Debug.Print "Server Properties --------------------------"
> > >> > Debug.Print "Name: " & .Name
> > >> > Debug.Print "Description: " & .Description
> > >> > Debug.Print "ConnectTimeout: " & .ConnectTimeout
> > >> > Debug.Print "LockTimeout: " & .LockTimeout
> > >> > Debug.Print "Version: " & .Version
> > >> > End With
> > >> >
> > >> > ' Close connection to server.
> > >> > dsoServer.CloseServer
> > >> >
> > >> > ExitRoutine:
> > >> > Set dsoServer = Nothing
> > >> > Exit Sub
> > >> >
> > >> > ErrHandler:
> > >> > Debug.Print "Error connecting to server:"
> > >> > Debug.Print Err.Number, Err.Description, Err.Source
> > >> > End Sub
> > >> >
> > >> >
> > >> >
> > >> > Phil.
> > >> > ________________________________________________________
> > >> > Philippe TROTIN
http://blogs.msdn.com/ptrotin
> > >> > Microsoft Services France
http://www.microsoft.com/france
> > >> >
> > >> > "Red Rag" wrote in message
> > >> > news:
> > >> >> Bonjour,
> > >> >> Comment peut-on vérifier la version du Service Pack Analysis
Services
> > >> >> installé ?
> > >> >>
> > >> >> Merci,
> > >> >>
> > >> >> RedRag
> > >> >>
> > >> >>
> > >> >>
> > >> >
> > >> >
> > >>
> > >>
> > >
> > >
> >
> >
> >