Viewing 15 posts - 1,921 through 1,935 (of 2,356 total)
There are no records in the system with an al.audit_event_id = '1234' that have a first name like "Love"????
October 23, 2015 at 11:07 am
It does not delete any data because the variable @Call_Date is bad logic and does not meet the criteria for a Delete.
Since the deletes are based upon this variable, and...
October 23, 2015 at 10:43 am
One method
CREATE TABLE #Test
(
UniqID int,
Status varchar(6)
)
INSERT INTO #Test(UniqID, Status)
VALUES(1, 'ABC'),
(1, 'DEF'),
(1, 'GHI'),
(1, 'XXX'),
(1, 'ZZZ'),
(2, 'ABC')
Select T1.UniqID, T1.STATUS
From #Test T1
WHERE T1.STATUS IN ('ABC',...
October 23, 2015 at 8:50 am
This function was posted someplace that i can't remember. Don't tell Moden is uses a loop though!
CREATE FUNCTION [dbo].[udf_StripHTML]
(@HTMLText VARCHAR(MAX))
RETURNS VARCHAR(MAX)
AS
BEGIN
...
October 22, 2015 at 8:38 am
Can you post some sample data and your queries?
October 21, 2015 at 2:22 pm
The simple example is if the subquery returns more than one row for the joining condition.
If you use a join, the results contain extra rows.
EXISTS will not create...
October 21, 2015 at 1:44 pm
There are couple things I see that don't make sense to me.
1. The "semester_id" in the Student table. This is a lookup to the Semester table.
If...
October 21, 2015 at 9:45 am
I've been at the new job for 2 months now. The past week or so I have been trying to make sense of the "noise" being sent from the...
October 16, 2015 at 2:22 pm
Ed Wagner (10/16/2015)
Brandie Tarvin (10/16/2015)
Ed Wagner (10/16/2015)
jasona.work (10/16/2015)
Where your machine will "share" updates with other machines INCLUDING ON...
October 16, 2015 at 11:27 am
dave 67553 (10/15/2015)
October 15, 2015 at 12:05 pm
SELECT value,
cast(@@servername as varchar(255)) as Servername,
cast(SERVERPROPERTY('Collation')as varchar(255)) as Collation,
cast (SERVERPROPERTY('BuildClrVersion') as varchar(255)) BuildClrVersion
FROM sys.configurations
WHERE name = 'backup compression default' ;
October 15, 2015 at 11:52 am
The steps would be to create a central management server, and register all of your servers.
This article explains it:
https://msdn.microsoft.com/en-us/library/bb934126.aspx?f=255&MSPPError=-2147217396
This one will give you additional details:
October 15, 2015 at 8:31 am
They are selling lots of features that, according to the sale pitch, will make life easier for me.
Are you leveraging any of the features that are advertised (snapshots!) that...
October 13, 2015 at 11:29 am
So, which one did you end up going with, and why?
I am in the middle of this same process.
October 13, 2015 at 9:10 am
Setting up a central management server should work. The query can then be run against all of the registered servers
October 12, 2015 at 10:26 am
Viewing 15 posts - 1,921 through 1,935 (of 2,356 total)