Viewing 15 posts - 391 through 405 (of 451 total)
You could do something like:
DECLARE @operation as Varchar(10);
DECLARE @Count as int;
SET @operation = 'Inserted';
SELECT @Count = COUNT(*) FROM...
September 12, 2012 at 9:54 pm
GSquared (9/12/2012)
So, the table is "tblJob" in the first query (in the OBJECT_ID function-call), but it's "tblWorkOrder" in the second query. Is that intentional?
Doh!!! Thank you -- I...
September 12, 2012 at 8:52 am
I tried with single, double and no quotes around the stat name with same result.
The idea about a typo is a good one; so I dragged and dropped...
September 12, 2012 at 8:41 am
You cannot attach to a SQL Server 2012 database from an earlier version of SQL Server. Download the Adventure Works for your particular version of SQL Server from CodePlex.
HTH,
Rob
September 9, 2012 at 9:34 pm
I'd guess a permissions issue. What account is the SQL Agent job running under? Does that user have permissions to see the folder where the flat file is?
HTH,
Rob
September 9, 2012 at 9:30 pm
Look at adding three parameters to your report (@Statedate, @enddate and @value). It's pretty straight-forward in Report Builder or Visual Studio. Just right-click on paramters and add a...
September 9, 2012 at 9:26 pm
Setting ConsumeContainerWhitespace to True (from default False) doesn't change the report width.
September 4, 2012 at 3:02 pm
The '+' operator does string concatenation in T-SQL. Assuming CSN and Name are both string columns in your table. You can:
SELECT CSN + ' ' + [Name] AS...
August 31, 2012 at 1:14 am
Try doing a derived column transformation to parse out your original varchar(10) string to your mm-dd-yyyy string that you want, then use a data conversion transform to change the mm-dd-yyyy...
August 31, 2012 at 1:04 am
Do you use fuzzy grouping or fuzzy lookup transformations? If not, you're probably okay.
HTH,
Rob
August 31, 2012 at 1:01 am
What are these things that are opened or closed? Sales orders? Estimates? Claims? (I guess it really doesn't matter, but it helps me wrap my head around the...
August 29, 2012 at 1:12 pm
Why wouldn't you have a DimSystem that describes the systems as well as a FactSystem that has your measures (Count, # of users, uptime, ...)?
Rob
August 28, 2012 at 6:51 am
My first guess would be a permisisons issue. Does the account the SQL Agent job is running under have needed permissions to access that batch file?
Just a thought,
Rob
August 23, 2012 at 1:08 pm
While I know it's theoretically possible to build your SSAS db from a normalized relational db, I've never done it (nor seen it). I've always used a star schema...
August 21, 2012 at 9:34 pm
I'd say your dimension goes in your data warehouse/data mart. I'm not sure from your description if that is #2 or #3.
--
#1) I'm assuming that your transactional system (AX)...
August 21, 2012 at 9:23 pm
Viewing 15 posts - 391 through 405 (of 451 total)