Viewing 15 posts - 7,411 through 7,425 (of 8,760 total)
It can be done but I agree with Lynn, kind of awkward doing this in SQL.
😎
DECLARE @IDMainCompany int = 100;
DECLARE @Process_Date datetime = '2014-01-01';
;With SalaryReport as (
Select...
August 23, 2014 at 11:57 am
Lynn Pettis (8/23/2014)
Really??
Mail every minute and if it goes down then one can tell as the emails will stop:-D
😎
August 23, 2014 at 10:55 am
Sapen (8/22/2014)
I have implemented transactional replication in sql 2012 with replicate schema changes. Now if I drop few indexes and add columns and re add indexes on articles in publisher...
August 23, 2014 at 5:21 am
Here is another suggestion on how to establish the grouping, the rest should be straight forward, select the last desired value from each group.
😎
CREATE TABLE #TEMP (T_ID INT IDENTITY(1,1),UserName varchar(20),Drink...
August 23, 2014 at 5:19 am
er.mayankshukla (8/23/2014)
In one of my projects I observed such a behaviour when I...
August 23, 2014 at 4:35 am
Quick analysis
😎
First a simplified ERD
+--------------+ +--------------+ +-----------------+
|...
August 23, 2014 at 4:29 am
JeeTee (8/22/2014)
August 23, 2014 at 12:03 am
Nita Reddy (8/18/2014)
August 22, 2014 at 11:42 pm
Looks to me that it does what it says on the tin.
😎
Inspecting the filter, we find:
WHERE dp.class < 4
Listing permissions for
0 = Database
1 = Object...
August 22, 2014 at 11:37 pm
Wison (8/22/2014)
Hi all,I found the tempdb log file size of one instance increased to 200 GB.
how can i get the root cause of the issue?
any answer is appreciated.
thanks.
Quick suggestion, look...
August 22, 2014 at 11:22 pm
Here is a quick solution using CHARINDEX
😎
USE tempdb;
GO
CREATE TABLE [dbo].[x_JobMatching](
[CVID] [int] NULL,
[JobNoticeID] [int] NULL,
[isMatch] [bit] NULL,
CONSTRAINT [x_JobMatching_UQ1] UNIQUE NONCLUSTERED
(
[CVID] ASC,
[JobNoticeID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE =...
August 22, 2014 at 11:09 pm
Luis Cazares (8/22/2014)
INSERT INTO @test-2(TEST_STRING)
VALUES
('I am a bad Gal')
,('I am a good Gal')
,('Oh my goodness! There''s no...
August 22, 2014 at 1:16 pm
GilaMonster (8/22/2014)
TomThomson (8/22/2014)
Haven't noticed him recently on SQLServerCentral, though :cool:.He dropped in recently to state that indexes were only needed in badly designed databases.... 🙁
Are indexes not ANSI compliant?
😎
August 22, 2014 at 12:36 pm
Lynn Pettis (8/22/2014)
Eirikur Eiriksson (8/22/2014)
Lynn Pettis (8/22/2014)
And Mr. Celko is back with his baseball bat. :Whistling:In more than one thread. :Whistling:
Nice to see that you are having a friendly chat...
August 22, 2014 at 12:18 pm
Lynn Pettis (8/22/2014)
And Mr. Celko is back with his baseball bat. :Whistling:In more than one thread. :Whistling:
Nice to see that you are having a friendly chat with your best pal:w00t:
😎
August 22, 2014 at 11:13 am
Viewing 15 posts - 7,411 through 7,425 (of 8,760 total)