Viewing 15 posts - 12,106 through 12,120 (of 18,923 total)
Is it possible that you only have 8 John Walter in the data, meaning that no more than 8 rows can be returned??
May 11, 2006 at 6:43 am
Why can't you use a counter client side when you display the data?
May 8, 2006 at 6:46 am
There's just no way around this one... BTW you should do that for ALL objects. It avoids a whole lot of troubles down the line.
Check it out in the...
May 4, 2006 at 6:38 am
Yes there's a big tradeoff both is security and performance.
Check those out :
Arrays and Lists in SQL Server
May 3, 2006 at 10:31 pm
This is what you are looking for :
This example uses the DISABLE TRIGGER option of ALTER TABLE to disable the trigger and allow an insert that would normally violate...
May 2, 2006 at 9:48 am
My questions was aimed at him avoiding the use of dynamic sql.. not encourage him :-).
May 2, 2006 at 9:46 am
You want to bypass in a specific tsql batch, or you need to bypass on a column base?
May 2, 2006 at 8:36 am
That's just a good habit.... First print the command, see if it will exec what you think it must exec, then make it run. If you don't do that you...
May 2, 2006 at 7:19 am
As I said it changes in the exec itself, but that context is completely independant than the calling context.
Try something like this
DECLARE @dbname varchar(30)
SET @dbname = 'pubs'
declare @sqlt varchar (500)
set...
May 2, 2006 at 6:45 am
It does change it. The exec creates a new execution context. The db is use is changed for that new context but not for the current context.
What do...
May 2, 2006 at 6:00 am
Viewing 15 posts - 12,106 through 12,120 (of 18,923 total)