Viewing 15 posts - 21,226 through 21,240 (of 59,072 total)
Gosh, this seems like homework. You should at least try to answer the questions and explain why . If you're wrong, then people will help.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 11:53 pm
DaPainKiller (3/17/2015)
I have 'Added Topic' and it's name is shown under recent subscriptions in my subscriptions list but it never appears on the forum page. Please help
You might want to...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 6:49 pm
thomashohner (3/17/2015)
Wow that was fast!And its faster than my attempt at creating a temp table to build a start and stop time column.
Amazing 242,139 rows in under 30 seconds
How...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 5:59 pm
CELKO (3/17/2015)
Gosh NO! You're missing an entire 10th of a second and if someone uses the table for a different resolution that you built the table for, they're in...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 5:17 pm
alen teplitsky (3/17/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 4:23 pm
mschaper (3/17/2015)
Audit Status changed from STOP to RELEASED.
Audit Status...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 11:27 am
sqlquery29 (3/17/2015)
We have like after 40 characters the unit of measure is place in the description field. We have more than one space between the description and unit of...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 11:21 am
SQL_Kills (3/16/2015)
I have the following table
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Transactions](
[ID] [char](5) NOT NULL,
[Amount] [float] NULL,
[InjectedDate] [datetime] NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
insert into Transactions values ('A0001',50,'2015-03-01 23:19:01.727')
insert...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 11:18 am
I did the same thing. Two accounts, I mean. Thanks for the feedback on that.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 11:13 am
dwilliscp (3/17/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 11:04 am
You bet, Adam. Thank you for the feedback. Sorry I've missed this post over the last 3 years.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 9:21 am
Resolving this issue is actually pretty easy but I need some data to work with. Any chance of you attaching a file that I can test with after work...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 8:01 am
I haven't read through the 8 pages of responses on this thread but the most recent question seems to indicate there might still be a "problem" understanding why this all...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 17, 2015 at 7:00 am
maruthasalam (3/16/2015)
I have modified the SQL query and the below SQL query done what i need exactly.
Except run fast/efficiently. The code that Dwain posted will do fine without the...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 16, 2015 at 7:13 pm
SQListic (3/16/2015)
I also did it with RIGHT FUNCTION
SELECT substring(RIGHT('00000000' + CAST([END DATE] AS VARCHAR), 8),5,4)+substring(RIGHT('00000000' + CAST([END DATE] AS VARCHAR), 8),1,2)+
substring(RIGHT('00000000' + CAST([END DATE] AS VARCHAR), 8),3,2)...
--Jeff Moden
Change is inevitable... Change for the better is not.
March 16, 2015 at 7:06 pm
Viewing 15 posts - 21,226 through 21,240 (of 59,072 total)