Viewing 15 posts - 91 through 105 (of 3,543 total)
In nearly 30 years of using excel there are very few situations that don't have a straight forward work around.
built a report from an SQL database for a...
August 13, 2020 at 8:35 am
The really cool part is that it's been beneficial to us old farts in many ways. I was the big kid on the block way back when I bought...
July 31, 2020 at 8:43 am
I'd also ask what is the purpose for copying the same data to another table but with a new ID?
July 29, 2020 at 8:11 am
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...
July 14, 2020 at 8:58 am
WHERE SUBSTRING([column],CHARINDEX('^',[column],PATINDEX('%PQ5|1|[0-9]%',[column])),4) = '^^^^'
If you look at the following post where the OP finally posted some semblance of the data he's actually trying to filter,...
June 30, 2020 at 8:02 am
WHERE SUBSTRING([column],CHARINDEX('^',[column],PATINDEX('%PQ5|1|[0-9]%',[column])),4) = '^^^^'
June 29, 2020 at 8:27 am
And now, how to put the brakes on a migration project...
Break your wrist on a bicycle ride so you only have one hand to type with and no immediate...
June 15, 2020 at 8:06 am
What was output in the results tab?
What does Select * from [dbo].[TestView] return?
May 28, 2020 at 5:03 pm
You have an extra double quote, try this
DECLARE @RecallDateTime as datetime
SET @RecallDateTime = GetDate()
DECLARE @FileExtension varchar(4) = 'ckr'
DECLARE @FileDateTimeStamp varchar(14) = REPLACE(REPLACE(REPLACE(CONVERT(VARCHAR(23), @RecallDateTime, 120),'-',''),' ',''),':','')
-- working...
May 28, 2020 at 2:40 pm
queryout is for queries (sql statements)
out is for tables/views
what was output in the results tab?
fyi
xp_cmdshell returns an errorcode as an integer if you want check if it worked or not
May 28, 2020 at 12:28 pm
I can't see how it can run at all, what is the purpose of @FileExtension in the first line, if it is to extend the name of the view then...
May 28, 2020 at 7:59 am
I have never understood the utility of returning the bit value from a stored procedure execution. It's too abstract of a concept to say "it worked" or "it didn't...
May 18, 2020 at 3:20 pm
Never used geometry by I suppose some this like this
SELECT N,
GEOMETRY::STGeomFromText('POLYGON(('+CAST(N as varchar(10))+' 0, 1 1, 0 1, 0 0, 1 0))', 0)
FROM (VALUES(1)) x...
March 31, 2020 at 4:51 pm
Sent home from work yesterday AM and now working from home.
Now in isolation with Wife and family, what a bummer.
🙁
March 18, 2020 at 12:39 pm
It's one of the ways I learned (and still learn) a lot. Post something and have someone post something better even if they call me out directly??? I'm all...
January 30, 2020 at 9:53 am
Viewing 15 posts - 91 through 105 (of 3,543 total)