Viewing 15 posts - 2,746 through 2,760 (of 8,761 total)
John Mitchell-245523 (11/14/2016)
Eirikur Eiriksson (11/14/2016)
John Mitchell-245523 (11/14/2016)
November 14, 2016 at 4:29 am
Here is a query I often use, adjusted to this requirements
😎
USE TEEST;
GO
SET NOCOUNT ON;
DECLARE @PATTERN NVARCHAR(MAX) = N'INC[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]';
DECLARE @SEARCH_TEMPLATE NVARCHAR(MAX) = N'
UNION...
November 14, 2016 at 4:13 am
John Mitchell-245523 (11/14/2016)
November 14, 2016 at 4:10 am
wikus (11/14/2016)
Thank you very much for all the replies.
You are very welcome.
😎
November 14, 2016 at 3:16 am
Here is a suggestion towards a solution
😎
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.Table_1') IS NOT NULL DROP TABLE dbo.Table_1;
CREATE TABLE [dbo].[Table_1](
[Col1] [nchar](10) NULL,
[Col2] [nchar](10) NULL,
[Col3] [nchar](10) NULL,
[Col4] [nchar](10) NULL,
[Col5] [nchar](10) NULL
) ON...
November 14, 2016 at 3:06 am
Good question and a good case for using WITH SCHEMABINDING when creating a view.
😎
November 14, 2016 at 2:52 am
info 58414 (11/14/2016)
How can I find all the rows of a database that have a particular pattern: for example: (INC000007615432) or with other words:
Find all columns in a Database, where...
November 14, 2016 at 2:06 am
wikus (11/14/2016)
I would appreciate some help please.
I want to do a select distinct only on Col2 and add rows for those.
INSERT INTO Table_1(Col1, Col2, Col3,Col4, Col5)
SELECT DISTINCT Col1, Col2, 'ZZZ',...
November 14, 2016 at 1:46 am
IT researcher (11/14/2016)
November 14, 2016 at 1:29 am
At the first glance, it looks like you are missing the second join specification for the ResourceGroupEnvironment table as the duplication is coming from that table (different VIP values), see...
November 14, 2016 at 1:06 am
psred (11/13/2016)
Can anyone tell me the quick way to copy a source table of 1.3Tb data to destination table with xml datatype column in source table.
Can you elaborate...
November 14, 2016 at 12:46 am
The first thing I suggest is to rewrite the WHERE clause to eliminate the conversion and concatenation, either change to an EXIST or JOIN clause.
😎
INSERT INTO [addb20].[Target_MergeAMD4_WithData].[dbo].[ConfigOption]
(
...
November 14, 2016 at 12:41 am
Can you post the DDL (create table) scripts for MAP, MAP_DAY and MAP_MONTH please?
😎
November 13, 2016 at 11:19 pm
124420294 (11/13/2016)
But from below microsoft official docuement, it seems that vss snapshot plus trans log restore is support.https://technet.microsoft.com/en-us/library/cc966520.aspx
(Full restore with additional rollforwards)
The document you are referring to is an...
November 13, 2016 at 11:06 pm
gunadi.arunanto (11/13/2016)
Need advise for my error
Executed as user: NT AUTHORITY\NETWORK SERVICE. Arithmetic overflow error converting IDENTITY to data type int. [SQLSTATE 22003] (Error 8115) Arithmetic overflow occurred. [SQLSTATE...
November 13, 2016 at 10:44 pm
Viewing 15 posts - 2,746 through 2,760 (of 8,761 total)