Archived Months
January 2003
March 2003
April 2003
May 2003
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
April 2008


all groups > sql server programming > november 2003 > threads for wednesday november 5

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

problem with query result
Posted by r_vijayvergiya NO[at]SPAM rediffmail.com at 11/5/2003 11:53:19 PM
I have written a very simple query but it gives unexpected result. I have one table ttest having two columns iid and name. name columns have several duplicate values. i want to delete all duplicate value and keep only latest value. first i want to check the values which I have to delete. my q...more >>

Diff : SELECT and EXEC (QueryString)
Posted by Sanka at 11/5/2003 11:37:15 PM
Hi All, What is the difference between executing 1) SELECT statement and 2) Declaring a string variable which contains the SELECT query and executing it through EXEC() call. Does the User need any extra access rights for the second case than required for the first case. Cheers, Sank...more >>

syntax error
Posted by TJS at 11/5/2003 11:16:50 PM
using a IF statement in stored procedure but won't save. what is causing 'incorrect syntax error near keyword "else" ' ? IF <condition> EXEC mysp1 ExEC mysp2 --error here ELSE blah blah blah... GO ...more >>

SELECT - WHERE - REPLACE
Posted by Sanka at 11/5/2003 10:58:55 PM
Hi, Is it possible to use REPLACE() function in the WHERE clause in the SELECT query. For example: select * from symbols where symboldesc in ('Contains','Equals') select * from symbols where symboldesc in (replace ('''Contains;Equals''',';',''',''')) The first query is returning ...more >>

Cancel Stored Procedure execution
Posted by Lenny at 11/5/2003 10:43:16 PM
Hello, Is there a way to stop stored procedure execution upon user requests. A stored procedure is called from APS.NET page. Actually a new thread is started that calls sp, the page is then reloaded every 5 seconds and progress bar is displayed. Usually it takes a few seconds to 10 mins to ex...more >>

Pass table name as param to SP
Posted by Les McPhee at 11/5/2003 9:31:08 PM
I want a function or SP that can return value indicating whether a specified table is empty or not. I tried (unsuccessfully) to pass the table name as a param - something like: CREATE PROC GetTableSize @TblName varchar(20) AS BEGIN RETURN (SELECT Count(*) FROM @TblName) END GO ...more >>

Trigger on a table with identity column as PK...
Posted by Rathna Raj at 11/5/2003 8:40:31 PM
This is an ADO issue, not quite that of SQL Server itself. Using ADO (V2.6) Recordset, while saving (UpdateBatch) a newly added record with an identity column as PK, just after the execution of "insert" statement there will be a call to "Select @@IDENTITY" (you can see this in profiler). I pre...more >>

User Define Function
Posted by Joey at 11/5/2003 8:11:07 PM
Where can i find more info about how to create User Define Function or any body can tell me how to create joey...more >>



Repeating tasks
Posted by Tom Bombadill at 11/5/2003 7:03:02 PM
OK gentlemen, here's another one. How do I repeat a task a few times over until the condition is met. I have two tables(table1 and table2). Table 1 consists of an ID column and a number of user data columns. Table2 consists of one ID coloumn, one table1ID column and one user data column. ...more >>

