Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. Database
  4. how to get name of the file before extention from database..

how to get name of the file before extention from database..

Scheduled Pinned Locked Moved Database
databasetutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    anujbanka1784
    wrote on last edited by
    #1

    how to get name of the file before extention from database..

    W 1 Reply Last reply
    0
    • A anujbanka1784

      how to get name of the file before extention from database..

      W Offline
      W Offline
      Wendelius
      wrote on last edited by
      #2

      Do you mean a database file or just a string that contains a filename. To remove the path and the extension, you could try something like:

      declare @filename varchar(50);
      set @filename = 'c:\a\b\c\filename.extension';
      set @filename = substring( @filename, 1, charindex( '.', @filename) - 1)
      while charindex( '\', @filename) > 0
      begin
      set @filename = substring( @filename, charindex( '\', @filename) + 1, 999999)
      end
      select @filename

      And if you're interested in files of a database you should have a look at sys.database_files[^]

      The need to optimize rises from a bad design.My articles[^]

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups