Viewing 13 posts - 1 through 13 (of 13 total)
I just think its great you took time to write the article and help out, and get people thinking of ways to make their jobs easier. I worked with...
March 20, 2014 at 10:33 pm
Please don't misunderstand me, I did not mean to imply CURSORs are bad. I used to use them all the time (yes in SQL 6.5,7.0, 8.0 & 9.0, less...
March 20, 2014 at 12:24 pm
That was my final solution, though varchar (or nvarchar) (max) is another SQL feature I hesitate to use, though in this situation it is benign and a good solution.
March 20, 2014 at 12:07 pm
In my case, with your solution of packing it all into a variable, my list was truncated because of the limited space. I will try it with a larger...
March 20, 2014 at 9:50 am
Something like this for example:
DECLARE @query table (num int, dSQL varchar(2000))
DECLARE @dsql varchar(2000)
DECLARE @RoleName sysname = 'LoneWolfDBA'
DECLARE @cnt int = 0
INSERT @query (num,dSQL)
SELECT row_number() over (order by ROUTINE_SCHEMA,...
March 20, 2014 at 9:17 am
Elliott Whitlow (5/12/2012)
May 12, 2012 at 2:37 pm
I am curious why no one has stated the obvious, if you are a Senior DBA you have a script that will take any database name and file path and...
October 22, 2010 at 9:56 am
GSquared (10/22/2010)
You can't depend on scripting 100% either.Nothing mankind engages in is error-free.
But with a script you can test it and retest it so when it has to work you...
October 22, 2010 at 9:35 am
I think not respecting a DBA that uses the GUI is an old DBA thing. In SQL 6.5 and to a lesser degree 7.0 (and earlier) the GUI was...
October 20, 2010 at 9:56 am
If a DBA works for a single organization for many years and never works outside that organization then they will only have the tools that are required by that job....
October 15, 2010 at 11:32 am
If you have the option to do some redesign of the application you might want to try something like:
Reading from your Inventory table, but updating your InventoryUpdate View that uses...
March 26, 2009 at 4:34 pm
Vijay,
Is this an online store scenario, where you have a product catalog and need to keep track of orders or something of that nature?
March 26, 2009 at 4:05 pm
It is my understanding that the mirrored database is for failover only and is not viewable in anyway. Is this what you need from your replicated databases?
March 26, 2009 at 3:49 pm
Viewing 13 posts - 1 through 13 (of 13 total)