Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Report is not visible

    When you exec your SP use [WITH RECOMPILE] option - it forces a new plan to compiled. Old plans remains in cache and if some indexes etc changes or...

  • RE: Excel To SQL Server

    I used to have nearly similar problem. My friend coded some VBS and it worked:

    While your spreadsheet is under update, it has a "deny flag" raised, VBS study if flag...

  • RE: Create table in a database with a test user

    Create schema for your teset user:

    CREATE SCHEMA [TESTUSER] AUTHORIZATION [TESTUSER]

    and then your table in that schema:

    CREATE TABLE testuser.test(name varchar(3))

Viewing 3 posts - 1 through 3 (of 3 total)