Viewing 15 posts - 226 through 240 (of 1,222 total)
Environment variables are actually stored in the registry. So, exporting them using something like "regedt32" will give you a ".reg" file that you can save into source control.
The export...
March 30, 2014 at 8:51 pm
SQL 2008 R2 Express can only be a subscriber (have a look at http://msdn.microsoft.com/en-us/library/cc645993(v=sql.105).ASPX)
So, you will need something like Standard Edition to be able to replication to SQL 2008 R2...
March 25, 2014 at 9:01 pm
Express12 (3/17/2014)
March 17, 2014 at 9:15 pm
Check what version of SSIS was used by your colleague to create the SSIS package. I suspect that a different version was used.
March 16, 2014 at 8:54 pm
doug.brown (3/13/2014)
=IIF(Fields!Employee.Value Is Nothing, "0", SUM(IIF(Fields!Employee.Value = "FullTime",1,0),"Production") ) --- This will give the sum of Fulltime employees
=IIF(Fields!Employee.Value Is Nothing, "0", SUM(IIF(Fields!Employee.Value = "Partime",1,0),"Production") )---- This...
March 13, 2014 at 9:17 pm
Go with Phil's suggestion if you can.
Assuming that you are using separate SQL Server instances, another option is to use "User" environment variables instead of "System" environment variables. Use...
March 12, 2014 at 9:03 pm
aaa121 (2/18/2014)
Could you suggest the best way to structure the following, which I am sure is a common situation.
Ok so I have a monetary value (fact) posted on a...
March 2, 2014 at 7:24 pm
Looks like you haven't installed the SAPBI connector on the server that you are using to run the package from
February 27, 2014 at 8:06 pm
shohelr2003 (2/23/2014)
select * from openrowset(
'Microsoft.ACE.OLEDB.12.0',
'Excel 12.0 Xml;Database=D:\Book1.xlsx;HDR=YES',
'Select * from [Sheet1$]'
)
And received the...
February 24, 2014 at 8:06 pm
Carlo Romagnano (2/20/2014)
Good question!Thanks!
create database DEFAULT_DATABASE
This runs!
create database DELETE
This DOESN'T run!
You can use reserved words that stand for OPTIONS!
Yes but
create database [DELETE]
does work
I am just waiting for someone...
February 20, 2014 at 7:22 pm
Mani-584606 (2/19/2014)
how to perform below maintenance tasks on analysis databases?1. Index defrag
2. Integrity check - DBCC CHECKDB
3. Update statistics
Thanks
These tasks are not relevant to analysis services databases. The...
February 20, 2014 at 7:15 pm
I looked outside - no clouds. In fact it is 40 degrees C outside (104 Fahrenheit) at the moment. I really would have likely for it to be...
February 11, 2014 at 7:30 pm
I suspect that because of the differences between charts in RS 2005 Vs RS 2012, there is no way for the RS 2005 chart to be automatically upgraded in RS...
February 10, 2014 at 7:30 pm
Rather than dropping/renaming tables, how about using the ALTER TABLE...SWITCH command. It will not leave you with any period when the table doesn't exist (SQL manages that for you)...
February 10, 2014 at 7:19 pm
Viewing 15 posts - 226 through 240 (of 1,222 total)