Viewing 15 posts - 1 through 15 (of 135 total)
gQuery - Monday, December 17, 2018 2:33 PMCan you use the IN operator in the SELECT statement? If so, then how?
IN...
December 17, 2018 at 2:38 pm
What's the actual invoke-sqlcmd call that you're making - it's not shown in the image you provided. Also, what do you have set for your -QueryTimeout value? Is it possible you're...
September 21, 2018 at 10:12 am
You can set up a SQL Agent job with a schedule that will run on the last day of every month and does that for you.
September 17, 2018 at 8:31 am
Michael L John - Friday, September 14, 2018 12:58 PMWhich is actually what I am in the process of switching to!
I...
September 14, 2018 at 2:29 pm
goher2000 - Friday, September 14, 2018 8:25 AMI am looking for powershell script to script out alters and operators, can someone help
September 14, 2018 at 12:20 pm
Revising my previous versionCREATE TABLE #temp
(
[Pkey] INT,
[ParentId] INT,
[Status] VARCHAR(40),
[Datelogged] DATETIME
)
INSERT INTO #temp
VALUES
(1,123,'Submitted','12/9/2018 10:30'),
(2,123,'Assigned','12/9/2018 10:40'),
(3,123,'Acknowledge','12/9/2018 10:45'),
September 13, 2018 at 3:50 pm
September 13, 2018 at 10:18 am
I should've asked earlier, but did you set up the mirroring with certificates?
September 12, 2018 at 12:42 pm
September 12, 2018 at 10:21 am
September 12, 2018 at 9:55 am
In addition to identifying the heaps via the NULL index name, if you're using sys.dm_db_index_usage_stats it won't include information for anything that hasn't been touched at all, which can be...
September 12, 2018 at 8:23 am
You can't restore a backup from 2008 R2 to 2008 -it's only forward compatible, which is why you can restore it on a 2017 instance.
September 12, 2018 at 7:53 am
September 12, 2018 at 7:30 am
I use something similar to the below for some ad-hoc scripts I have:
DECLARE @test-2 TABLE
(
[CompanyNid] INT,
[Produce(Commodity)] VARCHAR(MAX)
September 11, 2018 at 3:47 pm
Viewing 15 posts - 1 through 15 (of 135 total)