Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQL Server: Index local temp tables #600

Merged
merged 5 commits into from
Sep 16, 2023

Conversation

detule
Copy link
Collaborator

@detule detule commented Sep 1, 2023

Fixes #584

With this, dbExistsTable( conn, "#tempname") should be reliable. In turn writing to local temp tables with dbWriteTable or dbAppendTable should also be improved.

I am tracking additional issues with temp tables in SQL Server. Will address separately.

As I was working on this I was reminded that we need to add a DB/workflow using FreeTDS to CI/CD ( mostly a note to myself ).

Thanks!

@detule detule requested a review from hadley September 1, 2023 01:25
Comment on lines +246 to +251
#' Local temp tables are stored as
#' \code{ [tempdb].[dbo].[#name]________(padding using underscores)[numeric identifier] }
#'
#' True if:
#' - If catalog_name is supplied it must equal "temdb" or "%" ( wildcard )
#' - Name must start with "#" followd by a non-"#" character
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd suggest just writing all these method docs in a bulleted list in the SQLServer docs. That makes it a bit easier to see how the final rendered doc will look.

And I think it's fine to leave the @usage as is, so the read can more easily see what methods are customised.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Hadley.

I took a look at the markdown in SQLServer.md and fwict it already looks like a bulleted list:

  \details{
  True if:
  \itemize{
  \item If catalog_name is supplied it must equal "temdb" or "\%" ( wildcard )
  \item Name must start with "#" followd by a non-"#" character
  }

Let me know if you had something else in mind.

RE: usage, I spend some time struggling with this:

❯ checking for code/documentation mismatches ... WARNING
  Functions or methods with usage in documentation object 'Microsoft SQL Server-class' but not in code:
    ‘\S4method{isTempTable}{Microsoft SQL Server,character}’

My first thought was that it has something to do with the class name having white-space characters but now i am not so sure.

The class and method are tagged like so:

  \name{Microsoft SQL Server-class}                                                                                                                                                                                                         
  \alias{Microsoft SQL Server-class}
  \alias{isTempTable,Microsoft SQL Server,character-method}

while the usage section:

\usage{
  \S4method{isTempTable}{`Microsoft SQL Server`,character}(conn, name, catalog_name = NULL, schema_name = NULL, ...)                                                                     
}

Let me know if you have any ideas.

Thanks again!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you manually change the alias to the following, does the problem go away?

  \alias{isTempTable,`Microsoft SQL Server`,character-method}

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good suggestion; alas doesn't work.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Weird! Definitely not worth looking into further.

Co-authored-by: Hadley Wickham <[email protected]>
@detule detule merged commit 70c3a90 into r-dbi:main Sep 16, 2023
hadley added a commit that referenced this pull request Sep 26, 2023
Update handling ( listing, writing ) of local temp tables.

---------

Co-authored-by: Hadley Wickham <[email protected]>
detule added a commit that referenced this pull request Oct 11, 2023
* Update to testthat 3e

* Eliminate some expect_is() calls

* fixup tests

* SQL Server: Index local temp tables (#600)

Update handling ( listing, writing ) of local temp tables.

---------

Co-authored-by: Hadley Wickham <[email protected]>

* SQL Server: Handle temporary flag in sqlCreateTable (#601)

* SQL Server: Handle temporary flag in sqlCreateTable

* code-review: better warning + testthat usage

* code-review: simplify sql server specific method

* code-review: Add missing _snaps

* Update news

---------

Co-authored-by: detule <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

MSSQL: Cannot append to temporary tables
2 participants