Viewing 15 posts - 30,361 through 30,375 (of 39,919 total)
I agree with Jeff and highlight what you know, don't sweat what you don't. Show them you can learn and are willing to tackle any project. Show experiences from your...
December 20, 2007 at 6:32 am
select t1.name
from table1 t1
where t1.id not in (select id1
...
December 19, 2007 at 2:38 pm
You get signals up in Alaska?
Surprisingly, no neighbor is within 1000 ft of my house, yet for some reason I see 2 other Routers appearing in my wireless network.
Maybe...
December 19, 2007 at 2:34 pm
select *
from information_schema.columns.
Look at the result set, add your filter
December 19, 2007 at 9:44 am
This is typically a disk error meaning the file can't be read. Can you copy the file over? It would eliminate network issues.
December 19, 2007 at 9:44 am
There is a runtime for DTS packages on 2005, so you can run them in that. I believe this is only 32-bit, but I thought a 64-bit version was coming.
You...
December 19, 2007 at 9:42 am
When you make a schema change, a new table is created, the data copied over, and then the old table dropped, new table renamed.
This is probably what's happening. If you...
December 19, 2007 at 9:40 am
Does the user need to read all tables?
A login is a server level security object that maps to a user in a database. So you need to create a user...
December 19, 2007 at 9:39 am
Thanks and glad you like the topic. I was hoping for more of a response 🙁
We used to change emails to email001@xxx.com, email002@xxx.com, etc., to correspond with some id value...
December 19, 2007 at 9:35 am
I find the painting thing hard to believe, but it probably depends where it was tried. San Francisco might allow that 😉
Let me reframe this slightly, since I probably didn't...
December 18, 2007 at 1:11 pm
You've done a lot of what I'd suggest. I would look at the disk system, I wonder if you've got hardware issues.
The other thing I'd check is do you have...
December 18, 2007 at 8:30 am
I'd go with Matt's solution. Even if you change memory, you have to read in the initial data into the data cache, which is slow.
We've done this, created a...
December 18, 2007 at 8:27 am
Does the SQL user have rights to run the package? It has to be able to read it from MSDB.
If you execute that statement from your workstation, does it work?
December 18, 2007 at 8:25 am
Jack is correct. There are two mail systems, SQL Mail, run by the SQL Server database engine, and SQL Agent Mail, run by SQL Agent. You need Database Mail set...
December 18, 2007 at 8:18 am
Viewing 15 posts - 30,361 through 30,375 (of 39,919 total)