Viewing 15 posts - 8,311 through 8,325 (of 13,882 total)
Koen Verbeeck (7/2/2015)
Phil Parkin (7/2/2015)
Won't be long before we hit 5,000 pages on this thread!It seems it's morphed into a water-cooler chat over time.
Ha, I see you finally made your...
July 2, 2015 at 5:37 am
Won't be long before we hit 5,000 pages on this thread!
It seems it's morphed into a water-cooler chat over time.
July 2, 2015 at 4:25 am
You will get a better response to this question (ie, a working solution) if you post it as described in the first link in my signature.
July 2, 2015 at 4:18 am
SQLCJ (7/2/2015)
July 2, 2015 at 2:54 am
vipin_jha123 (7/2/2015)
Hi,I am having one requirement where I want to show only first Friday of every month of 2014,2015 and 2016 year.
Please suggest me the logic
Regards,
Vipin jha
Show it where?
July 2, 2015 at 2:49 am
This works, though my understanding of exactly what the ORDER BY 'does' in an OVER clause is a bit hazy:
with CTE
as...
July 2, 2015 at 2:14 am
This is one of the few cases where dynamic SQL should be considered.
Take a look at this [/url]article on the subject, particularly the 'dynamic SQL' bit.
July 2, 2015 at 1:49 am
metroman17 (7/1/2015)
(ServerName varchar(128)
,ServiceName varchar(128)
,StatusOfService varchar(128)
,StatusAsOn datetime)
INSERT INTO @ServiceStatus (StatusOfService)
EXEC master..xp_servicecontrol 'QueryState', 'msdtc'
UPDATE @ServiceStatus
SET ServerName=cast(@@SERVERNAME as varchar(128))
,ServiceName='Microsoft Distributed Transaction Coordinator'
...
July 1, 2015 at 4:47 am
Paul Hernández (6/30/2015)
Another detail,I am using with (nolock) in all the queries, including the lookup query
When I have had this problem in the past, it has usually been because there...
June 30, 2015 at 6:30 am
What is the datatype of the PK?
Are you certain that only one instance of the job can be running at any one time?
June 30, 2015 at 5:50 am
dfine (6/30/2015)
Please check this.
For someone with so many SSC points, I'm surprised that you don't know how to insert links.
The first link was the same as mine, and
June 30, 2015 at 12:34 am
There is a Stairway devoted to it here[/url].
I'm not saying that it will be easy, by the way. But you may find something useful in there in terms of being...
June 30, 2015 at 12:08 am
The only thing that comes to mind that might allow that is BIML.
June 29, 2015 at 11:45 pm
June 29, 2015 at 4:02 am
Brandie Tarvin (6/25/2015)
What I want is to be able to upload a picture of an error BEFORE I start a post. Then I can just call it...
June 25, 2015 at 7:53 am
Viewing 15 posts - 8,311 through 8,325 (of 13,882 total)