We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4fff4f commit b8a5598Copy full SHA for b8a5598
1 file changed
README.md
@@ -28,7 +28,7 @@ WHERE NAME NOT IN ('master','msdb','tempdb','model')
28
OPEN db_cursor
29
FETCH NEXT FROM db_cursor INTO @name WHILE @@FETCH_STATUS = 0
30
BEGIN
31
- EXECUTE('USE ' + @name + '; CREATE USER newrelic FOR LOGIN newrelic;' );
+ EXECUTE('USE "' + @name + '"; CREATE USER newrelic FOR LOGIN newrelic;' );
32
FETCH next FROM db_cursor INTO @name
33
END
34
CLOSE db_cursor
0 commit comments