Viewing 15 posts - 376 through 390 (of 1,243 total)
It's not as straightforward as it first seems. Have a look at this link for one way to do it.
October 13, 2016 at 3:14 am
I have to say I don't know whether the backups are tested or not. The Ops guys we were going to speak to about getting rid of the secondaries...
October 12, 2016 at 7:26 am
Cheers John.
The backups are on the same drive as tempdb and I didn't think that was a good idea. If we stop the backups then tempdb will obviously be...
October 12, 2016 at 3:14 am
Ed Wagner (10/5/2016)
Sean Lange (10/5/2016)
Eirikur Eiriksson (10/5/2016)
george sibbald (10/5/2016)
Lynn Pettis (10/5/2016)
george sibbald (10/5/2016)
I made it into the...
October 6, 2016 at 1:13 am
Again, you're welcome.
This place has helped me out no end in the past. I'm glad I can pass on something of what I've learned here. Please...
October 4, 2016 at 7:45 am
1) Yes; the UNION operator can combine multiple queries with the same output columns but different sources. In this case we're returning the user ids from 5 different tables....
October 4, 2016 at 6:03 am
You're welcome, I'm happy to help. Do you understand what it does?
As a disclaimer, I've only Googled using a CTE in an SSRS dataset rather than actually doing it...
October 4, 2016 at 5:18 am
rkelly58 (10/4/2016)
I need to read each table and pulls...
October 4, 2016 at 4:37 am
/*****************************************
Create some sample tables based on a guess
******************************************/
CREATE TABLE #T1
(
UserIDVARCHAR(6)
,DATEDATE
)
CREATE TABLE #T2
(
UserIDVARCHAR(6)
,DATEDATE
)
CREATE TABLE #T3
(
UserIDVARCHAR(6)
,DATEDATE
)
CREATE TABLE #T4
(
UserIDVARCHAR(6)
,DATEDATE
)
CREATE TABLE #T5
(
UserIDVARCHAR(6)
,DATEDATE
)
/*
Populate the tables
*/
INSERT INTO #T1 VALUES
('User01',CAST(GETDATE() AS DATE))
,('User02',CAST(GETDATE() AS DATE))
INSERT INTO #T2 VALUES
('User01',CAST(GETDATE()...
October 4, 2016 at 4:25 am
Brandie Tarvin (9/30/2016)
BWFC (9/29/2016)
[ModenAnswer]A column found on one of our tables. I absolutely promise we are not responsible for any cold calls received by members of the Thread.
So what's...
October 3, 2016 at 12:59 am
[ModenAnswer]
A column found on one of our tables. I absolutely promise we are not responsible for any cold calls received by members of the Thread.
September 29, 2016 at 4:41 am
morlindk (9/29/2016)
I think 'None of these queries' is correct.(i) Table has Score, queries reference TestScore => Error
(ii) Even option 3 produces '9', not '9.0'
/morten
Option 3 produces 9.000000 for me...
September 29, 2016 at 1:00 am
Thanks for the responses folks.
It turns out that the cause was more simple than I feared. Allowing for aging out of anything older than a few days...
September 22, 2016 at 8:02 am
I've had chance to look over what I did before and it's more a case of over-complicated in places rather than shocking. It only actually looks a mess, rather...
September 21, 2016 at 7:11 am
Christmas Day and New Year's Day always fall on the same date but the holiday may not actually fall on that day. In the UK, Christmas Day and Boxing...
September 20, 2016 at 3:21 am
Viewing 15 posts - 376 through 390 (of 1,243 total)