Viewing 15 posts - 436 through 450 (of 566 total)
From BIDS or VS you save a copy of the package to the server. You can then execute the package via DTExec and DTExecUI, or as a step in a...
October 31, 2007 at 12:34 pm
Run a search for Chinese collation sort in the BOL. Sounds like the collation in the database could be presenting a problem. Hope this helps 🙂
196 Chinese_Taiwan_Stroke_BIN
197 Chinese_Taiwan_Stroke_CI_AS...
October 31, 2007 at 12:25 pm
If I'm understanding you correctly, I think your looking for a case statement - i.e.
update myTable
set column3 = case
when column2 like '%thisvalue1%'...
October 31, 2007 at 12:11 pm
This sound like a good candiate for SSIS. SQLIS has some good examples, ie.
What I was suggesting earlier is that you save this query as BLAH.sql and use SQLCmd to...
October 31, 2007 at 9:57 am
Ok, I'm not sure I understand your question. If your attempting to execute a SQL script from the command line, you can use SQLCmd (i.e. calling SQLCmd directly, from a...
October 31, 2007 at 8:31 am
October 31, 2007 at 8:04 am
This white paper which details how to configure Database Mirroring in SQL 2005 for SPS and WSS 3.0 - http://go.microsoft.com/fwlink/?LinkId=83725&clcid=0x409. Might help 🙂
October 31, 2007 at 8:00 am
I'm not sure I understand your question - are you just looking to create a table for your select statement? i.e.
create table #BLAH
(VIOLATOR varchar(25),INCIDENTDATE datetime)
insert into #BLAH
select VIOLATOR, max(INCIDENTDATE) AS...
October 30, 2007 at 1:28 pm
Good luck 🙂
October 30, 2007 at 1:02 pm
Try -
DBCC xp_availablemedia (free)
GO
October 30, 2007 at 11:58 am
message box = assuming of course your using it for debugging purposes. Not really sure why else you would need it 🙂
October 30, 2007 at 11:21 am
What sort of problems are you having? The very first step I recommend in troubleshooting any SMTP related issues with database mail is to first confirm you can send mail...
October 30, 2007 at 10:15 am
We've been running build 3186 in production for a couple of months without any problems. Cumulative update 4, build 3200 is the latest build available (http://support.microsoft.com/kb/941450/).
October 30, 2007 at 10:04 am
To the best of my knowledge it works a a series of small system transactions so there really is nothing to rollback. You will have to start over however 🙂
October 30, 2007 at 9:27 am
Viewing 15 posts - 436 through 450 (of 566 total)