| Author |
Message |
Roust_m
Joined: 28 Apr 2009 Posts: 4
|
Posted: Tue Apr 28, 2009 10:00 am Post subject: Database specific tags |
|
|
Hi,
I think it would be very useful to have a feature to automatically replace some text inside the TSQL script depending on the database it will run against. Suppose I have three databases called MyDB_US, MyDB_UK and MyDB_FR. The generic script for all of them would contain:
SET @JOBNAME = N'{country_code}_MyNewJob'
EXEC msdb.dbo.sp_add_job @job_name=@JOBNAME, ...
At the time of execution {country_code} tag would be replaced to "US" for MyDB_US, to "UK" for MyDB_UK, etc.
Are there any plans to implement such feature?
Thanks. |
|
| Back to top |
|
 |
Colin Millerchip
Joined: 31 Oct 2007 Posts: 42 Location: Cambridge, UK
|
Posted: Fri May 01, 2009 9:33 am Post subject: |
|
|
Hi Roust_m,
Thanks for the feedback, which we'll consider for the next release.
Best regards,
Colin. |
|
| Back to top |
|
 |
Linda Hawksworth
Joined: 25 Jun 2007 Posts: 192
|
Posted: Tue May 05, 2009 10:20 am Post subject: |
|
|
In the meantime, you can do what you want using T-SQL:
DECLARE @CURRENT_DB NVARCHAR(128) ;
DECLARE @COUNTRY_CODE NVARCHAR(2) ;
SET @CURRENT_DB = DB_NAME() ;
SET @COUNTRY_CODE = SUBSTRING(@CURRENT_DB, LEN(@CURRENT_DB) - 1, 2) ;
SELECT @CURRENT_DB AS 'Current DB',
@COUNTRY_CODE AS 'Country Code' ;
Let me know if this suits your requirements. |
|
| Back to top |
|
 |
Roust_m
Joined: 28 Apr 2009 Posts: 4
|
Posted: Wed May 06, 2009 5:29 am Post subject: |
|
|
Yep, similar to what I am doing now, but this does not cover the whole thing, as there may be a job step parameter which is country specific.
E.g. for UK it would be:
exec spMySP 'Products','UK'
for France:
exec spMySP 'Produits','FR'
for China:
exec spMySP '產品','CN'
and the generic script would look like:
exec spMySP '{Product translation}','{Country code}'
therefore it should also handle unicode.
I understand that I can build a replacement table in the begining of the script. E.g.: if the last two characters of the database name equal to 'FR' then replace {Product translation} with 'Produits' and '{Country code}' with 'FR', but it would be easier to build separate scripts.
It would be ideal if the app could search for the tags and prompt me to set the replacements for each database I am running the script against. |
|
| Back to top |
|
 |
Brian Donahue
Joined: 23 Aug 2004 Posts: 6369 Location: Red Gate Software
|
Posted: Wed May 06, 2009 11:22 am Post subject: |
|
|
Hello,
I have sent a link to your private messages to a build of Multi Script that can handle Unicode. _________________ Brian Donahue
Technical Support
Red Gate Software Ltd.
44 (0)870 160 0037 ext 8521
US and CAN 1-866-RED GATE ext 8521 |
|
| Back to top |
|
 |
|