Viewing 15 posts - 316 through 330 (of 1,048 total)
I would bulk insert all 1000 rows into a staging table. Then do the insert in a single transaction, or roll back if some failure occurs.
If the process dies in...
January 25, 2012 at 2:40 pm
Probably the way you are doing it now is the best and most efficient considering what result you need.
You could use a common table expression to produce the value then...
January 24, 2012 at 3:20 pm
There should be no issues as long as all references are via that mapped drive letter.
January 24, 2012 at 3:08 pm
I'd love to go but there is no way I'd get the paid time off (and hotel/airfare) to attend something like this.
January 24, 2012 at 8:05 am
excellent point, Steve I completely forgot about the convenience of using the configuration manager.
January 23, 2012 at 2:24 pm
some of it depends upon the nature of the application running on it (it is using some CLR code that does external access?). Other than that it should be a...
January 23, 2012 at 1:30 pm
Matt Miller (#4) (1/23/2012)
January 23, 2012 at 12:50 pm
Amen.
If only these "code jigglers" would be fired, or reassigned to do something less disastrous we wouldn't have so many problems. However all to often these "jigglers" secure...
January 23, 2012 at 8:49 am
I have seen way too much of this delimited data in on varchar() column crap. It is typically implemented by a programmer who knows about RBAR processing with VB or...
January 20, 2012 at 9:22 am
you can write a small .net wrapper program to execute the procedure and return the output param as an exit code (assuming it is an integer).
Another option is to...
January 20, 2012 at 9:12 am
I bet DBAs in general have a unique perspective on this subject. To be really good at what we do we have a broad base of experience from software development...
January 20, 2012 at 7:11 am
No but you can create your own backup procedure and use any format you want.
I don't use maintenance plans for my backups, I have dedicated procedures that runs against a...
January 19, 2012 at 12:58 pm
You can bulk insert into a table with an identity. The identity will maintain the insertion order.
January 18, 2012 at 1:48 pm
I would suggest doing it something like this:
SELECT *
FROM #TempData A
LEFT JOIN #TempCodes B
ON
A.codes like '%'+CodeRef'+'%'
I'd put any regex directives (ie '%') right in the CodeRef...
January 6, 2012 at 9:25 am
doesn't view->object explorer work?
January 3, 2012 at 1:58 pm
Viewing 15 posts - 316 through 330 (of 1,048 total)