How to create Sql Synonym or "Alias" for Database Name? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T02:00:13Zhttp://stackoverflow.com/feeds/question/444139http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/444139/how-to-create-sql-synonym-or-alias-for-database-name2How to create Sql Synonym or "Alias" for Database Name?Kevin2009-01-14T18:29:18Z2009-01-23T20:13:54Z
<p>I'm using ms sql 2008 and trying to create a database name that references another database. For example 'Dev', 'Test', 'Demo' would be database names that i could reference from my multiple config files, but each name would point to another database such as 'db20080101' or 'db20080114'. </p>
<p>[Edit]Some of the configs are for applications that i control the code and some aren't (ex. MS Reporting service datasource file configs)[/Edit]</p>
<p>It seems that sqlserver only supports synonyms for View,Table,Sproc, or Function. And Alias' are for table and column names.</p>
<p>Is there a way to do this that i missed in the docs?
Any one have any suggestions on a workaround?</p>
http://stackoverflow.com/questions/444139/how-to-create-sql-synonym-or-alias-for-database-name/444146#4441462Answer by SQLMenace for How to create Sql Synonym or "Alias" for Database Name?SQLMenace2009-01-14T18:31:46Z2009-01-14T18:31:46Z<p>use 3 part notation and alias up to the table, example</p>
<pre><code>select * from tempdb.dbo.sysobjects a
join master.dbo.sysobjects b on a.id = b.id
</code></pre>
http://stackoverflow.com/questions/444139/how-to-create-sql-synonym-or-alias-for-database-name/444176#4441761Answer by Ryan Ahearn for How to create Sql Synonym or "Alias" for Database Name?Ryan Ahearn2009-01-14T18:42:01Z2009-01-14T18:42:01Z<p>I've done something similar to this using another config file.</p>
<p>The new config file maps your generic name to all of the information needed to connect to that database (db name, user name, password, etc.) and then your connection function takes your generic name as an argument.</p>
<p>db.config:</p>
<pre><code>DEV_DB_NAME = db20080101
DEV_DB_USER = dev_user
DEV_DB_PASS = dev_pass
TEST_DB_NAME = db20070101
TEST_DB_USER = test_user
TEST_DB_PASS = test_pass
</code></pre>
<p>connection code:</p>
<pre><code>db_connection get_connection(string prefix) {
db_connection db_conn = new db_connection;
string db_name = get_config_value(config_path, prefix + "_DB_NAME");
string db_user = get_config_value(config_path, prefix + "_DB_USER");
string db_pass = get_config_value(config_path, prefix + "_DB_PASS");
db_conn.connect(db_name, db_user, db_pass);
return db_conn;
}
</code></pre>
<p>Then you just call get_connection() with your db alias as the argument.</p>