Viewing 15 posts - 1,681 through 1,695 (of 15,381 total)
rjjh78 (3/14/2016)
I have created the cursor below. The intent of my project is to automate the creation of user accounts.
What I am doing is creating the username,...
March 14, 2016 at 10:28 am
Jeff Moden (3/11/2016)
TheSQLGuru (3/11/2016)
Someone needs to benchmark the STRING_SPLIT() function coming out in SQL Server 2016 and update the main article!
Ed Wagner (3/11/2016)
TheSQLGuru (3/11/2016)
March 11, 2016 at 10:04 am
SQLisAwE5OmE (3/10/2016)
If you don't mind, can you elaborate more on these steps.
Is the requirement that the email be sent real time?
Ans: No, I do not need it real time.
If not,...
March 10, 2016 at 10:51 am
You need to read up a lot about how triggers work. If you add a delay it is only going to delay the processing. That means your application will just...
March 10, 2016 at 9:15 am
SQLisAwE5OmE (3/10/2016)
Sean Lange (3/10/2016)
SQLisAwE5OmE (3/10/2016)
But my trigger is not working as per my requirements,...
March 10, 2016 at 8:04 am
SQLisAwE5OmE (3/10/2016)
But my trigger is not working as per my requirements, I am trying...
March 10, 2016 at 7:44 am
SW_Lindsay (3/10/2016)
March 10, 2016 at 7:11 am
SQLisAwE5OmE (3/9/2016)
March 9, 2016 at 10:41 am
SQLisAwE5OmE (3/9/2016)
Sean Lange (3/9/2016)
SQLisAwE5OmE (3/9/2016)
Sean Lange (3/9/2016)
SQLisAwE5OmE (3/9/2016)
When I purchased 2 programs(classes) in the same order, I got 2 separate emails. So, is that mean it's working?
No. That means that...
March 9, 2016 at 10:39 am
SQLisAwE5OmE (3/9/2016)
Sean Lange (3/9/2016)
SQLisAwE5OmE (3/9/2016)
When I purchased 2 programs(classes) in the same order, I got 2 separate emails. So, is that mean it's working?
No. That means that your program inserts...
March 9, 2016 at 9:41 am
SQLisAwE5OmE (3/9/2016)
When I purchased 2 programs(classes) in the same order, I got 2 separate emails. So, is that mean it's working?
No. That means that your program inserts the rows one...
March 9, 2016 at 9:17 am
SQLisAwE5OmE (3/9/2016)
Here is my revised code
USE [IMIS_TEST]
GO
/****** Object: Trigger [dbo].[Orders_Online_Reg] Script Date: 03/09/2016 09:29:20 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[Orders_Online_Reg]
ON [dbo].[Orders]
AFTER insert
AS
DECLARE @ORDER_NUMBER varchar(100)
DECLARE...
March 9, 2016 at 8:33 am
MMartin1 (3/8/2016)
SELECT @ORDER_NUMBER = i.ORDER_NUMBER, @ID = i.ST_ID, @Name = i.FULL_NAME, @Timestamp = i.ORDER_DATEfrom inserted i
This above will fail whenever the application inserted more than one row as part...
March 8, 2016 at 12:29 pm
Here is one such possibility. This will generate any number of empty columns with the name of the date using 2 date variables as the start and end values. This...
March 8, 2016 at 7:51 am
JoseACJr (3/5/2016)
Hello!A simple question!
How can I generate 30 columns that are days of the month, between two dates ?
Thank you!
Give us something here. You just want 30 empty columns? Do...
March 8, 2016 at 7:36 am
Viewing 15 posts - 1,681 through 1,695 (of 15,381 total)