Viewing 15 posts - 6,796 through 6,810 (of 59,091 total)
My recommendation is to do this application side still, but if database side is the solution you need, this query should do it:
DECLARE @tmp TABLE
(
[Letters] VARCHAR(25)
);
INSERT...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 16, 2020 at 6:22 am
Shifting gears a bit, please read the first link in my signature line below for how to post example data in future posts to help us help you faster and...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 16, 2020 at 6:16 am
Just to throw my hat into the ring, here's my humble version... It uses the fnTally function that Steve posted.
First, here's the test data I used...
DROP TABLE...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 16, 2020 at 6:06 am
I am denied the permission to create the function here
Submit the fnTally function to the resident DBA for review and deployment. Be sure to include the header so they...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 16, 2020 at 4:48 am
What application would you suggest using for this, If i were to run row operations on the application side?
None. As you've seen by Phil's and Steve's solutions, T-SQL solutions...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 16, 2020 at 4:30 am
This is what I use stored procedures for. The store procedures are each crafted to do one an only one thing, to do it well, and to do it with...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 16, 2020 at 4:02 am
Ah... understood on the offsets. Thanks, Jeff.
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2020 at 1:57 am
@Jeffrey Williams...
I think you're on the right track but...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 11:57 pm
To be honest, I've tried several and I prefer the homegrown native backup methods.
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 10:10 pm
marty.seed wrote:How does that help?
Because it gives you the distance from every building to every other building.
And, if you use the right measurements, it gives you the actual driving...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 10:06 pm
What version of T-SQL are you actually using? I ask because there's no such thing as "VARCHR" in T-SQL. There is "VARCHAR" but it has two "A"s in it instead...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 4:52 pm
Confusing pricing, limited hardware choices, and a feature mix that is different.
The king is dead, long live the king!
In our case, a feature mix that is inadequate when it...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 4:48 pm
Luis
You have the same column on the left and right of the equality
WHERE fldinfo=ISNULL(@parameter,fldinfo)
...
Happy to stand corrected.
It's actually because of the function usage on a column. Every row must...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 1:35 pm
I think Phil is showing a restore of the database from the snapshot, essentially rewinding time.
Correct. To be honest, I just assumed that the OP had worded their...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 1:23 pm
😀
--Jeff Moden
Change is inevitable... Change for the better is not.
July 13, 2020 at 1:21 pm
Viewing 15 posts - 6,796 through 6,810 (of 59,091 total)