FOR XML and invalid ASCII characters
Posted by William Bartholomew at 11/5/2003 6:27:36 PM
As several people have mentioned in this newsgroup and others SQL Server returns invalid XML when FOR XML is used and the column contains control characters (eg 0x03, 0x08 etc) because it fails to escape these characters to their XML safe equivalent (&#xx). I've heard rumours this is fixed in ...more >>

import of data in text file How ?
Posted by ben brugman at 11/5/2003 5:11:08 PM
Hello group, Each month we want to import data from an ascii file, the records are of a fixed length (some spare space is added to fill them up) there are 12 different types of records (variants) Each type has a different (but within the type always the same) build. Each record starts with a...more >>

What did u say - SQL Server 2003 ???
Posted by I_AM_DON_AND_YOU? at 11/5/2003 5:10:57 PM
There is a job for SQL Server 2003 DBA ? Open this... http://www.pickajob.com/Main_JobDetail.asp?ReviewJobs=389729&jTitle=SQL+Server+2003+DBA ...more >>

how to delete unrelated records
Posted by TJS at 11/5/2003 5:00:03 PM
tableA -- 1 to many --> tableB trying to delete unrelated records in tableB need help getting the query to work in msde can u help ? my thought was to do this but having no success =============================== delete tableB where 0= (select count (*) from tableA where tableA.A1...more >>

Getting result from 3 stored proc
Posted by Kevin Moore at 11/5/2003 4:51:24 PM
how can i get the result of 3 stored procedure to get a final view to use with crystal report ...more >>

Table Variables
Posted by Darren at 11/5/2003 4:45:39 PM
Is there any possible way to use table variables with dynamic sql? I need to build a temp table using dynamic sql, and read that it was better to use table variables, but also read that because you use exec to create run the dynamic sql it processes as its own batch the table variable is...more >>

search for a value in a comma separated string
Posted by moonglow at 11/5/2003 4:42:37 PM
Hello, How would I search for a value of 4 in a comma separated string? example: A) 4,14,44,444,564 B) 123,4,675,4343 C) 122,444,44444,654,8764 I would only want A and B to return -- Posted via http://dbforums.com...more >>

How can I surpress an error in a stored proc?
Posted by DaveF at 11/5/2003 4:21:07 PM
I have a stored proc in which I use a unqiue index on a temp table to eliminate dups. The index looks like this: CREATE UNIQUE INDEX dups_be_gone ON #unbundledorders (custid, ordertype) WITH IGNORE_DUP_KEY And it will prevent me from inserting any dups into my temp table. BUT... when i...more >>

Converting a date field
Posted by Anita at 11/5/2003 4:11:32 PM
I posted a question yesterday and I'm still having problems. I am importing a file into a table and need to convert the date fields(which are text) to date data type. The date is showing as 103003 The code I got yesterday was the following: Insert into table1(Close_Date) Select CONVERT( ...more >>

Questions on NText? (Table design, "textInRow")
Posted by Welman Jordan at 11/5/2003 4:05:47 PM
In Sql Server 2000, there's a "text in row" option for faster retrieval of Ntext/Text data by storing the data in table rows. Is there any disadvantages about using this option? Somebody on the web suggest that NText/Text/Image columns should be isolated to another table. i.e. Table (...more >>

Best ad-hoc query
Posted by Tom at 11/5/2003 3:49:17 PM
If you look at the advanced search page for books on Amazon.com, you have 4 text boxes where you can enter: Author, Publisher, ISBN, and Title. If you have a "don't care" field, you leave it blank. What is the most efficient way to implement this with SQL Server? I can't put a "don't ca...more >>

Replace
Posted by Mark Cooney at 11/5/2003 3:40:13 PM
Hi All, Quick question. ASP Replace Replace(string,"@", "") Whats SQL equivalent please? Thanks ...more >>

FTP in DTS
Posted by awan at 11/5/2003 3:26:28 PM
I have a DTS package to download a file from ftp site. Somehow when I ran the package fro the first time, I can see the file is coming in from File Explor window, but as soon as the package finished excuting, the downloaded file is disapperaed. If I run the same package second time, the file will...more >>

How to run script file thro command line?
Posted by Hansen at 11/5/2003 3:16:05 PM
Suppose I have a SQL file "test.sql", is there a way that I can type a command to run this file against a specific MSSQL DB from Command Line?...more >>

generating a random number
Posted by Dan at 11/5/2003 3:14:49 PM
I'm using SS2000 and I want to generate a random number for each row in a table. I created a table and made the seq_num column an identity column. Then I inserted the rows. Then I used the following statement to create a random number: update tblCFICombined1 Set Random_ID = rand() * SEQ_NUM ...more >>

BackUp Question
Posted by Loukas Marinis at 11/5/2003 2:57:42 PM
SQL 7.0 and vb6 I have created some backup devices using sql dmo but when i try to change tha name it says something about existing backup device name can't be changed. Thanx in advance ...more >>

ORDER BY specific values
Posted by ANJ22ATL at 11/5/2003 2:51:08 PM
Hi Everyone, I was wondering if there is anyway to ORDER BY in a query by certain values first. I have a table with Projects and subprojects and sub- subprojects and I always want to display the parent project first. Is there anyway that I can do that. Thanks for all your help. -- Poste...more >>

