Tuesday, September 30, 2014

object_id with table created by mistake with schema name

OBJECT_ID(N'blah.[blah.boo]')


brackets around the whole name worked

Monday, September 22, 2014

Wednesday, September 17, 2014

asynchronous <> multithreaded

here

changing recovery plan

I coudnt do it with the graphical tools because the log was full

this worked

ALTER DATABASE blah set recovery simple

Tuesday, September 16, 2014

Tuesday, September 9, 2014

" works like [ in sql server

create table xxxxxx ("x x" int)
insert into xxxxxx values (456)
select [x x] from xxxxxx

select "x x" from xxxxxx

Monday, September 8, 2014