use base
select v.name, s.definition from sys.views v, sys.sql_modules s
where v.object_id=s.object_id
Arrays asociativos con VBA y VBScript
Agregar una referencia a Microsoft Scripting Runtime
Ejemplo:
Dim dict As New Dictionary
dict.Add "abc", "prueba 1"
dict.Add "xxx", "prueba 2"
MsgBox (dict("abc"))
http://www.kamath.com/tutorials/tut009_dictionary.asp
Ejemplo:
Dim dict As New Dictionary
dict.Add "abc", "prueba 1"
dict.Add "xxx", "prueba 2"
MsgBox (dict("abc"))
http://www.kamath.com/tutorials/tut009_dictionary.asp
Hacer SELECT de un SELECT
Tener en cuenta que el order by tiene que ir afuera!!!
select *
from
(select campo1
from tabla
group by xxx) tabla1
order by campo1
select *
from
(select campo1
from tabla
group by xxx) tabla1
order by campo1
Utilizar TFS con MsAccess
http://blog.accentient.com/TeamFoundationServerForMicrosoftAccessDevelopers.aspx
I was invited by INETA to speak at the Pacific Northwest Access Developer Group (a.ka. the Seattle Access Group). Now, Access developers are typically "teams of one", but I thought that any team developers or consultants attending the meeting would get the ALM story and features of TFS. They did.f
As it turns out, the steps to integrate Microsoft Access 2007 with TFS aren't all that difficult:
- Install and configure TFS to allow the developers to connect
- Install the MSSCCI provider on each developer's desktop
- Install the Access Developer Extensions on each developer's desktop
- Create and configure the Team Project, version control folders, and workspace(s)
- Follow the guidance on using Access with Source Control (you can ignore the references to VSS).
Remember: you can't View, Compare, or Annotate any Access objects under source control, with the exception of code (modules, macros).
Thank you to those of you who attended my talk. You can download my presentation here.
Suscribirse a:
Comentarios (Atom)