YYYY-MM as a string
Posted by Jochen Daum at 11/5/2003 2:42:11 PM
Hi ! How can I get a date as YYYY-MM as a string in a View in SQL7? Background is, I want to have a month-year daterange selectable in a HTML form. The results are based on Views which count rows for this date range. I could go with one-digits months, but then they don't sort well in the s...more >>

Where is the missing quote delimiter??
Posted by blackwulf at 11/5/2003 1:48:37 PM
I realize that this may seem simple but this one that is baffling both myself and our DBA. Here is the synopsis: I have a table of 8 records to search and pull data from. I was originally using the following sql statement to do this: "Select [Index] as expr1, PullStationList as...more >>

Importing FoxPro Tables Using DTS
Posted by Mari at 11/5/2003 1:47:03 PM
I'm trying to track down the cause of a discrepency between my FoxPro tables & the SQL tables which were created using the DTS Import appl. When I try to Import into SQL using DTS I receive the following error: "Error at Destination for Row number 1. Errors encountered so far in this tas...more >>

repost from asp forum--copying data from one field to another
Posted by middletree at 11/5/2003 1:44:46 PM
Using SQL Server 2000---I have a table which has a datetime field for when a row in this one table (Ticket) was created. This is for trouble tickets for a help desk. After a ticket has been created, any additions to that ticket are recorded in another table called History. There could be several...more >>

Update table Error
Posted by Tim at 11/5/2003 1:29:44 PM
SQL Server 2000 Having Trouble with this Update statement. UPDATE TargetDB..Subset SET [Number] = (SELECT [Number] FROM SourceDB..Master WHERE item = Subset.item and week_ending_date_c = '11/09/2003') i get this error. Server: Msg 512, Level 16, State 1, Line 13 Subquery retu...more >>

write image
Posted by li at 11/5/2003 1:22:21 PM
How do I take an image from MYSQL and write it in SQL Server 7?...more >>

HELP! HOWTO Create new tables from a sql text file
Posted by Lars Grøtteland at 11/5/2003 1:06:11 PM
Hello! I would like this to happen: I create a new database. In the database, I would like to create new tables and SP from a file. How can I do this? Are there any easier way of doing this? Could anyone guide me to open the file. Do I put the information inside a StringList, and use thi...more >>

Self join query get wierd performance
Posted by Jennifer at 11/5/2003 12:59:48 PM
Hi - I posted this last night but it never get through, trying again ... I have a query which inner joins a table to itself 3 times. it is from legacy code base and in old ansi syntex. (select .. from t1, t2, t3 where..., not t1 join t2 ...) table has 20,000 range rows. when there'...more >>

Counting help, please
Posted by Tony Tuso at 11/5/2003 12:53:53 PM
Hello, I have an attendance database where I am trying to write a query that brings me back all pupils and the amount of absences each pupil has for each of their classes. Whether the number of absences or 0 or 23. The query that is written below brings back all pupils that have at least one a...more >>

Extracting Specific Data Within a VarChar Field
Posted by sammy at 11/5/2003 12:37:14 PM
I have a varchar field which typically has about 200 characters of text in it. I need to extract a particular set of characters from it, which appear at different location in the text. The characters I want always have certain text before and after them. Is there any TSQL command which will ...more >>

connecting to named instance
Posted by Joe Rank at 11/5/2003 12:29:43 PM
I have a server that has 2 instances of sql server 2000 on it. the first instance is named <server name> with the second is named as <server name>\<instance name> When I am connecting from a 3rd party web program I must use the IP address of the server not the name to connect, this works fine, b...more >>

Error running T-SQL debugger
Posted by rich at 11/5/2003 12:28:05 PM
When I right click on a stored procedure in query analyzer I select the debug option. When I then click execute the debug window appears but I get the error msg ODBC: Msg 0, Level 16, State 1 [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot load the DLL mssdi98.dll, or one of the DLLs...more >>

SQL count function
Posted by jesperzz NO[at]SPAM hotmail.com at 11/5/2003 12:17:33 PM
I'm in need of a SQL Server function which can take in a word and also a single character, and that function will return the number of times that character appears in that word. For Example (we're counting the number of times + appears in the word): Bob+Smith 1 Bob+Smith+Rocks 2 Bob 0 ...more >>

