Viewing 15 posts - 1 through 15 (of 29 total)
mayank.and.friends (6/10/2009)
Sql string should be always either ntext/nvarchar/nchar.So ,please check type of sql query variable as nvarchar():w00t:
Thank you! That solved my problem.
April 27, 2016 at 1:15 pm
I was having the same issue. I could not execute the shrink command on my logical log file name when the name was different in sys_database_files and sys_master_files. ...
August 20, 2015 at 11:18 am
Matt, thank you for the range table fix. I implemented that code and also the IF EXISTS and it ran at 28:43. It seems the fastest I can...
December 8, 2008 at 9:46 am
The member ids sometimes do have alphanumeric characters but should never have any symbols, ie. "[" and ":"; so I like the first way you populated #ranges. I will...
December 5, 2008 at 4:02 pm
Matt Miller (12/3/2008)
drop table #ranges
;with AlphanumericCTE as (
select
char(N) digit,
char(N+1) nextdigit
from tally where
n between 48 and 57 or --digits 0...
December 5, 2008 at 12:50 pm
Jonathan Melo (12/5/2008)
First off, your temp table shouldn't have the key...
December 5, 2008 at 12:26 pm
Jeff Moden (12/3/2008)
December 4, 2008 at 2:36 pm
Matt Miller (12/4/2008)
Did you ever try my idea on? Just curious what you ran into.
Hi Matt,
I'm still working on Jeff's solution. It takes a while to run these...
December 4, 2008 at 8:58 am
Lynn Pettis (12/3/2008)
December 3, 2008 at 10:05 pm
Lynn Pettis (12/3/2008)
declare @BatchSize int;
set @BatchSize = 10000;
while...
December 3, 2008 at 9:38 pm
Jeff Moden (12/3/2008)
December 3, 2008 at 7:20 pm
Jeff Moden (12/2/2008)
December 3, 2008 at 4:36 pm
Matt Miller (12/3/2008)
Lynn Pettis (12/3/2008)
December 3, 2008 at 4:25 pm
Lynn Pettis (12/3/2008)
Doug (12/3/2008)
December 3, 2008 at 4:12 pm
Viewing 15 posts - 1 through 15 (of 29 total)