former_SQLA_member1694902
Explorer
Member since ‎2013 Oct 16

User Statistics

  • 29 Posts
  • 0 Solutions
  • 16 Kudos given
  • 15 Kudos received

User Activity

07/21 06:50:28. ERROR Assertion failed: 200166 (17.0.10.6285)[--server/database name--] Referenced table page does not belong to this table Had this error after restoring after a ransomware attack. I'm running a VALIDATE on the tables now. Haven't ...
If I run the following statement: //create a watcom function CREATE OR REPLACE FUNCTION "DBA"."TEST1" (@val INT) RETURNS INTEGER BEGIN IF (@val = 1) THEN SET @val = 2; ENDIF; RETURN @Val; END; //create a t-sql function CREATE OR...
If I run the following statement: //create a watcom function CREATE OR REPLACE FUNCTION "DBA"."TEST1" (@val INT) RETURNS INTEGER BEGIN IF (@val = 1) THEN SET @val = 2; ENDIF; RETURN @Val; END; //create a t-sql function CREATE OR...
We recently upgraded from 11 to 17 (I know) and I've hit a really weird problem with a very simple query. I'm running a query joining two tables and fetching DISTINCT values from the second table. The tables are: CREATE TABLE "DBA"."GenericInfoLinks"...
Hi all, I have a db mirroring as mode=sync and we've been having a bit of trouble with large UPDATE statements locking out all other connections until the statements and connections has finished. Does anyone think it will be worth the risk of moving ...