Viewing 15 posts - 11,536 through 11,550 (of 15,377 total)
Lowell (6/21/2012)
Sean Lange (6/21/2012)
Looks like Lowell and I were typing at the same time. π
yeah but your answer is actually better; least amount of access is the best;
my example was...
June 21, 2012 at 11:56 am
This it totally untested because you didn't post any ddl or sample data but...
SELECT t.OriginCity
,t.Destination
,sum(case when t.FlightNumber IS not null and f.OriginAirportCode IS not null and c.BoardIndicator = 'Y' then...
June 21, 2012 at 11:53 am
L' Eomot InversΓ© (6/20/2012)
But I may not find...
June 21, 2012 at 11:43 am
Looks like Lowell and I were typing at the same time. π
June 21, 2012 at 11:30 am
Why do you want to do this via triggers? Why not handle it with standard permissions? Only allow select to other users and allow insert/update/delete to the role these other...
June 21, 2012 at 11:29 am
Well I am not totally sure what this table holds. Is this answers to questionnaire or something along those lines?
I would create tables for Company, Organisation, Region, Contact (or person)...
June 21, 2012 at 10:11 am
You have a couple of serious issues going on here. First this table structure is a type of EAV which is absolutely horrible to work with. This is even worse...
June 21, 2012 at 9:51 am
OK so you open RDP and type in the server name...what error message do you get? This of course has absolutely nothing with sql server but we can try to...
June 21, 2012 at 8:47 am
Prasad.N (6/21/2012)
Regarding above issue I got a answer
declare @var1 varchar(5000)
declare @table table (ColNames varchar(5000))
insert into @table
----here i doesn't want COLUMN45,COLUMN46,COLUMN35(you need to write which columns doesn't want)
select...
June 21, 2012 at 8:45 am
ashuthinks (6/21/2012)
DECLARE @CSV NVARCHAR(4000) = ''
DECLARE @CurveFamily_Swap INT = dbo.GetConfigurationValue_Int('Fireball', 'CurveFamily -...
June 21, 2012 at 8:22 am
marginalster (6/20/2012)
OK here it comes all the work put together.;-)Sorry for sometimes unclear explanations and guys thank you so much!!!!
:-D:-D
You are welcome. Glad the between us we were able to...
June 20, 2012 at 1:07 pm
I don't see any need for dynamic sql here. What about just using IN?
where ITEMMAST.STYLE in (Select STYLE from TEST)
June 20, 2012 at 12:02 pm
Lynn Pettis (6/20/2012)
Sean Lange (6/20/2012)
I got it Lynn. Should have the solution in just a couple minutes. π
That's fine, but I helped with the code so I am just curious...
June 20, 2012 at 10:47 am
OK so I posted some of your last post for reference. I commented out a number of lines and replaced from there to the end of your code.
--DECLARE @TABLE ...
June 20, 2012 at 10:33 am
I got it Lynn. Should have the solution in just a couple minutes. π
June 20, 2012 at 10:28 am
Viewing 15 posts - 11,536 through 11,550 (of 15,377 total)