Viewing 15 posts - 3,781 through 3,795 (of 15,381 total)
Smash125 (9/19/2014)
to get the results some like this
34.100 34.000 ->34%
39.800 40.000 ->40%
35.400 35.000 ->35%
But this does not holds...
September 19, 2014 at 8:01 am
phingers (9/19/2014)
September 19, 2014 at 7:58 am
The biggest problem you have is that your trigger cannot handle multiple row operations. You are setting a scalar value from inserted. If an update affects more than 1 row...
September 19, 2014 at 7:57 am
up.sivakumar (9/19/2014)
FROM [LinkedServer].[Database].dbo.[TableName] (NOLOCK)
WHERE <Condition>
The above SQL Script ran successfully up to yesterday. But today its throws the below error message.
Remote table-valued function calls are not...
September 19, 2014 at 7:52 am
Awesome job posting sample data and ddl. The challenge I see is that you didn't post enough data. Following your business rules:
--Now that the data is loaded, I need to...
September 18, 2014 at 1:43 pm
waseemshaikh345 (9/18/2014)
September 18, 2014 at 12:10 pm
Robert Vogelezang (9/18/2014)
My goodness, that simple!Thanks!
No problem. Glad that worked for you and thanks for letting me know.
September 18, 2014 at 10:03 am
Are you thinking that somehow your view has two columns or two names? When you use UNION or UNION ALL (which if probably more appropriate here) the column name will...
September 18, 2014 at 9:10 am
Robert Vogelezang (9/18/2014)
I'll try again.
I have two tables:
warehouses
warehouse (pk)
departments
department (pk)
create view as
select warehouse from warehouses...
September 18, 2014 at 9:08 am
waseemshaikh345 (9/18/2014)
September 18, 2014 at 8:57 am
Robert Vogelezang (9/18/2014)
The view (1) below selects all warehouses and departments.
In 2 I want...
September 18, 2014 at 8:48 am
waseemshaikh345 (9/18/2014)
I am trying to create a report that shows how many accounts have been payed in the past 30 days of every month and year. I have already...
September 18, 2014 at 8:33 am
Ryan Keast (9/18/2014)
I'm not a natural at all of this as no one has...
September 18, 2014 at 8:15 am
Let's start with some formatting so that query is legible.
SELECT COUNT(C.[Place Referance]) AS [April Total Voids]
FROM (
SELECT DISTINCT TOP 100 PERCENT HIST.[PLACE-REF] AS 'Place Referance'
,PLA.[address1] AS 'Address Line1'
,HIST.[START-DATE] AS 'Void...
September 18, 2014 at 7:51 am
Priya004 (9/18/2014)
Hi,Need a query to compre two database schemas.
I have seen lot of comparision tools but need a query.
Thanks
The reason there are tools is because you can't do this with...
September 18, 2014 at 7:46 am
Viewing 15 posts - 3,781 through 3,795 (of 15,381 total)