Viewing 15 posts - 361 through 375 (of 9,641 total)
Comparison to NULL always yields UNKNOWN not True or False so you probably do want the OR b.deptid IS NULL logic to make sure your query is correct.
You say that...
July 15, 2015 at 12:15 pm
I'd like to know why DBCC CLEANTABLE worked and what it actually cleaned up because it seems like there was some metadata kicking around for that table somewhere that caused...
July 14, 2015 at 11:56 am
Backing up a SQL Server database is an online operation so you don't have to suspend operations on the database in order to get a backup of a consistent state....
July 14, 2015 at 11:27 am
You can start by using some of the metrics built into SQL server using DMV's like sys.dm_exec_query_stats and sys.dm_exec_procedure_stats to look at most executed queries and longest running queries. ...
July 14, 2015 at 11:22 am
GilaMonster (7/13/2015)
Yes, yes, yes, yes!!!!!!!!Congratulations. You have complied with the requirements prescribed for your degree, and are cordially invited to the graduation ceremony
Congrats.
July 13, 2015 at 8:58 am
Brandie Tarvin (7/11/2015)
Usually the call for speakers is...
July 13, 2015 at 8:57 am
You need something like the following (this won't work as written, but it should give you an idea):
=(IIF(fields!date1.value>IIF(fields!date2.value = "", Today(), fields!date.value),"late","on time"))
For example, you may need to use the...
June 30, 2015 at 10:01 am
Sounds like either "bad" parameter sniffing. You can check the parameter values for the slow runs to normal runs by using ExecutionLog3.Paramters column and see what values are causing...
June 29, 2015 at 2:06 pm
Here's a quick test I threw together to see what happens:
IF OBJECT_ID('dbo.KeyTest', 'U') IS NOT NULL
BEGIN;
DROP TABLE dbo.KeyTest;
...
June 29, 2015 at 1:56 pm
Wish I could be more help, but I don't know anything about Universe DB. I just looked at the documentation, http://www.adbk.se/manuals/uv10/uvdoc/UniVerse/Sqlref.pdf, to try to provide some help. Since...
June 29, 2015 at 1:08 pm
Lowell (6/29/2015)
the funny thing is, that NC index gets used a...
June 29, 2015 at 12:35 pm
Congratulations Alan. Nothing like the first child.
June 29, 2015 at 12:30 pm
My instinct is to change the clustered index to be unique and drop the non-clustered because I can't think of an instance where the optimizer would choose the non-clustered unique...
June 29, 2015 at 11:45 am
It looks like the driver or universe database is complaining about the closing ")" in the query.
Do you need to terminate with semi-colon in universe?
Is CURDATE() the right...
June 29, 2015 at 11:40 am
I'd start by reading this, https://msdn.microsoft.com/en-us/library/bb964742(v=sql.120).aspx.
I haven't done much with encryption in a long time, but you have to have the same keys on both servers.
June 29, 2015 at 11:31 am
Viewing 15 posts - 361 through 375 (of 9,641 total)