Viewing 15 posts - 451 through 465 (of 5,111 total)
As almost everyone on this forum knows, Excel is a numerical analysis tool, and should not be used as a database in any professional situation.
Why I think everyone on...
August 10, 2020 at 2:27 pm
Honestly, why is it converting MARCH1 to a date in the first place. MARCH1 doesn't have a year, so it's not a date... Changing it to a date means it...
August 10, 2020 at 2:12 pm
One way to do this would be to have a stored procedure with EXECUTE AS in it. This way, you can set the stored procedure to run as sysadmin...
July 30, 2020 at 2:07 pm
If this is in a loop container, then you actually want to turn error propagation off on the node:
July 29, 2020 at 3:42 pm
Is this, by any chance, in some kind of loop container?
July 29, 2020 at 3:32 pm
I am working over a VPN (aren't we all?) to a mapped drive at my company.
I'm working over a VPN, yes, but I'm not working with projects that...
July 29, 2020 at 12:15 pm
This doesn't sound right; I wouldn't expect the package to behave like that. Have you tried changing the ForceExecutionResult value of the Node to Success?
July 29, 2020 at 9:06 am
I have not seen package files disappear, though I've certainly seen the text in Script Tasks disappear in the past.
Ahh, don't remind me of that "feature"! I lost so...
July 29, 2020 at 8:41 am
To add to what Phil is saying here, you only need to Group on the columns/expressions that aren't in an aggregate function. You are aggregating on Col_amt therefore it's very...
July 15, 2020 at 2:06 pm
What edition of SQL Server 2008R2 are you running? Is it 32bit version too perhaps?
July 15, 2020 at 10:33 am
SQL Server 2008 is completely unsupported now, and has been for a year. Ideally you should be looking at upgrade paths, if not already. It's also concerning that you hadn't...
July 15, 2020 at 10:02 am
So what are your expected results here exactly? What is the logic and your attempts, as they will help us understand your goal. Also, please do use consumable sample data,...
July 2, 2020 at 1:49 pm
since it is living for about 209 years now
RDBMS, let alone SQL Server, weren't around in 1811, so your database must have been really advanced back then!
As for what you're...
July 2, 2020 at 10:48 am
SQL Server can't take descriptions and turn that into SQL, and if you have a valid (SQL) expression you would have to use Dynamic SQL; which is an entirely different...
July 2, 2020 at 10:43 am
I, personally, tend to go down this route:
CASE WHEN Col1 = Col2 OR (Col1 IS NULL AND Col2 IS NULL) THEN 'Yes'
...
July 1, 2020 at 1:06 pm
Viewing 15 posts - 451 through 465 (of 5,111 total)