<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Changing the database password in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639697#M679242</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could keep the connection details in a separate text file and use a $(include) line to select the relevant connection file. That way the live documents will select the live connection and development dpocuments will connect to the dev data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 May 2014 11:51:07 GMT</pubDate>
    <dc:creator>Colin-Albert</dc:creator>
    <dc:date>2014-05-20T11:51:07Z</dc:date>
    <item>
      <title>Changing the database password</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639695#M679240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created the following connection string using qlikview wizard :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OLEDB CONNECT32 TO [Provider=MSDAORA.1;User ID=SOURCE;Data Source=XE] (XPassword is TKGJRaUGVJNKTaEGRBIB);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I want to be able to change the database password (from a development environment to a production environment) without going through the wizard again and I don't want to delete the connection string and regenerate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a solution to this requirement with Qlikview or do I have every time to regenerate the connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2014 11:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639695#M679240</guid>
      <dc:creator />
      <dc:date>2014-05-20T11:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the database password</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639696#M679241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make 2 oledb connections (dev and prod)&lt;/P&gt;&lt;P&gt;use a variable and an if statement to change from dev and prod&lt;/P&gt;&lt;P&gt;you can further improve it adding an external file from which you read the variable; so when you change from dev to prod you only change the external file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2014 11:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639696#M679241</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-05-20T11:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the database password</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639697#M679242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could keep the connection details in a separate text file and use a $(include) line to select the relevant connection file. That way the live documents will select the live connection and development dpocuments will connect to the dev data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2014 11:51:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639697#M679242</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-05-20T11:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the database password</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639698#M679243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Just create 2 connection strings one for Dev and other for Prod.&lt;/P&gt;&lt;P&gt;Comment out the connection string, in&amp;nbsp; which region u are not working&amp;nbsp; on..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX:&amp;nbsp; &lt;/P&gt;&lt;P&gt;Assume bellow is the&amp;nbsp; 2 connection strings&lt;/P&gt;&lt;P&gt;Connection_String_Dev&lt;/P&gt;&lt;P&gt;Connection_String_Prod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u are working in &lt;STRONG&gt;Dev&lt;/STRONG&gt; region, use the bellow format&lt;/P&gt;&lt;P&gt;Connection_String_Dev&lt;/P&gt;&lt;P&gt;// Connection_String_Prod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u are working in &lt;STRONG&gt;Prod&lt;/STRONG&gt; region, use the bellow format&lt;/P&gt;&lt;P&gt;//Connection_String_Dev&lt;/P&gt;&lt;P&gt;Connection_String_Prod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2014 11:52:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-the-database-password/m-p/639698#M679243</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2014-05-20T11:52:55Z</dc:date>
    </item>
  </channel>
</rss>

