Viewing 13 posts - 151 through 163 (of 163 total)
I use a different method.
I use one temporary table with an additional field (Session_ID)
This Session ID isgenerated by the application.
June 17, 2003 at 6:25 am
Dear Murad,
From you message what I understand is you have a column called 'VBPCRBPXA' It is defined as integer in table1 and as varchar in table2
The error happens when you...
June 17, 2003 at 5:18 am
I am including the a part of the code from sp_Compare2Tables
(removed part is actually checking the structure)
I didn't check the code throughly, sa there may be errors.
In case...
June 17, 2003 at 2:33 am
Do you have primary keys or unique keys to identify the rows uniquely?
Is the name of the fields same?
I can get a part from my script (Compare 2 Tables) by...
June 17, 2003 at 1:09 am
I have tested the sp from another databse too.
It worked fine.
Please Check your T-SQL statement. (Is the database name correct? Is the Schema name DB in the first database?)
...
June 12, 2003 at 1:59 am
Please check the syntax and input data of the command.
Hope you have full rights.
Preethi
(G.R.Preethiviraj Kulasingham)
June 11, 2003 at 10:44 pm
Please check the syntax and input data of the command.
Hope you have full rights.
June 11, 2003 at 10:43 pm
This is a very good article.
So, How can we prevent our computer from attacks.
1. Deny rights to syslogins.
2. Deny rights to xp_ procedures
3. Make your sa password lengthly (according...
December 10, 2002 at 4:20 am
In addition to What Antares686 had said, I would like to suggest some other things which could be used to improve the performance.
Change Varchar (6) and Varchar(3) into Char if...
April 17, 2002 at 6:19 am
=NULL is possible if you set the server to ANSI_NULLS OFF. (Through SET Statement, sp_DBOption, or ALTER DATABASE).
The Problem is it is not ANSI92 Compliant. It is better always to...
April 17, 2002 at 5:01 am
I saw your article only today.
It is very usefull, and practical.
I learned so many new things in your article.
Thanks, Keep it up.
Preethi
March 26, 2002 at 6:16 am
In the way I understood your problem, I believe that your result sould be some thing else.
("..I only want the 6 PENDING rows where..")
Do you say the call_ID should have...
March 26, 2002 at 5:21 am
The SysProperties Table has the description.
the name should be 'MS_Description'
Here I have a sample code
select O.Name [Table_name], c.name [Column_Name],
p.Value [description]
From dbo.SysObjects O,
dbo.SysColumns C Left Outer Join
(select id, smallid, name,...
March 25, 2002 at 6:18 am
Viewing 13 posts - 151 through 163 (of 163 total)