Viewing 15 posts - 3,061 through 3,075 (of 26,490 total)
March 8, 2017 at 2:53 pm
March 8, 2017 at 8:19 am
Snapshot backups by a SAN product maybe?
March 3, 2017 at 2:58 pm
And then it actually turns out the string to be searched is actually a column in a table with a million rows of data.
March 3, 2017 at 2:03 pm
You mean like this?
if OBJECT_ID('dbo.MyEmployees') is not null
DROP TABLE dbo.MyEmployees;
CREATE TABLE dbo.MyEmployees
(
MaterialID nvarchar(300 ) NOT NULL,
MaterialRowID nvarchar(300 ) NOT NULL...
March 3, 2017 at 1:53 pm
Read this: https://msdn.microsoft.com/en-us/library/ms188357.aspx
If that does not help, search Books Online.
March 3, 2017 at 1:41 pm
Based on what you have posted, I don't see how. The queries are not even related to each other. They are from different tables, with different parameters, and do not...
March 3, 2017 at 1:37 pm
First, you need the following itvf:
USE [Sandbox]
GO
/****** Object: UserDefinedFunction [dbo].[DelimitedSplit8K] Script Date: 3/3/2017 1:25:30 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION...
March 3, 2017 at 1:30 pm
March 2, 2017 at 11:27 am
March 2, 2017 at 8:29 am
March 2, 2017 at 8:21 am
March 2, 2017 at 8:14 am
March 1, 2017 at 3:18 pm
Viewing 15 posts - 3,061 through 3,075 (of 26,490 total)