SQL Server: Search all tables for a particular GUID

前端 未结 5 2075
说谎
说谎 2021-02-03 23:10

i came across the need to cleanse some data, and i need to find some particular guids (i.e. uniqueidentifiers) in SQL Server°.

i\'ve come up with a stor

5条回答
  •  误落风尘
    2021-02-03 23:51

    Looks like a little over engineering going on here.... You said you just needed to "find some particular guids". It might be easier to export the whole database and then open it up in notepad++ and search for the guids you wanted. Then you will be seeing the whole row of data at that time, etc.

    You can read about the SQL Server Publishing Wizard that exports the database to a text file here.

提交回复
热议问题