Weighted Average In T-SQL?
Posted by Jason Huebel at 11/5/2003 12:12:47 PM
Is it possible to do a weighted average in T-SQL? I have some statistical data in a table with this structure (cut down for brevity): CYEAR int CMONTH int NUM decimal(19,5) DEN decimal(19,5) dbo.calcActual(NUM,DEN) as Actual So I have numerators and denominators (NUM and DEN respe...more >>

How to void/rollback an update in a trigger
Posted by AndrewV at 11/5/2003 11:46:36 AM
Greetings, There are multiple applications that update my table TableX. TableX does trigger update to 5 other tables, including TableY. I would like to void/rollback only the update made to TableY if it was called by application AppZ, in effect retain TableY's old/original values. I believe...more >>

SqlDumpExceptionHandler on MsSQL 7.0 SP4.0
Posted by Pawel Labunko at 11/5/2003 11:46:18 AM
Hi, I've encountered following problem: When I start following select statement: --query1 select artcode, av_ont_in as ilosc,cena= case when (uitg_ontv in ('T', 'O','I','V') or (uitg_ontv = 'U' and bkstnr is null)) then inkprv_hfl else vvp END, av_ont_in*inkprv_hfl as wartosc, ontvnr,...more >>

Stored procedure parameter output value
Posted by Steven at 11/5/2003 11:38:04 AM
I'm calling a stored procedure which has an output parameter of type int. Once the stored procedure is executed, I want to check the value of the parameter in case it is null. However, when the a null value is returned I don't seem to be able to detect it. Any help would be greatly appreciated...more >>

Reading from a .dbf
Posted by Offeral at 11/5/2003 11:36:10 AM
I'm trying to set up a stored procedure to read/insert data from a local .dbf to a temp table, is this possible using only tSQL (in other words can it be run through a stored procedure without bringing in a DTS package, etc)? If so, could someone post a short bit of code example? Thanks in advance...more >>

Change the column order in a table
Posted by Magnus Blomberg at 11/5/2003 11:26:09 AM
Hello! Does anyone knows how to change the column order for columns in a table? I have succeded by changing in syscolumns, but this requires the option = sp_configure "allow update" set to 1. I think this is a server option, = and I don't want this to be changed, though the database will be ru...more >>

Trigger and view
Posted by Simon at 11/5/2003 11:16:36 AM
I have SQL server 2000. I have table Products with 40columns, some of them are updating all the time. Now, I would like to create an update trigger only on price column. It would update some other table, when the price of the product is changed. But I can't create the triger only on one column,...more >>

transaction problem
Posted by DC Gringo at 11/5/2003 10:44:20 AM
I have a short transaction that is locking up and not rolling back in QA. The only way out is to disconnect and start over. At that point it gives me the option to commit to rollback, but that's not what I want. Can someone tell me what's wrong with this code? USE db DECLARE @intErrorCode...more >>

How to convert ms.access queries to T-SQL to suite the sql
Posted by monther at 11/5/2003 10:36:34 AM
Hello; I have made a Ms.Access Database , But the problem I want to convert it to SQL SARVER2000. I found a tool in the SQL SARVER2000 that convert tables but it has a problem in the queries. I made the query conversion manually , but now the main problem is in queries that had been written in...more >>

Varchar to date
Posted by Scott at 11/5/2003 10:36:22 AM
I am trying to convert a varchar column to a date. The date in the varchar data is formated like 110103 010203 090403 The select I am using now is select convert(varchar(6),stpefdate,101) as 'date' from r01 When I run it, it comes back as: 110103 ...more >>

Design question..
Posted by Yaheya Quazi at 11/5/2003 10:06:04 AM
Hi I have a database where I record transaction as below order_id char(12) line_number int item_received int location varchar(12) recordID (autonumber) and also primary key here some some sample data order_id = ABC line_number = 1 item_recieved = 1 location = location1 order_id = ...more >>

Real vs Double vs Numeric vs Decimal
Posted by André Almeida Maldonado at 11/5/2003 9:55:01 AM
What is the diference in create a double, a real, a numeric(9,2) and a Decimal(9,2) column??? Thank's ...more >>

multiple sets of data to one sp for batch updating
Posted by Rayne Bair at 11/5/2003 9:53:57 AM
Is there any way to pass multiple values to a stored procedure as a set = of values. For example I'd have an application that must do multiple = saves of data...this set of data first, then a second and third set of = data. But I currently have the VB code to run the first update, then the = sec...more >>

Can you Parse text file with stored procedure?
Posted by Kevin at 11/5/2003 9:50:22 AM
I'm new to stored procedures. I can write Visual Basic code to to the following but I'm trying to create a SQL serverbased automatic process. I need to parse a tab delimited text file to update an sql table. Problem is, the supplied text file is in a non standard format. It's tab delimited ...more >>

Storing Formatted Text
Posted by Cecilia at 11/5/2003 9:41:05 AM
I need to store formatted data in SQL. I have tried text and varchar datatypes, but the format does not get stored. I am basically trying to do a dictionary with words and definitions....some of the definitions include tables. Anyone have any ideas? Thanks...more >>

Passing multiple null parameters to stored procedure
Posted by laurenquantrell NO[at]SPAM hotmail.com at 11/5/2003 9:37:51 AM
Using MSAccess2000 ADP project: I have a form that contains four search fields named: EmployeeID LocationID DepartmentID SearchText The form has a subform that shows a list of all empoyees. What I want to do is to be able to enter criteria in one or more of the search fields to search th...more >>

Query Optimization Issues
Posted by David Tanzer at 11/5/2003 9:24:00 AM
I had an interesting problem this morning that I'm hoping someone can comment on. We had a problem with a particular stored proc running very slowly on our production server this morning. I ran a trace and determined the offending proc and executed it with the same parameters in Query An...more >>

Adding Identity Column to Temp Table
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 11/5/2003 9:16:54 AM
I am trying to add an identity column to a temp table. There are unexpected results after adding the column. ******************************************************** create table #t1 ( testvc varchar(10), testint int ) insert into #t1 values ( 'vc1', 1 ) insert into #t1 values ( 'vc2'...more >>

Storing Documents on SQL Server
Posted by William at 11/5/2003 9:13:35 AM
I need to store different formated docs( images combined with text) on SQL database.. Can anyone help with code samples pertaining to this issue, I know you can use the image field, but this means converting text back to ASCII format... ...more >>

using LIKE with CONTAINS
Posted by chris at 11/5/2003 9:11:27 AM
sql2k sp3 I just set up a table for full text searching. I was going to compare a query with CONTAINS to one without. Here is the query I used without CONTAINS: select from tr_stock_transactions_st where st_ref_no like '@%' but I didnt realize that I cant use CONTAINS and LIKE in the...more >>

How about this query
Posted by Jeff Clark at 11/5/2003 8:43:15 AM
In a table of full of text types, how do I get the longest value in each column? ...more >>

Stored Procedure Error Logic
Posted by Jim Heavey at 11/5/2003 8:34:59 AM
Hello, I wrote a store procedures which, among other things, inserts rows into a table. When I attempt to insert a row which violates the primary key constaint, the procedure immediately stops and generates and error. I was expecting that it would fall down into the logic which tested the @@ER...more >>

SQL deleting columns
Posted by Dave lugo at 11/5/2003 8:20:08 AM
How do i delete a column from a mssql 2000 DB? I need to find out ASAP. thanks Dave Lugo...more >>

Declaring variables within a VIEW
Posted by rob at 11/5/2003 8:04:43 AM
I need to create a view in order to get the data I need for a report. Within my view, I'd like to declare some variables like this: DECLARE @StartDate datetime DECLARE @EndDatePlusOne datetime However, when I attempt to run this, it errors out on the DECLARE. If I put the declare bef...more >>

Update Tables
Posted by Tim at 11/5/2003 7:56:19 AM
SQL sever 2000 I have two tables and I'm trying to update one table with info from another table.... Table one is the master table and table two is subset of table one. the two fields in both tables are ITEM and DESCRIPTION. so where the ITEM in the subset exsist in the master then update...more >>

95/100 = 0 ?
Posted by Mike Ralph at 11/5/2003 7:49:35 AM
I am creating a view and one of the selection items has division. Here is the selection item: SUM(CASE WHEN Q1Response = N'A' THEN 1 ELSE 0)/GradStatsByCourse.[Grads Returned] As Agree Unfortunately it only returns a 1 or 0 and not a decimal value. What I would really like is a percent...more >>

@@ERROR
Posted by Julie at 11/5/2003 6:50:32 AM
Dear All, I am trying to write a sp which on error will capture the error in a declaration. However the trace results in 0 being passed to variable @ErrorSave though it is been passed the value from @@ERROR. Could some bright person see what the matter is ? Thanks J Please find the ...more >>

Extended Stored Proc: Get Value from WebService
Posted by Claude Vernier at 11/5/2003 6:48:59 AM
Hi! I'm not very good in C++ and trying to make an Extended Stored Procedure. This one already works: RETCODE __declspec(dllexport) xp_proc3(SRV_PROC *srvproc, BSTR *ServerName) { DBSMALLINT i = 0; DBCHAR colname[MAXCOLNAME]; DBCHAR spName[MAXNAME]; DBCHAR spText[MAXTEXT]; ...more >>

Looking for Query Help (long post)
Posted by Wayne Wengert at 11/5/2003 5:42:10 AM
I have the following tables: (not all fields shown) STORES ------ StoreID int PK ContactID int FK StoreName varchar(35) EVENTS ------ EventID int PK City varchar(25) State char(2) EventDate smalldatetime SIGNUPS ------- RecordID int PK StoreID int FK EventID varchar(20) FK ...more >>

Rules and Constraints
Posted by Aravind at 11/5/2003 5:35:22 AM
Hello.. A field,say "name",in a Table should be bound by a rule.The rule should hold the set of names that could be entered in the field "name".Could the Rule be made dynamic?I mean could I have a select statement in the Rule which fetches list of names from another table.I have not tr...more >>

sp_executesql Operation is not allowed when the object is closed
Posted by cliverama NO[at]SPAM yahoo.co.uk at 11/5/2003 4:54:12 AM
help! fried brains.... asp calling a sqlserver7 stored proc which dynamically builds a sqlstatement & passes it to sp_executesql asp page gives the operation not allowed when object is closed error this is the asp code: Set connInc= server.CreateObject("ADODB.Connection") connInc.Open "DSN...more >>

Simple Update
Posted by Peter Newman at 11/5/2003 4:30:21 AM
I have a table(a) in one database that need updating from a table(b) in a second database Table a has fields called Licence , INVNumber, MonthPeriod, Table b has fields ACNO, INVNO,INVDATE I need to update; table A INVNumber with table b Invno table a MonthPeriod with Inv...more >>

scripts
Posted by nesaar at 11/5/2003 2:54:45 AM
Yesterday we upgraded our production database by adding some new sps and upgrading old sps with new functionality and so on. We applied all the scripts and every script gave us a 'Command completed ok' result. However, from a certain point forward it seems as if the stored procedures were...more >>

Rolling Back a transaction
Posted by Julie at 11/5/2003 2:43:23 AM
Dear All I was wondering if an expert could have a look at this to see what is wrong. I am trying to get a rollback to work, do it I am purposely putting in an error then attempting a rollback. What is happening is that all the non unique records are being inserted, when the should of ...more >>

Need help database structure THANKS
Posted by G B at 11/5/2003 2:25:08 AM
I have the following entities Customer Hotels TravelAgencies Restaurants CoachOperator Theatres ============================ I thought of doing as follows an entity "customer" links to an address via a CustomerAddress customerA...more >>

Rowlocks
Posted by Mikael_Egnér at 11/5/2003 1:43:22 AM
Can someone explain what happens when I run my two scenarios below. CREATE TABLE [A] ( [ID] [int] IDENTITY (1, 1) NOT NULL , [val] [varchar] (50) ) ON [PRIMARY] GO INSERT A SELECT '1' INSERT A SELECT '2' --isolation level is "readcommitted" on both connections --Scenario 1 -...more >>

Textcopy.exe
Posted by I_AM_DON_AND_YOU? at 11/5/2003 1:08:30 AM
I am running textcopy.exe utility. But, when I enter servername, login, password etc. etc., in the end it shows some error and the textcopy.exe program's windw close down so fast that I even can't read the error? What's the way to read this error which comes in the end. Thanks! ...more >>


DevelopmentNow Blog