Viewing 15 posts - 6,241 through 6,255 (of 13,876 total)
swarun999 (12/5/2016)
(
@UserId nvarchar(255),
@Password nvarchar(255)
)
as
begin
declare @count int
select @count = count(*) from UsersTable where UserId = @UserId and [Password] = @Password
if(@count = 0)
begin
Print...
December 5, 2016 at 12:22 pm
One thing you could also try is putting the results of the entire source query into a temp table, then indexing the temp table, then merging from only the temp...
December 5, 2016 at 8:55 am
TheBI (12/5/2016)
I want to optimise the following query that is running so slowly.
Please help or gimme an advice.
MERGE dbo.LocalizedCategories AS T
USING (SELECT L.LanguageID,SC.CategoryID,BC.Value
FROM (SELECT...
December 5, 2016 at 8:48 am
It's difficult to diagnose without looking into what the package is doing. Is there an error handler configured on the component which is failing inside the FEL?
December 5, 2016 at 6:25 am
But on Sql Server Agent it is still runing but I writes error on job history.
You wrote an error to job history? What problem do you think this is?
December 5, 2016 at 5:49 am
kpmandani (12/4/2016)
December 5, 2016 at 4:40 am
Eirikur Eiriksson (12/5/2016)
BOR15K (12/5/2016)
December 5, 2016 at 4:31 am
Well done. I compared execution plans and my version seems to have the edge. Especially if you add an index on (requestid, eventdate, eventname). Might be worth testing both on...
December 4, 2016 at 3:14 pm
I have an inelegant solution to this inelegant problem 🙂 There will be better ways, but this seems to work, at least for the test data provided:
SELECT
...
December 4, 2016 at 11:06 am
If a RequestId has been 'Closed', shouldn't the next RequestId have a different value? If they're all 46444, what's the point of this number?
Please post your data in a consumable...
December 4, 2016 at 9:18 am
OK. So you want SSIS to 'interrogate' a particular file, which has already been produced by another process, get the row count and then act according to result?
If so, your...
December 3, 2016 at 2:54 pm
badalkataria (12/3/2016)
How would I able to figure out that if it is or not?
You have more than one problem going on here. One is regarding access to an Excel spreadsheet...
December 3, 2016 at 2:49 pm
kpmandani (12/2/2016)
December 2, 2016 at 2:42 pm
drew.allen (12/2/2016)
Phil Parkin (12/2/2016)
Just having a mind warp on how to insert into the address table and get that unique int value and put it into the correct master row...
December 2, 2016 at 11:50 am
Just having a mind warp on how to insert into the address table and get that unique int value and put it into the correct master row for the employee.
This...
December 2, 2016 at 10:18 am
Viewing 15 posts - 6,241 through 6,255 (of 13,876 total)