Viewing 15 posts - 151 through 165 (of 220 total)
Hello!
Which certification were you thinking of doing? I'm currently studying for the MCSA and finding some parts overwhelming even with 5+years experience (albeit I started as an apprentice), I can't...
February 23, 2016 at 10:02 am
wendy elizabeth (2/22/2016)
February 23, 2016 at 9:13 am
naga.rohitkumar (2/21/2016)
I have checked that msdb.dbo.sysjobhistory but its not giving the job name not status of the job when it failed
we need the count for number...
February 23, 2016 at 8:54 am
giszzmo (2/22/2016)
This doesn't work. I only need the year part and it's not a char.
Then you need to insert it into an INT column.
A year on it's own is...
February 22, 2016 at 9:36 am
mw112009 (2/12/2016)
But the real answer is...
"[There is no way to do that in one or several SQl statememts]"
However I found the perfect resource...
February 12, 2016 at 7:24 am
Is the log reader agent running? You can check in the replication monitor, or by locating the SQL Server Agent job.
Also, go to the subscription under 'Replication', right click, view...
February 12, 2016 at 5:25 am
Assuming create_dtim is a valid date field
SELECT wh_id as Wh,
MONTH(create_dtim) as MonthCreated,
YEAR(create_dtim) as YearCreated,
count(*) as Plan
FROM Backtest
where wh_id in (1,9)
group by wh_id, MONTH(create_dtim), YEAR(create_dtim)
Is that...
February 12, 2016 at 5:21 am
Hi MadAdmin,
Thanks for the response. It's an inline TVF (I.e SELECT...UNION ALL...SELECT etc)
I'm currently working on the query performance and am nearly there, but thankyou for offering to help anyway...
February 11, 2016 at 4:47 am
By getting 'stuck into performance tuning' - I do mean getting on with tuning the query. Just what I like at 5pm :w00t:
Thanks for the responses everyone - at least...
February 10, 2016 at 9:54 am
May have posted this in the wrong section. Apologies.
February 10, 2016 at 9:35 am
Think I misunderstood your question - sorry! Glad you got it sorted 🙂
November 30, 2015 at 9:09 am
Uniform naming convention as opposed to local file path.
So for example, '\\server\c$\folder\file.xlsx' instead of 'c:\folder\file.xlsx'
November 30, 2015 at 4:14 am
Are you using a UNC path in your SSIS package?
November 30, 2015 at 4:07 am
Viewing 15 posts - 151 through 165 (of 220 total)