Viewing 15 posts - 10,771 through 10,785 (of 14,953 total)
I guess I'm not clear on what you're asking. If you execute a select statement, you'll get a resultset on the screen.
February 25, 2009 at 8:03 am
SQL 2008 has intellisense in Management Studio. Won't work on 2005 connections, but if you write the query on a 2008 connection (Dev edition maybe), you could then port...
February 25, 2009 at 8:00 am
Roy Ernest (2/25/2009)
So what kind of new idea should I come up with to get me a new T-Shirt...:D
I'm going to suggest e-mailing Steve and asking for one. That's...
February 25, 2009 at 7:58 am
What do you want to change the month in? A query? A filename? The e-mail?
February 25, 2009 at 7:57 am
You listed three or four different queries earlier in this thread. Try each of them on each index, see what the average run-time and IO are on all of...
February 25, 2009 at 6:34 am
There's a feature in SQL 2005 called "output", that can return the values from an insert. You could use that to detect which exact rows were successfully inserted into...
February 24, 2009 at 2:31 pm
If you can add triggers to tables, you can log stuff that way.
If you can get a log parser, you can check the SQL Server log files.
If neither of those...
February 24, 2009 at 2:28 pm
Check out sp_executesql. You can return values as output parameters from dynamic SQL with that.
February 24, 2009 at 2:26 pm
When you open the surface area configuration, what server does it say it's connected to? Local?
February 24, 2009 at 2:00 pm
Try replacing all of that with:
SELECT @sql =
'select
dis
from
mshq_ivr_a1
where
plannbr = ' + cast(@qPlanNum as varchar(10)) + '
and
question = ' + cast(@qQuestion as varchar(10)) + '
and...
February 24, 2009 at 1:59 pm
Ninja's_RGR'us (2/24/2009)
george sibbald (2/24/2009)
its all yours then Gus.Ninja, you might want to edit that last post..................
Since when are the words shirt and shits not interchangeable :P.
Ok I type too fast...
February 24, 2009 at 1:44 pm
Are you running the configuration manager on the server where you are running SQL Server, or are you running it from a separate workstation?
February 24, 2009 at 11:50 am
You'll need to use dynamic SQL to accomplish what you're talking about. Build the query string, execute it.
For example:
declare @sql varchar(max);
select @sql = 'select q' + @Col + '...
February 24, 2009 at 11:49 am
Viewing 15 posts - 10,771 through 10,785 (of 14,953 total)