Viewing 15 posts - 1 through 15 (of 19 total)
Adding TFS to the equation iwill increase the cost!
January 3, 2012 at 1:37 am
Cost is the usual reason given for not using VS database projects.
December 30, 2011 at 1:41 pm
For me SSDT is one of the great things in 2012.. looking forward to the release next year 🙂
December 30, 2011 at 8:44 am
One thing the article does not take into account is all the backups that will be in-accessible if the certificates are removed. I have a couple of posts about this...
November 3, 2011 at 2:38 am
SMO is not consistent when raising exceptions for login failures.
I've blogged about Powershell error handling:
http://sqlblogcasts.com/blogs/martinbell/archive/2011/01/16/Powershell-Error-Handling.aspx
and raised this error on connect:
January 17, 2011 at 2:38 am
This may work for you, but it is not going to work or be a option for everyone.
November 29, 2010 at 12:22 pm
Doug Bishop (11/29/2010)
November 29, 2010 at 11:54 am
Doug Bishop (11/29/2010)Okay, I am confused; license cost for what? A stored procedure is a script that has been saved to the database using CREATE PROCEDURE procname. There are no...
November 29, 2010 at 10:35 am
Doug Bishop (11/29/2010)
Anyone ever hear about a...
November 29, 2010 at 9:56 am
For Oracle you can use SQL*Plus on a command line and the START option i.e. @filename will allow you to run a file. Alternatively you can use the START command...
November 26, 2010 at 12:53 pm
Maybe my blog posts explains all of this better, it pre-dates all of these articles.
http://sqlblogcasts.com/blogs/martinbell/archive/2009/06/02/How-to-execute-multiple-sql-scripts.aspx
or if you use Powershell
Martin
November 25, 2010 at 8:31 am
Sqlfrenzy (8/11/2009)
actually I was trying to communicate that if there is a begin tran without any corresponding rollback or
commit in the script to be executed...how this can be taken care...
August 11, 2009 at 12:39 pm
This file can also be created from a batch file without manual intervention e.g.
del runsql.sql
echo :on error exit > runsql.lsq
for %%f in (*.sql) do ( echo :r "%%~ff" >> runsql.lsq...
August 5, 2009 at 1:13 pm
the sqlist (8/3/2009)
Martin Bell (8/2/2009)
the sqlist (7/31/2009)
Mmm... the delete option doesn't seem to work!
What delete option?
I tested that code right before I posted it and everything worked fine.
I was talking...
August 3, 2009 at 1:17 pm
the sqlist (7/31/2009)
...for /f "tokens=1" %%i in ('dir /b %3\*.sql') do (
...
I like this option :-), although you don't actually need to tokenise the output of the bare format...
August 2, 2009 at 5:58 am
Viewing 15 posts - 1 through 15 (of 19 total)