Viewing 15 posts - 631 through 645 (of 902 total)
It depends, if you install BIDSHelper you can just deploy any calculated measures that you've added without the hassel of having to got through a full deployment.
The other option is...
October 30, 2012 at 4:18 am
Actually the answer is Yes, the reporting service database doesnt need to be on the same server as the reporting services service.
October 30, 2012 at 3:53 am
we're actually talking about the base connection in connection manager, as far as im aware they dont use nvarchar(MAX), as a data type its likley to be DT_WSTR.
if you open...
October 30, 2012 at 3:51 am
No problem cory,
I'd recommend Dwains solution which uses the ROW_NUMBER() OVER
October 30, 2012 at 3:31 am
dwain.c (10/30/2012)
-- DDL
DECLARE @T TABLE
(RecordID INT, ItemID INT, MaxOfCost MONEY)
--...
October 30, 2012 at 2:16 am
heres a quick and dirty way
CREATE Table #results
(
RecordId Int
,ItemId Int
,cost Decimal(38,2)
)
Insert into #results
values (43392, 3880 ,50.00)
,(39056, 3881, 93.75)
,(33941, 3881, 97.50)
,(33970, 3881, 97.50)
,(38950, 3881,...
October 30, 2012 at 2:11 am
Hi Cory,
DDL is Data Definition language, eg Table defs etc
DML is Data Manipulation language, eg the Select/Insert statements
I see you posted some sample data so I'll have a look...
October 30, 2012 at 2:02 am
Having come across this error a lot, its actually on the source connection, there must be data that is greater than the column length definition.
One way you can check this...
October 30, 2012 at 1:48 am
Can you supply the DDL and DML as well as sample data and expected results as this will help us understand the data and what results you want.
Is there a...
October 30, 2012 at 1:23 am
You didnt really need to restart the SQL Engine.
There are a few good resources abuiot, I have the MS press book :MS SQL Server Performance Tuning and optimisation, its a...
October 29, 2012 at 10:14 am
I'd not worry about using a CTE as in this case it really doesnt add anything to the query performance.
Thanks for the plan, Looking at the plan the index...
October 29, 2012 at 9:24 am
You can partition based on the Orderdate,
what you would do is Left Align the partition with the partition being set as 01-JAN-YYYY 00:00:00, this will then create stripes. ...
October 29, 2012 at 8:53 am
I suppose the first question is what state are the Indexes in, do you run regular Db maintentance jobs on the indexes?
If they are highly fragmented, then you could...
October 29, 2012 at 8:11 am
Actually your table design is not quite right.
I would set it up as
Create Table WorkPlace
(
WorkPlaceCode (PK)
,WRegn
,WorkplaceName
,NumberOfEmployees
,Address_Id
)
CREATE Table Employee
(
EmpNum (PK)
,EmpName
,WorkPlaceCode (FK)
)
CREATE Table Address
(
Address_Id (PK)
,Address1
,Address2
.....
)
This way you assign an...
October 29, 2012 at 1:56 am
Yes, all the permissions you need are on the MSDB database.
I think you need to assign them to the SQLAgentOperatorRole and db_ssisoperator role, but you will need to check if...
October 23, 2012 at 8:57 am
Viewing 15 posts - 631 through 645 (of 902 total)