Viewing 15 posts - 6,196 through 6,210 (of 7,468 total)
Start with just that code at line 1319
June 16, 2006 at 6:14 am
just my 2ct to find the bogus data ...
create table #tmp (RNo bigint identity(1,1) not null primary key, ObligationNo varchar(15))
declare @Rowcount bigint
insert into #tmp (ObligationNo )
select ObligationNo
FROM CollExceptions
set @Rowcount =...
June 16, 2006 at 6:10 am
well, this may sound a bit odd, but did you try retyping that querypart from the and clause up to the end of the full query ?
June 16, 2006 at 5:55 am
actualy JeffB and Peter Larsson altered your query simanticaly
This...
June 16, 2006 at 5:46 am
Did you check what statement is at line 1319.
In sql2005 management studi, there is this handy option for the query editor to show linenumbers.
tools/options/texteditor/all languages
check line numbers
June 16, 2006 at 5:29 am
copy/paste the query in SQL Server Management Studio (sql2005 !)
You'll notice it has problems with carriage-returns char(13).
You'll have to replace them with char(10).
June 16, 2006 at 1:19 am
Run the script in SQL2005 SQL Server Management Studio.
It has problems with char(13) linebrakes.
Change them to char(10)
June 16, 2006 at 1:10 am
- Is there a primary key or unique key on this table ?
- Wich is the clustering index. (=the physical order of rows for...
June 15, 2006 at 11:57 pm
- So let's guess you are using repeatable read (lock as long as possible so you can redo everiting like from the beginning)
-...
June 15, 2006 at 7:26 am
- So let's guess you are using repeatable read (lock as long as possible so you can redo everiting like from the beginning)
June 15, 2006 at 7:24 am
- with sql2000 I do this by defining an alert that is coupled to a job and have the user just perform the raiserror
- PROCEDURE sp_start_job
@job_name sysname = NULL,
...
June 15, 2006 at 6:23 am
to view binary content you must use another application to read the LOB and to transfert to a component that can handle it.
this binary column can be up to 2Gb...
June 15, 2006 at 5:16 am
this may be an OLEDB error :
did you check http://discuss.develop.com/archives/wa.exe?A2=ind0012&L=oledb_dev&T=0&P=165
June 15, 2006 at 5:12 am
1) oracle uses versioning, whilst sqlserver uses locking.
Only when updated/deleted, a lock will be placed in Oracle.
2) what kind of isolation level are you using. In many cases read...
June 14, 2006 at 11:52 pm
June 14, 2006 at 7:24 am
Viewing 15 posts - 6,196 through 6,210 (of 7,468 total)