Viewing 15 posts - 2,611 through 2,625 (of 4,820 total)
We created a tivoli user in SQL Login and we found its in disabled...
April 13, 2017 at 8:29 am
i create a function.
ALTER FUNCTION [dbo].[test] (@input...
April 13, 2017 at 8:20 am
April 13, 2017 at 8:07 am
April 13, 2017 at 7:59 am
Unfortunately, the only sizing information you provided was a raw number, without any kind of qualification as to whether those numbers represented kilobytes, megabytes, gigabytes, or terabytes. You also made...
April 13, 2017 at 7:56 am
There's no obvious date field that would represent the date for which the retrieved values occurred on. Without that being detailed, and a good idea of exactly how all the...
April 12, 2017 at 12:53 pm
Take a good look here: https://technet.microsoft.com/en-us/library/ms143729(v=sql.110).aspx
April 12, 2017 at 6:54 am
You'll have to provide more details. The feature in SQL Server is known as FULL TEXT SEARCH. I don't know that it was ever designed to look at the entire...
April 12, 2017 at 5:47 am
How about something like this:CREATE TABLE dbo.orders (
OrderID int NOT NULL,
CustomerID varchar(5) NOT NULL,
sourceid varchar(12) NOT NULL,
[Status] varchar(50) NULL,
ordertype varchar(20) NULL,
ordershipped datetime NULL,
April 11, 2017 at 1:40 pm
@Patrick123 - Tuesday, April 11, 2017 12:43 PMHi,
Can we delete data from parent table (1 year data) and child tables(6 months data)??
That...
April 11, 2017 at 1:07 pm
Let's try using a string splitting function "DelimitedSplit8K" to do the heavy lifting:CREATE TABLE #Weights (
WeightID int IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED,
TotalWeight varchar(20)
);
INSERT INTO...
April 10, 2017 at 11:29 am
The only thing I can think of is maybe something OS - related ??? I'm just thinking that Windows Server 2012 might not have had that same issue... Of course,...
April 7, 2017 at 1:30 pm
That doesn't answer the question. Was there a change in Edition. That's a PART of your SQL Server version. For example, you can get SQL Server Standard Edition, or SQL...
April 7, 2017 at 1:05 pm
Read my last post again. It DOES provide a recommended way. You DO have to do some of this work yourself, you know...
April 7, 2017 at 12:22 pm
Was there a change in Edition ?
April 7, 2017 at 12:21 pm
Viewing 15 posts - 2,611 through 2,625 (of 4,820 total)