Viewing 15 posts - 16 through 30 (of 47 total)
I was talking about SSAS DB Backups, did you mean another thing when you were saying datawarehouse db?
February 26, 2010 at 6:19 am
You have to put Sheet1$ like this [Sheet1$], if I remember from the old days. Maybe next time you should change the table name when you use data import/export wizard.
February 26, 2010 at 6:15 am
Maybe you can use excel in the middle, since it extracts data from html tables.
Excel 2007: Ribbon Data, From Web.
February 26, 2010 at 6:12 am
You want to change the entire server default language, one logins or one sessions language.
When changing language, the sql server messages will change, the datefirst may be different, the datenames...
February 26, 2010 at 6:04 am
The login name in sql can be different from the user name on the db, can you check it? It probably has nothing to do with AD.
February 26, 2010 at 5:49 am
read this link about ssas backups Managing Analysis Services Deployment - Part 3[/url].
You can also use AMO in C#, vb, poweshell, .... Or XMLA.
When you take...
February 26, 2010 at 5:39 am
Maybe because your login name on the server is different from the user in the database?
February 26, 2010 at 5:26 am
Hi.
The statement "With table(...) is a replacement for your table. You don't have to put it on your sql. just the rest. In my posts I use another cte, so...
February 25, 2010 at 5:28 am
some links:
Running Parameterized SQL Commands Using the Execute SQL Task – I[/url]
Running Parameterized SQL Commands using the Execute SQL Task – II[/url]
February 25, 2010 at 5:09 am
Hi.
Inside the For Each configuration you need to map each recordset column you need into a variable. Then you need to assign those variables to parameters of the sql task...
February 25, 2010 at 4:43 am
Even another way (after reading Divya Agrawal POST)
;WITH Table1 (Col1,Col2,Col3)AS(
SELECT 1, 'A', 'A1'
UNION ALL
SELECT 2, 'B', 'A2'
...
February 25, 2010 at 4:21 am
Another way
;WITH Table1 (Col1,Col2,Col3)AS(
SELECT 1, 'A', 'A1'
UNION ALL
SELECT 2, 'B', 'A2'
UNION ALL
...
February 25, 2010 at 4:11 am
Hi
You can read about it in http://www.mssqltips.com/tip.asp?tip=1405. I just googled it as "SSIS configuration". If it's just connections or simple variables you can also doit other way: U can set...
December 24, 2008 at 5:43 am
Matt Miller (12/12/2008)
Skull Killer (12/12/2008)
It will error exactly because of the deletes, as I said in the article.
What article????? Wow it really must be Friday - I'm feeling my...
December 13, 2008 at 9:15 am
It will error exactly because of the deletes, as I said in the article.
This kinds of things are requires because it's one of the rules of the quality of service...
December 12, 2008 at 11:22 am
Viewing 15 posts - 16 through 30 (of 47 total)