From jnatola at hotmail.com Thu Jul 10 18:22:44 2014 From: jnatola at hotmail.com (J- P) Date: Thu, 10 Jul 2014 19:22:44 -0400 Subject: [dba-SQLServer] =?big5?b?SGVscCBvbiBJbmNvcnJlY3Qgc3ludGF4IG5lYXIg?= =?big5?b?J6GlJy4=?= Message-ID: So i'm trying to reset the BES password and this error keeps showing Msg 102, Level 15, State 1, Line 13 Incorrect syntax near ''. Msg 102, Level 15, State 1, Line 14 Incorrect syntax near ''. Msg 102, Level 15, State 1, Line 15 Incorrect syntax near ''. Msg 102, Level 15, State 1, Line 21 Incorrect syntax near ''. Msg 102, Level 15, State 1, Line 23 Incorrect syntax near ''. Msg 102, Level 15, State 1, Line 24 Incorrect syntax near ''. DECLARE @DisplayName VARCHAR(256), @Authentication VARCHAR(256), @AuthenticatorTypeId INT, @AuthenticatorInstanceId INT, @ExternalAuthenticatorId VARCHAR(255), @EncryptedPassword VARCHAR(256) /************************************************************ Start of editing required section *************************************************************/ SET @DisplayName = ?System Administrator? ? Display name (Not always used) SET @Authentication = ?BAS? ? ?BAS? for BAS authentication SET @EncryptedPassword = ?2951a982f568f15567b7c6e0e50990b9? ? Encrypted string of password ?blackberry? /************************************************************ End of editing required section *************************************************************/ IF @Authentication LIKE ?BAS? BEGIN SET @AuthenticatorTypeId = 0 ? Set to 0 for BAS SET @AuthenticatorInstanceId = 0 ? Set to 0 for BAS SET @ExternalAuthenticatorId = NULL EXEC SetUpBASorADAuthentication @DisplayName, @AuthenticatorTypeId, @AuthenticatorInstanceId, @ExternalAuthenticatorId, @EncryptedPassword END GO Jean-Paul Natola From jnatola at hotmail.com Thu Jul 10 18:25:05 2014 From: jnatola at hotmail.com (J- P) Date: Thu, 10 Jul 2014 19:25:05 -0400 Subject: [dba-SQLServer] =?big5?b?SGVscCBvbiBJbmNvcnJlY3Qgc3ludGF4IG5lYXIg?= =?big5?b?J6GlJy4=?= In-Reply-To: References: Message-ID: seems like formatting was lost here is the error Incorrect syntax near '?' Jean-Paul Natola ---------------------------------------- > From: jnatola at hotmail.com > To: dba-sqlserver at databaseadvisors.com > Date: Thu, 10 Jul 2014 19:22:44 -0400 > Subject: [dba-SQLServer] Help on Incorrect syntax near '?'. > > So i'm trying to reset the BES password and this error keeps showing > > > > Msg 102, Level 15, State 1, Line 13 > > > > Incorrect syntax near ''. > > > > Msg 102, Level 15, State 1, Line 14 > > > > Incorrect syntax near ''. > > > > Msg 102, Level 15, State 1, Line 15 > > > > Incorrect syntax near ''. > > > > Msg 102, Level 15, State 1, Line 21 > > > > Incorrect syntax near ''. > > > > Msg 102, Level 15, State 1, Line 23 > > > > Incorrect syntax near ''. > > > > Msg 102, Level 15, State 1, Line 24 > > > > Incorrect syntax near ''. > > > > > > > > DECLARE > @DisplayName VARCHAR(256), > @Authentication VARCHAR(256), > @AuthenticatorTypeId INT, > @AuthenticatorInstanceId INT, > @ExternalAuthenticatorId VARCHAR(255), > @EncryptedPassword VARCHAR(256) > > /************************************************************ > Start of editing required section > *************************************************************/ > > SET @DisplayName = ?System Administrator? ? Display name (Not always used) > SET @Authentication = ?BAS? ? ?BAS? for BAS authentication > SET @EncryptedPassword = ?2951a982f568f15567b7c6e0e50990b9? ? Encrypted string of password ?blackberry? > > /************************************************************ > End of editing required section > *************************************************************/ > > IF @Authentication LIKE ?BAS? > BEGIN > SET @AuthenticatorTypeId = 0 ? Set to 0 for BAS > SET @AuthenticatorInstanceId = 0 ? Set to 0 for BAS > SET @ExternalAuthenticatorId = NULL > > EXEC SetUpBASorADAuthentication @DisplayName, @AuthenticatorTypeId, @AuthenticatorInstanceId, @ExternalAuthenticatorId, @EncryptedPassword > > END > GO > > > Jean-Paul Natola > > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > From paul.hartland at googlemail.com Thu Jul 10 19:30:59 2014 From: paul.hartland at googlemail.com (Paul Hartland) Date: Fri, 11 Jul 2014 01:30:59 +0100 Subject: [dba-SQLServer] =?utf-8?q?Help_on_Incorrect_syntax_near_=27?= =?utf-8?b?4oCYJy4=?= In-Reply-To: References: Message-ID: Just a quick idea, as an example take the line SET @DisplayName = ?System Administrator? ? Display name (Not always used) do you actually have the ? Display name (Not always used) on the line in your code, if so it only looks like a single dash '-' try replacing the single - with two dashes -- so that the SET line above becomes SET @DisplayName = ?System Administrator? -- Display name (Not always used) Paul On 11 July 2014 00:25, J- P wrote: > seems like formatting was lost here is the error > > Incorrect syntax near '?' > > > > > > > > > > Jean-Paul Natola > > > > > ---------------------------------------- > > From: jnatola at hotmail.com > > To: dba-sqlserver at databaseadvisors.com > > Date: Thu, 10 Jul 2014 19:22:44 -0400 > > Subject: [dba-SQLServer] Help on Incorrect syntax near '?'. > > > > So i'm trying to reset the BES password and this error keeps showing > > > > > > > > Msg 102, Level 15, State 1, Line 13 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 14 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 15 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 21 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 23 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 24 > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > > > > > DECLARE > > @DisplayName VARCHAR(256), > > @Authentication VARCHAR(256), > > @AuthenticatorTypeId INT, > > @AuthenticatorInstanceId INT, > > @ExternalAuthenticatorId VARCHAR(255), > > @EncryptedPassword VARCHAR(256) > > > > /************************************************************ > > Start of editing required section > > *************************************************************/ > > > > SET @DisplayName = ?System Administrator? ? Display name (Not always > used) > > SET @Authentication = ?BAS? ? ?BAS? for BAS authentication > > SET @EncryptedPassword = ?2951a982f568f15567b7c6e0e50990b9? ? Encrypted > string of password ?blackberry? > > > > /************************************************************ > > End of editing required section > > *************************************************************/ > > > > IF @Authentication LIKE ?BAS? > > BEGIN > > SET @AuthenticatorTypeId = 0 ? Set to 0 for BAS > > SET @AuthenticatorInstanceId = 0 ? Set to 0 for BAS > > SET @ExternalAuthenticatorId = NULL > > > > EXEC SetUpBASorADAuthentication @DisplayName, @AuthenticatorTypeId, > @AuthenticatorInstanceId, @ExternalAuthenticatorId, @EncryptedPassword > > > > END > > GO > > > > > > Jean-Paul Natola > > > > _______________________________________________ > > dba-SQLServer mailing list > > dba-SQLServer at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > > http://www.databaseadvisors.com > > > > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > > -- Paul Hartland paul.hartland at googlemail.com From ab-mi at post3.tele.dk Fri Jul 11 02:49:56 2014 From: ab-mi at post3.tele.dk (Asger Blond) Date: Fri, 11 Jul 2014 09:49:56 +0200 Subject: [dba-SQLServer] Help on Incorrect syntax near '?'. References: Message-ID: If '?' meant to be a single character wildcard, then in SQL it should be an underscore: '_' / Asger ----- Original meddelelse ----- > Fra: J- P > Til: sql list > Dato: Fre, 11. jul 2014 01:25 > Emne: Re: [dba-SQLServer] Help on Incorrect syntax near '?'. > > seems like formatting was lost here is the error > > Incorrect syntax near '??' > > > > > > > > > > Jean-Paul Natola > > > > > ---------------------------------------- > > From: jnatola at hotmail.com > > To: dba-sqlserver at databaseadvisors.com > > Date: Thu, 10 Jul 2014 19:22:44 -0400 > > Subject: [dba-SQLServer] Help on Incorrect syntax near '??'. > > > > So i'm trying to reset the BES password and this error keeps > showing > > > > > > > > Msg 102, Level 15, State 1, Line 13 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 14 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 15 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 21 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 23 > > > > > > > > Incorrect syntax near ''. > > > > > > > > Msg 102, Level 15, State 1, Line 24 > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > > > > > DECLARE > > @DisplayName VARCHAR(256), > > @Authentication VARCHAR(256), > > @AuthenticatorTypeId INT, > > @AuthenticatorInstanceId INT, > > @ExternalAuthenticatorId VARCHAR(255), > > @EncryptedPassword VARCHAR(256) > > > > /************************************************************ > > Start of editing required section > > *************************************************************/ > > > > SET @DisplayName = ??System Administrator?? ?V Display name (Not > always used) > > SET @Authentication = ??BAS?? ?V ??BAS?? for BAS authentication > > SET @EncryptedPassword = ??2951a982f568f15567b7c6e0e50990b9?? ?V > Encrypted string of password ??blackberry?? > > > > /************************************************************ > > End of editing required section > > *************************************************************/ > > > > IF @Authentication LIKE ??BAS?? > > BEGIN > > SET @AuthenticatorTypeId = 0 ?V Set to 0 for BAS > > SET @AuthenticatorInstanceId = 0 ?V Set to 0 for BAS > > SET @ExternalAuthenticatorId = NULL > > > > EXEC SetUpBASorADAuthentication @DisplayName, @AuthenticatorTypeId, > @AuthenticatorInstanceId, @ExternalAuthenticatorId, > @EncryptedPassword > > > > END > > GO > > > > > > Jean-Paul Natola > > > > _______________________________________________ > > dba-SQLServer mailing list > > dba-SQLServer at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > > http://www.databaseadvisors.com > > > > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com From jnatola at hotmail.com Fri Jul 11 21:51:28 2014 From: jnatola at hotmail.com (J- P) Date: Fri, 11 Jul 2014 22:51:28 -0400 Subject: [dba-SQLServer] =?big5?b?SGVscCBvbiBJbmNvcnJlY3Qgc3ludGF4IG5lYXIg?= =?big5?b?J6GlJy4=?= In-Reply-To: References: , , Message-ID: greatly appreciated, i will test and report my findings. thank Jean-Paul Natola > Date: Fri, 11 Jul 2014 01:30:59 +0100 > From: paul.hartland at googlemail.com > To: dba-sqlserver at databaseadvisors.com > Subject: Re: [dba-SQLServer] Help on Incorrect syntax near '?'. > > Just a quick idea, as an example take the line > > SET @DisplayName = ?System Administrator? ? Display name (Not always used) > > do you actually have the ? Display name (Not always used) on the line in > your code, if so it only looks like a single dash '-' try replacing the > single - with two dashes -- so that the SET line above becomes > > SET @DisplayName = ?System Administrator? -- Display name (Not always used) > > > Paul > > > On 11 July 2014 00:25, J- P wrote: > > > seems like formatting was lost here is the error > > > > Incorrect syntax near '?' > > > > > > > > > > > > > > > > > > > > Jean-Paul Natola > > > > > > > > > > ---------------------------------------- > > > From: jnatola at hotmail.com > > > To: dba-sqlserver at databaseadvisors.com > > > Date: Thu, 10 Jul 2014 19:22:44 -0400 > > > Subject: [dba-SQLServer] Help on Incorrect syntax near '?'. > > > > > > So i'm trying to reset the BES password and this error keeps showing > > > > > > > > > > > > Msg 102, Level 15, State 1, Line 13 > > > > > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > Msg 102, Level 15, State 1, Line 14 > > > > > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > Msg 102, Level 15, State 1, Line 15 > > > > > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > Msg 102, Level 15, State 1, Line 21 > > > > > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > Msg 102, Level 15, State 1, Line 23 > > > > > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > Msg 102, Level 15, State 1, Line 24 > > > > > > > > > > > > Incorrect syntax near ''. > > > > > > > > > > > > > > > > > > > > > > > > DECLARE > > > @DisplayName VARCHAR(256), > > > @Authentication VARCHAR(256), > > > @AuthenticatorTypeId INT, > > > @AuthenticatorInstanceId INT, > > > @ExternalAuthenticatorId VARCHAR(255), > > > @EncryptedPassword VARCHAR(256) > > > > > > /************************************************************ > > > Start of editing required section > > > *************************************************************/ > > > > > > SET @DisplayName = ?System Administrator? ? Display name (Not always > > used) > > > SET @Authentication = ?BAS? ? ?BAS? for BAS authentication > > > SET @EncryptedPassword = ?2951a982f568f15567b7c6e0e50990b9? ? Encrypted > > string of password ?blackberry? > > > > > > /************************************************************ > > > End of editing required section > > > *************************************************************/ > > > > > > IF @Authentication LIKE ?BAS? > > > BEGIN > > > SET @AuthenticatorTypeId = 0 ? Set to 0 for BAS > > > SET @AuthenticatorInstanceId = 0 ? Set to 0 for BAS > > > SET @ExternalAuthenticatorId = NULL > > > > > > EXEC SetUpBASorADAuthentication @DisplayName, @AuthenticatorTypeId, > > @AuthenticatorInstanceId, @ExternalAuthenticatorId, @EncryptedPassword > > > > > > END > > > GO > > > > > > > > > Jean-Paul Natola > > > > > > _______________________________________________ > > > dba-SQLServer mailing list > > > dba-SQLServer at databaseadvisors.com > > > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > > > http://www.databaseadvisors.com > > > > > > > _______________________________________________ > > dba-SQLServer mailing list > > dba-SQLServer at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > > http://www.databaseadvisors.com > > > > > > > -- > Paul Hartland > paul.hartland at googlemail.com > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > From fuller.artful at gmail.com Wed Jul 23 06:56:10 2014 From: fuller.artful at gmail.com (Arthur Fuller) Date: Wed, 23 Jul 2014 07:56:10 -0400 Subject: [dba-SQLServer] SQL 2012 BIDS? Message-ID: Only recently have I had the need to run BIDS on SQL 2012 -- only to discover that it isn't there. Granted, I'm running the Express version, so perhaps it's not included. I'll check the site to make sure. Is it a separate download, or a deprecated product, or what? -- Arthur From paul.hartland at googlemail.com Wed Jul 23 12:44:47 2014 From: paul.hartland at googlemail.com (Paul Hartland) Date: Wed, 23 Jul 2014 18:44:47 +0100 Subject: [dba-SQLServer] SQL 2012 BIDS? In-Reply-To: References: Message-ID: I can't remember if I had to download the SQL Server Express 2012 advanced to get it or also installed Visual Studio Express as well, but it is there somewhere, sorry not much help as haven't used it much, but I may need to as just started a job as an SSRS report developer and need to know all about OLAP cubes and MDX which never even tried before so going to be a steep learning curve I think.. On 23 July 2014 12:56, Arthur Fuller wrote: > Only recently have I had the need to run BIDS on SQL 2012 -- only to > discover that it isn't there. Granted, I'm running the Express version, so > perhaps it's not included. I'll check the site to make sure. Is it a > separate download, or a deprecated product, or what? > > -- > Arthur > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > > -- Paul Hartland paul.hartland at googlemail.com From Damien.Solodow at harrison.edu Wed Jul 23 12:46:18 2014 From: Damien.Solodow at harrison.edu (Damien Solodow) Date: Wed, 23 Jul 2014 17:46:18 +0000 Subject: [dba-SQLServer] SQL 2012 BIDS? In-Reply-To: References: Message-ID: <04E26BCF73774949871E317AB0923ED297682619@ENTEXMBX01.ibcschools.edu> http://blogs.technet.com/b/ilikesql_by_dandyman/archive/2013/03/10/installing-sql-server-data-tools-bi-and-data-projects-in-visual-studio-2012-or-visual-studio-2012-shell.aspx DAMIEN SOLODOW Systems Engineer 317.447.6033 (office) 317.447.6014 (fax) HARRISON COLLEGE -----Original Message----- From: dba-sqlserver-bounces at databaseadvisors.com [mailto:dba-sqlserver-bounces at databaseadvisors.com] On Behalf Of Paul Hartland Sent: Wednesday, July 23, 2014 1:45 PM To: Discussion concerning MS SQL Server Subject: Re: [dba-SQLServer] SQL 2012 BIDS? I can't remember if I had to download the SQL Server Express 2012 advanced to get it or also installed Visual Studio Express as well, but it is there somewhere, sorry not much help as haven't used it much, but I may need to as just started a job as an SSRS report developer and need to know all about OLAP cubes and MDX which never even tried before so going to be a steep learning curve I think.. On 23 July 2014 12:56, Arthur Fuller wrote: > Only recently have I had the need to run BIDS on SQL 2012 -- only to > discover that it isn't there. Granted, I'm running the Express > version, so perhaps it's not included. I'll check the site to make > sure. Is it a separate download, or a deprecated product, or what? > > -- > Arthur > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > > -- Paul Hartland paul.hartland at googlemail.com _______________________________________________ dba-SQLServer mailing list dba-SQLServer at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-sqlserver http://www.databaseadvisors.com From fuller.artful at gmail.com Wed Jul 23 17:03:31 2014 From: fuller.artful at gmail.com (Arthur Fuller) Date: Wed, 23 Jul 2014 18:03:31 -0400 Subject: [dba-SQLServer] SQL 2012 BIDS? In-Reply-To: <04E26BCF73774949871E317AB0923ED297682619@ENTEXMBX01.ibcschools.edu> References: <04E26BCF73774949871E317AB0923ED297682619@ENTEXMBX01.ibcschools.edu> Message-ID: Got it. Thanks, guys. Arthur On Wed, Jul 23, 2014 at 1:46 PM, Damien Solodow wrote: > > http://blogs.technet.com/b/ilikesql_by_dandyman/archive/2013/03/10/installing-sql-server-data-tools-bi-and-data-projects-in-visual-studio-2012-or-visual-studio-2012-shell.aspx > > DAMIEN SOLODOW > Systems Engineer > 317.447.6033 (office) > 317.447.6014 (fax) > HARRISON COLLEGE > From paul.hartland at googlemail.com Wed Jul 23 19:27:16 2014 From: paul.hartland at googlemail.com (Paul Hartland) Date: Thu, 24 Jul 2014 01:27:16 +0100 Subject: [dba-SQLServer] SQL 2012 BIDS? In-Reply-To: References: <04E26BCF73774949871E317AB0923ED297682619@ENTEXMBX01.ibcschools.edu> Message-ID: by the way if anyone knows a simple way of learning/explaining designing and making cubes and using MDX can you point me in the right direction please. Thank You Paul On 23 July 2014 23:03, Arthur Fuller wrote: > Got it. Thanks, guys. > > Arthur > > > On Wed, Jul 23, 2014 at 1:46 PM, Damien Solodow < > Damien.Solodow at harrison.edu > > wrote: > > > > > > http://blogs.technet.com/b/ilikesql_by_dandyman/archive/2013/03/10/installing-sql-server-data-tools-bi-and-data-projects-in-visual-studio-2012-or-visual-studio-2012-shell.aspx > > > > DAMIEN SOLODOW > > Systems Engineer > > 317.447.6033 (office) > > 317.447.6014 (fax) > > HARRISON COLLEGE > > > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > > -- Paul Hartland paul.hartland at googlemail.com From fuller.artful at gmail.com Thu Jul 24 04:06:32 2014 From: fuller.artful at gmail.com (Arthur Fuller) Date: Thu, 24 Jul 2014 05:06:32 -0400 Subject: [dba-SQLServer] SQL 2012 BIDS? In-Reply-To: References: <04E26BCF73774949871E317AB0923ED297682619@ENTEXMBX01.ibcschools.edu> Message-ID: Paul, There's a five-part series of articles available from Code Project. Here is a link to one of them. You can reach the rest of the series from here. The series includes several zip files so you can build the sample project and follow along as you read. http://www.codeproject.com/Articles/658912/Create-First-OLAP-Cube-in-SQL-Server-Analysis-Serv Hope this helps. Arthur On Wed, Jul 23, 2014 at 8:27 PM, Paul Hartland wrote: > by the way if anyone knows a simple way of learning/explaining designing > and making cubes and using MDX can you point me in the right direction > please. > > Thank You > > Paul > > > On 23 July 2014 23:03, Arthur Fuller wrote: > > > Got it. Thanks, guys. > > > > Arthur > > > > > > On Wed, Jul 23, 2014 at 1:46 PM, Damien Solodow < > > Damien.Solodow at harrison.edu > > > wrote: > > > > > > > > > > > http://blogs.technet.com/b/ilikesql_by_dandyman/archive/2013/03/10/installing-sql-server-data-tools-bi-and-data-projects-in-visual-studio-2012-or-visual-studio-2012-shell.aspx > > > > > > DAMIEN SOLODOW > > > Systems Engineer > > > 317.447.6033 (office) > > > 317.447.6014 (fax) > > > HARRISON COLLEGE > > > > > _______________________________________________ > > dba-SQLServer mailing list > > dba-SQLServer at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > > http://www.databaseadvisors.com > > > > > > > -- > Paul Hartland > paul.hartland at googlemail.com > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > > -- Arthur From paul.hartland at googlemail.com Thu Jul 24 22:27:38 2014 From: paul.hartland at googlemail.com (Paul Hartland) Date: Fri, 25 Jul 2014 04:27:38 +0100 Subject: [dba-SQLServer] SQL 2012 BIDS? In-Reply-To: References: <04E26BCF73774949871E317AB0923ED297682619@ENTEXMBX01.ibcschools.edu> Message-ID: oh cool, cheers Arthur will give it a bash over the weekend, thank you. On 24 July 2014 10:06, Arthur Fuller wrote: > Paul, > > There's a five-part series of articles available from Code Project. Here is > a link to one of them. You can reach the rest of the series from here. The > series includes several zip files so you can build the sample project and > follow along as you read. > > > http://www.codeproject.com/Articles/658912/Create-First-OLAP-Cube-in-SQL-Server-Analysis-Serv > > Hope this helps. > Arthur > > > > > On Wed, Jul 23, 2014 at 8:27 PM, Paul Hartland < > paul.hartland at googlemail.com > > wrote: > > > by the way if anyone knows a simple way of learning/explaining designing > > and making cubes and using MDX can you point me in the right direction > > please. > > > > Thank You > > > > Paul > > > > > > On 23 July 2014 23:03, Arthur Fuller wrote: > > > > > Got it. Thanks, guys. > > > > > > Arthur > > > > > > > > > On Wed, Jul 23, 2014 at 1:46 PM, Damien Solodow < > > > Damien.Solodow at harrison.edu > > > > wrote: > > > > > > > > > > > > > > > > > http://blogs.technet.com/b/ilikesql_by_dandyman/archive/2013/03/10/installing-sql-server-data-tools-bi-and-data-projects-in-visual-studio-2012-or-visual-studio-2012-shell.aspx > > > > > > > > DAMIEN SOLODOW > > > > Systems Engineer > > > > 317.447.6033 (office) > > > > 317.447.6014 (fax) > > > > HARRISON COLLEGE > > > > > > > _______________________________________________ > > > dba-SQLServer mailing list > > > dba-SQLServer at databaseadvisors.com > > > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > > > http://www.databaseadvisors.com > > > > > > > > > > > > -- > > Paul Hartland > > paul.hartland at googlemail.com > > _______________________________________________ > > dba-SQLServer mailing list > > dba-SQLServer at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > > http://www.databaseadvisors.com > > > > > > > -- > Arthur > _______________________________________________ > dba-SQLServer mailing list > dba-SQLServer at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-sqlserver > http://www.databaseadvisors.com > > -- Paul Hartland paul.hartland at googlemail.com