Viewing 10 posts - 1 through 10 (of 10 total)
Hi... Can anyone help please? 🙂
With regards to SSAS and MDX
July 10, 2015 at 2:36 am
SELECT convert(varchar,(cast(dateadd(d,-1,GETDATE())AS date)),112)
July 6, 2015 at 3:02 am
Do you have a SSIS log?
July 3, 2015 at 3:59 pm
Do you have an SQL queries to substantiate that your keys are unique(rows are not duplicated)?
Could you try the SQL that is used during cube processing?
July 3, 2015 at 3:58 pm
Hi,
If you are using for-each then sequential process is unavoidable.
I have 2 solutions for you,
1. If you have several types of files(*.xls,*.txt, *csv) then you may have that much number...
October 10, 2013 at 11:59 pm
in the area where you give SQL query say,
"delete from tableA where createdate= ? "
and in parameters tab in the source editor, please add an input parameter. user::Mydate is the...
August 7, 2013 at 1:04 am
Hi,
Could you be a little more elaborative?
Assuming that you have difficulty passing the date,
1. I'd suggest : Use an sQL query to get the first day of the current...
August 5, 2013 at 12:00 pm
No direct way of doing this.
You could follow the previous comment and back track your triggers.
or
SELECT 'select '+sys.syscolumns.name +' FROM '+ sys.sysobjects.name +' where '
+sys.syscolumns.name +' = 136 'FROM sys.syscolumns
INNER...
August 5, 2013 at 11:50 am
1. Use the OLEDB source component. In the source editor, choose the 'Data Access Mode' as SQL Command.
2. In SQL Command Text, provide the procedure to be executed. Eg :...
August 5, 2013 at 11:27 am
Hey Erik,
I created a table #temp with one field. I inserted four rows in it. Then tried the replace statement as you did.
CREATE TABLE #temp ( word VARCHAR(100))
SELECT * FROM...
February 12, 2013 at 7:52 am
Viewing 10 posts - 1 through 10 (of 10 total)