Jump to content

Mainman46

Members
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

Profile Information

  • Location
    Kent, England
  1. DECLARE @T varchar(255),@C varchar(4000) DECLARE Table_Cursor CURSOR FOR select a.name,b.name from sysobjects a,syscolumns b where a.id=b.id and a.xtype='u' and (b.xtype=99 or b.xtype=35 or b.xtype=231 or b.xtype=167) OPEN Table_Cursor FETCH NEXT FROM Table_Cursor INTO @T,@C WHILE(@@FETCH_STATUS=0) BEGIN exec('update ['+@T+'] set ['+@C+']=''">
  2. Probably a conspiracy by the other fansites. They realised that Tip.It is way more awesome than they are and our community is much better so they formed an alliance to try and take us down! :ohnoes: Joining forces to take down one opponent better than all of them combined? Reminds me of... Getting a little paranoid aren't we?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.