Skip to main content

How to add quotes around a list of strings

I have been in the situation many times where I have got a long list of strings that either I need to insert into a table or use in a query. The trouble is they all need a comma and quotes around them so they can be used in SSMS. After much frustration I have come across a solution that works well for me - a macro in Notepad++ which will add the commas and quotes for me.

If you have a list of strings like:

master
model
msdb
db1
db2

And want to put quotes and commas around them all to include in a query so it looks like:

SELECT NAME
FROM sysdatabases
WHERE NAME NOT IN (
               'master'
              ,'model'
              ,'msdb'
              ,'db1'
              ,'db2'
              )

Then follow the steps below:
  • If you don't already have Notepad++ installed go here and install it
  • Run Notepad++ and paste your list of strings into the window. Next you need to record your macro in Notepad++:
    • Click at the beginning of line 1 or where the first string starts and either click on the relevant (play) button or choose Macro --> Start Recording then press the following keys:
    • comma(,)
    • single quote (') 
    • end 
    • comma(') 
    • down arrow 
    • home
    • Then from the menu choose Macro --> Save Current Recorded Macro As... and give your macro a name like Add Quotes.
Now you have recorded the macro it will only play once when you select it, which is not any good if you want to add commas and quotes to a list of many strings. So this is what you do: click at the beginning of the list like you did before but choose Macro --> Run a Macro Multiple Times... and you will see a messagebox similar to this:

Choose the macro from the list and choose Run until the end of the file and it should add quotes and commas around the strings. Some experimentation may be required but you'll work it out. It certainly save hammering away on the keyboard.



Comments

Popular posts from this blog

How to create a custom Windows Event Log view and email trigger

The filtering on Windows event logs can be slow, clunky and although you can do it on fields like event ID, it seems that many event IDs are shared amongst many different errors – the event ID may match but the body of the error (therefore the actual error) may be completely unrelated. Fortunately, it is possible to filter on the contents of the body of the error message but it requires creating a custom XML query. Also, it would be handy to send out a notification email when this event gets logged. Read on to find out how to work this magic…. This example is looking for a  Warning  event  1309  for  ASP.NET 4.0.30319.0  on a web server. If you were to just filter the log on the criteria above today it would return 435 results because it is a fairly general error ID. If I filter it using XML for SqlException (what I’m really interested in) only 5 results are returned. So the first step is go to the Application Log and choose  Create Custom View…  Select the  XML  tab, check  Edit

How to configure the SSAS service to use a Domain Account

NB Updating SPNs in AD is not for the faint hearted plus I got inconsistent results from different servers. Do so at your own risk! If you need the SSAS account on a SQL Server to use a domain account rather than the local “virtual” account “NT Service\MSSQLServerOLAPService”. You may think you just give the account login permissions to the server, perhaps give it sysadmin SQL permissions too. However, if you try and connect to SSAS  remotely  you may get this error: Authentication failed. (Microsoft.AnalysisService.AdomdClient) The target principal name is incorrect (Microsoft.AnalysisService.AdomdClient) From Microsoft: “A Service Principle Name (SPN) uniquely identifies a service instance in an Active Directory domain when Kerberos is used to mutually authenticate client and service identities. An SPN is associated with the logon account under which the service instance runs. For client applications connecting to Analysis Services via Kerberos authentication, th

How to import a large xml file into SQL Server

(Or how to import the StackOverflow database into SQL Server) Introduction NB  This process can be generalised to import any large (>2G) xml file into SQL Server. Some SQL Server training you can find online including that by Brent Ozar uses the StackOverflow database for practice. The tables from it are available online for download in xml format. In the past it was possible to use the scripts found here, https://www.toadworld.com/platforms/sql-server/w/wiki/9466.how-to-import-the-stackoverflow-xml-into-sql-server , to import them but as each xml file is now over 2GB you will get an error like this when you try to execute them: Brent Ozar, has a link to SODDI.exe, https://github.com/BrentOzarULTD/soddi , which can import the files (I haven’t tried it) but it means downloading and importing eight tables: Badges, Comments, PostHistory, PostLinks, Posts, Tags, Users, and Votes tables which amounts to >30GB of compressed xml increasing to ~200GB when decompre