Search results

  1. B

    update query to conditionally strip leading 7 characters

    just delete the "Email:" part
  2. B

    update query to conditionally strip leading 7 characters

    Is there a way to write an update query that strips the phrase "Email: " from a field whose value actually begins with "Email: " and leave alone those that are normal like "angusreide@hotmail.com"?
  3. B

    Count by State

    Like putting count() at the beginning of the query and GROUP BY (State) at the end?
  4. B

    Count by State

    I need to modify the following query to count the number of people in each State in the US, any clues?: SELECT dbo_certs.peopleId, dbo_People.FirstName AS [First], dbo_People.LastName AS [Last], dbo_Status.StatusName AS Status, dbo_PeopleContactInfo.stateAbbrev AS State FROM...
  5. B

    Problem with Count query

    Thanks in advance for any clues on making this query work. I am trying to count the number of applicants in each of 3 categories for a date range so that my datasheet view looks something like this: Applications Education _________ _______ 27 Phd 134 Masters...
  6. B

    new PC and ODBC issues

    This brings up the nagging window to enter a DSN name
  7. B

    new PC and ODBC issues

    I get a debug on this line: If .Connect <> "" Then "Object no longer set"
  8. B

    new PC and ODBC issues

    How do I make this code below actually run... and do I put my table's name in place of "TableName"? Option Compare Database Public Const CONN_STRING As String = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=GCDF_DB;Data Source=BADLANDS" Public Sub...
  9. B

    new PC and ODBC issues

    I'm confused about how to use the code "If not, try using code to change the connection string in the linked table"
  10. B

    new PC and ODBC issues

    Only when using code for a Sub like below: Dim con As ADODB.Connection Dim cmd As ADODB.Command Dim rs As ADODB.Recordset Set con = New ADODB.Connection Set cmd = New ADODB.Command con.ConnectionString = CONN_STRING...
  11. B

    new PC and ODBC issues

    I have with a module this connection string already: Option Compare Database Public Const CONN_STRING As String = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=GCDF_DB;Data Source=BADLANDS"
  12. B

    new PC and ODBC issues

    Unless I'm missing something... Wow... I have 8 Access databases each with 20+ ODBC connected tables
  13. B

    new PC and ODBC issues

    You mean having each of the dozens of adds, updates, deletes, etc. have code to open and close the database like one would use in a .net application?
  14. B

    new PC and ODBC issues

    My usually expected DSNs are missing, I can create one but it fails like above.
  15. B

    new PC and ODBC issues

    "ODBC--connection to 'BCC_DB' failed"
  16. B

    new PC and ODBC issues

    I just got a new PC at the office and my old ODBC connections to SQL Server are failing. I tried loading the registry files but no luck... any ideas?
  17. B

    Updating a record through adodb (without ODBC) -getting error

    then it in debug highlights the next line in yellow: Set rs = frm.Recordset
  18. B

    Updating a record through adodb (without ODBC) -getting error

    Changed to but same message: Set frm = Forms!frmSwitchboard!dbo_MHF_Standard_subform
Top Bottom