Viewing 15 posts - 32,341 through 32,355 (of 39,818 total)
Adam,
Haven't taken it, but pass percentages seem to be about 850 or so and the # of questions is usually 52. I took the 444 exam and it was standard...
April 9, 2007 at 9:15 am
You can also use the FileSystemObject in DTS (ActiveX) task to do this.
April 8, 2007 at 4:42 pm
I think you can make this person an owner of the dbo schema as well.
April 8, 2007 at 4:41 pm
Search this forum and the MS one and you'll likely find some interesting problems to solve. There are also a few DTS articles on this site you can read.
April 8, 2007 at 4:40 pm
I tried it years ago in the floppy era and it worked a few times for me. Haven't messed with it since then.
April 7, 2007 at 12:32 pm
sp_help_revlogin from Microsoft. Search for it there for 2005. I think we might have the original version for 2000 here.
Yep, saved it: http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1711
The syntax changed slightly for 2005.
Use this on...
April 6, 2007 at 7:31 am
Jeff's got great advice here and I agree with him. If this server is used by a few people it might be ok, but 1GB of RAM is pretty low....
April 6, 2007 at 7:30 am
Biggest thing for me is on-site shower. Nice to be able to run/bike/basketball/soccer, etc. and get clean after lunch.
April 5, 2007 at 8:01 pm
Sorry, I know I saw it somewhere, but I must have grabbed the wrong URL. Still looking.
April 5, 2007 at 8:00 pm
Sorry for missing this the other day.
We did it by creating two tables. One for things you add from the site and one for things we add, like purchased products....
April 5, 2007 at 2:17 pm
I'm not sure this is a supported upgrade. It may be, but you should be able to install ss2k5 and then attach or restore your databases on the new instance....
April 5, 2007 at 8:30 am
What is "nesting"?
It's
FROM Inventory AS I
INNER JOIN Block AS B
ON I.BlockID = B.BlockID
INNER JOIN Phase...
April 5, 2007 at 8:26 am
I believe it writes to one at a time, though there are multiple threads, one per file. So if you have a large or open tran, it could be writing...
April 5, 2007 at 8:24 am
You are trying to add all the rows from table2, some of which have the same firm, or PK, in Table 1.
You need to do this as two statements.
update table1
...
April 5, 2007 at 8:22 am
you mean
select *
from tableA
where cola = case when colb = 'b' then 1 else 0 end?
You can, but if you explain what you're looking to do, we might...
April 5, 2007 at 8:20 am
Viewing 15 posts - 32,341 through 32,355 (of 39,818 total)