Viewing 15 posts - 961 through 975 (of 4,820 total)
July 10, 2018 at 7:54 am
July 10, 2018 at 7:00 am
Let's try something and see how it goes:CREATE TABLE #tTransactions (
ID int IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED,
[GUID] char(50) NOT NULL,
ProdNo int NOT NULL,
UUID char(50)...
July 10, 2018 at 6:45 am
July 10, 2018 at 6:17 am
July 9, 2018 at 3:09 pm
July 9, 2018 at 1:53 pm
Without a much closer look at your environment, all I can do is make wild guesses. First question that this post makes me ask is whether your existing environment is...
July 9, 2018 at 10:43 am
I think this should work:SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE TABLE #Account_Customer (
[Per_id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED,
[App_acc] [nvarchar](16) NOT...
July 9, 2018 at 9:51 am
I'm working on a project where we have to take a list of unique phone...
July 2, 2018 at 9:06 am
July 2, 2018 at 8:18 am
June 28, 2018 at 12:01 pm
June 28, 2018 at 11:57 am
June 28, 2018 at 11:10 am
Viewing 15 posts - 961 through 975 (of 4,820 total)