all groups > sql server programming > may 2007 > threads for saturday may 19
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 31
Possible Corruption?
Posted by Steve Zimmelman at 5/19/2007 6:35:43 PM
Hello,
I am using a this procedure to insert a record and return the value of the newly
inserted record's ID. ID is an Int Identity field and PK.
*****************
Create Procedure [dbo].[NewResRxOrder_SP]
@ResID int,
@AdmitDateID int
As
Insert Into [ResRxOrders]
([ResID],
[Ad... more >>
Service Broker
Posted by Marcos Federicce at 5/19/2007 12:46:01 PM
I am new on service broker, and I am trying to find a way to send messages to
it from a 4GL/IBM Informix application (Unix platform). How could I do that?
The only solution I could imagine is by writing a program in C/Unix language
(which 4GL is able to call) and from this C application I cou... more >>
insert skip/default if "Conversion failed when converting the varchar value to data type int." error
Posted by jobs at 5/19/2007 7:23:12 AM
Sorry - another noob question.
I've got these two tables:
CREATE TABLE [dbo].[SUM](
[f1] [varchar](6) NULL,
[f2] [int] NULL,
[f3] [varchar](6) NULL
) ON [PRIMARY]
CREATE TABLE [dbo].[convtype](
[f1] [varchar](6) NULL,
... more >>
How to create additional SQL script to "add-on" to an existing one
Posted by Curious at 5/19/2007 5:32:58 AM
Hi,
I have an existing SQL script, "Script 1.sql", as below:
-----------------------------------------------------------------------------------------------
set @ReportTypeID = 48
set @PackageName = 'Transaction Report'
exec SPStep 1,'Preprocess Reports',@ReportTypeID,
exec SPSubStep 1, ... more >>
simple compare
Posted by jobs at 5/19/2007 4:05:53 AM
I have two tables:
CREATE TABLE [dbo].[LoadCompare1](
[f1] [varchar](6) NULL,
[f2] [varchar](6) NULL,
[f3] [varchar](2) NULL
) ON [PRIMARY]
CREATE TABLE [dbo].[LoadCompare2](
[f1] [varchar](6) NULL,
[f2] [var... more >>
bulk insert over file share? could not be opened. Operating system error code 5(Access is denied.).
Posted by jobs at 5/19/2007 3:26:41 AM
I have the file share set to everyone everyone read/change/full
control.
>From the db server, i can open the files with no problem.
However, when trying to bulk insert I get this error
Cannot bulk load because the file "\\devserver\compare
\loadcompare1.txt" could not be opened. Operating... more >>
SQLDMO Transfer - no data copied
Posted by jherth at 5/19/2007 12:00:00 AM
I have set up a standard SQLDMO Transfer on SQL Server 2000 via VB6 to
transfer some tables over from one database to another. The tables are
going over, but they are empty and do not contain the data in the source
tables!
In the Transfer object I have .CopyData set to SQLDMOCopyData_Repla... more >>
SQL2000 Encrypted problem
Posted by kenken at 5/19/2007 12:00:00 AM
Hi All,
if I have using "with Encrypted" in my Stored Proc or View in SQL2000, for
now I lost the sources of part of them, how can I retrieve the original SQL
coding?? any help/tools can do it !?
thx all
/****** Encrypted object is not transferable, and script can not be
generated. **... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
|