Viewing 15 posts - 376 through 390 (of 1,193 total)
I just thought the easy Q & high points was an attempt to improve everyone's Monday morning 🙂
Can we do this every week?!
August 4, 2014 at 3:27 am
No problem.
As you're querying MySQL, try this:
Select create_time
From ticket_history
WHERE create_time >= @BeginningDate
and create_time < DATE_ADD(@BeginningDate, INTERVAL 1 DAY)
July 31, 2014 at 10:46 am
Thanks.
If the values in create_time contain a non-midnight time portion you won't get any matches, e.g.
create_time 07/31/2014 17:13:00 does not match 07/31/2014 00:00:00 which you'll get from the date...
July 31, 2014 at 10:25 am
Ok, that's fixed the syntax error.
What are the datatypes of the create_time field and the @BeginningDate variable, and what value of @BeginningDate are you using?
Thanks
July 31, 2014 at 9:36 am
Hi,
Think this is what you're after? If not, please give us more detail on what's not working, e.g. any errors you receive, or incorrect results.
Select create_time
From ticket_history
where create_time = @BeginningDate
Note...
July 31, 2014 at 8:55 am
Markus (7/31/2014)
SQLRNNR (7/31/2014)
I'll try to think on it some more. I'm sure this odd error has you frustrated.
Yes. I've never seen anything like this before. It does...
July 31, 2014 at 8:48 am
Hi,
Is this kind of setup possible on one server?
Yes, you can have multiple subscribers per publication
If yes then at the time of reinitialization is it going to apply the snapshot...
July 31, 2014 at 8:41 am
Mirroring is deprecated as most/all of it's features are superceded by AlwaysOn Availability Groups in SQL 2012+
It's still present in SQL 2012 & 2014. Haven't done it myself but should...
July 29, 2014 at 3:59 am
Steve Jones - SSC Editor (7/28/2014)
Koen Verbeeck (7/28/2014)
This guy can explain it better than I can:
Very interesting.
I hope we've avoided some of that, though...
July 29, 2014 at 3:48 am
Koen Verbeeck (7/29/2014)
Lynn Pettis (7/28/2014)
dwain.c (7/28/2014)
Sean Lange (7/28/2014)
This thread is our water cooler. It is a place where we can let our hair down...
Easy for you to say. I...
July 29, 2014 at 3:33 am
No problem.
It's not made clear, but it is on the MSDN page for CREATE INDEX http://msdn.microsoft.com/en-gb/library/ms188783(v=sql.105).aspx
The important lines are below, note in the filter_predicate part only AND is allowed, not...
July 29, 2014 at 2:50 am
You can't use OR in the where clause of a filtered index.
The non-filtered one is ignored as having VehReg in the index key isn't helpful to that query.
An indexed view...
July 28, 2014 at 6:14 am
Have you used Reporting Services Configuration Manager to point at the newly restored databases?
That should trigger the databases being automatically upgraded which it doesn't sound has happened yet.
July 28, 2014 at 5:37 am
Hi John, and welcome.
Shrinking files can indeed create fragmented indexes. I'd only recommend it if you're deleting a load of data, AND you know the newly shrunken database files won't...
July 28, 2014 at 4:47 am
Viewing 15 posts - 376 through 390 (of 1,193 total)