Viewing 15 posts - 8,311 through 8,325 (of 13,876 total)
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
arooj300 (6/25/2015)
I am trying to upload Excel file through SSIS package , there is no job . we are calling from front-end and manually uploading. For that one we...
June 25, 2015 at 5:41 am
SQL Guy 1 (6/24/2015)
But about the 2nd tip, this is not exactly BOL...
June 24, 2015 at 11:14 am
Check here[/url] for some ideas.
You don't need BOL installed to use it. Look here.
June 24, 2015 at 9:15 am
roblew 15918 (6/24/2015)
Previously Microsoft had a nice easy to view break down of what features where in what products.
Does anyone have a link for the 2014...
June 24, 2015 at 2:32 am
You may find this [/url]related article interesting.
You're certainly going to have to do some indexing, but the optimal set of indexes will depend on the search patterns. Get some users...
June 23, 2015 at 10:25 am
gchappell (6/23/2015)
June 23, 2015 at 5:27 am
Viewing 15 posts - 8,311 through 8,325 (of 13,876 total)