Viewing 15 posts - 3,346 through 3,360 (of 6,038 total)
Rather than building up a static or dynamic list of OR conditions in WHERE clause, instead load your search keywords into a temp table or table variable, and then join.
select...
October 6, 2015 at 1:39 pm
Kim Crosser (10/6/2015)
...However, I am looking for a solution that doesn't need to be re-coded if a new column is added to the table (for one example).
If you make the...
October 6, 2015 at 1:34 pm
The HASHBYTES() function doesn't support a multiple column list like CHECKSUM(), however, a while back I found a solution to this by appending multiple columns after re-casting to VarBinary datatype.
For...
October 6, 2015 at 12:56 pm
Ed Wagner (10/6/2015)
Eric M Russell (10/6/2015)
Welsh Corgi (10/6/2015)
ok, it was September 29th.I have been working around the clock for two weeks 7 days week.
Sorry about that.
It sounds like you...
October 6, 2015 at 12:41 pm
Welsh Corgi (10/6/2015)
ok, it was September 29th.I have been working around the clock for two weeks 7 days week.
Sorry about that.
It sounds like you need to take yourself offline...
October 6, 2015 at 12:22 pm
Yes, I believe it's a good idea to explicitly name primary and foreign keys. Not only does it provide clarity in error messages, it also makes writing deployment scripts more...
October 6, 2015 at 12:18 pm
When attempting to click on the url for MinionWare, does anyone else get it blocked by their firewall or anti-virus?
Symantec Endpoint Protection
Web Attack: Malicious Website Script
Redirect 16 detected
October 6, 2015 at 11:36 am
Given a case-use where the requirement is auditing, we can use triggers to capture only specific DML operations (ex: only updates and deletes but not initial inserts), and we can...
October 6, 2015 at 11:09 am
Can you add an index to a view?
Yes. Indexed views are useful for materializing aggregate queries and / or joins. But it can negatively impact table insert and update performance....
October 6, 2015 at 10:55 am
Markus (10/6/2015)
That would explain why I see her as a blocking thread to another...
October 6, 2015 at 8:57 am
Does DBCC OPENTRAN show any open transactions belonging to that user?
October 6, 2015 at 7:27 am
This sounds similar in concept to Oracle's Flashback related features, which leverages the transaction log and are primarily intended for point-in-time recovery, but it allows for Flashback queries as well...
October 6, 2015 at 7:07 am
Welsh Corgi (10/5/2015)
I have 1 Table has been refreshed since the 29th of October....
Thanks.
OK, we now know you're talking about replication. However, I'd like to point out that today is...
October 6, 2015 at 6:53 am
N_Muller (10/1/2015)
October 5, 2015 at 3:20 pm
Welsh Corgi (10/5/2015)
I have 1 Table has been refreshed since the 29th of October.I checked other tables and they are being refreshed.
How can I identify and correct the problem?
Thanks.
So, what...
October 5, 2015 at 3:08 pm
Viewing 15 posts - 3,346 through 3,360 (of 6,038 total)