I Imported some Access tables using the SQL 2008 wippy dippy new Import/Export thingy and low and behold my tables don’t exist to it. Oh they show up in the explorer list and I can even open them up and view the data but can I write a simple Query? NOOOOOO.
Invalid Object!
So before I take this PC and throw it in the dumpster maybe some one could write me a script that the Microsoft SECURITY SQL GODS will tolerate my newly imported data.
here is my script if that matters.
Luckily I still have SQL 2000 and good ole Enterprise Manager so I can go in and just have fun and write code blind folded and guess what it works same database, same table. Just a different front end? Dooh!
TIA
DougP
< I Built one
Invalid Object!
So before I take this PC and throw it in the dumpster maybe some one could write me a script that the Microsoft SECURITY SQL GODS will tolerate my newly imported data.
here is my script if that matters.
Code:
SELECT Top 1 WeekStartDate, WeekEndDate, WeekNumber, PayPeriodDate, PayPeriod FROM [Timesheet PayPeriods] WHERE (WeekEndDate >= getdate())
Luckily I still have SQL 2000 and good ole Enterprise Manager so I can go in and just have fun and write code blind folded and guess what it works same database, same table. Just a different front end? Dooh!
TIA
DougP
< I Built one