Viewing 15 posts - 6,271 through 6,285 (of 13,874 total)
zoggling (11/22/2016)
Phil Parkin (11/22/2016)
We have installed SQL Server 2016 Web Edition (64-bit) on a new virtualised database server running Windows Server 2016 Standard. We have an existing web server running...
November 22, 2016 at 8:23 am
Thom A (11/22/2016)
Phil Parkin (11/22/2016)
We have installed SQL Server 2016 Web Edition (64-bit) on a new virtualised database server running Windows Server 2016 Standard. We have an existing web server...
November 22, 2016 at 7:15 am
We have installed SQL Server 2016 Web Edition (64-bit) on a new virtualised database server running Windows Server 2016 Standard. We have an existing web server running Windows Server 2008...
November 22, 2016 at 6:48 am
mcfarlandparkway (11/21/2016)
I have commented that return statement and kept a break point on Execute sql task. I can see all the values which I am passing to that SP...
November 22, 2016 at 5:41 am
If you are prepared to accept the occasional false positive, the checksum method is not so bad.
The Except method is, however, more robust.
November 21, 2016 at 8:23 pm
Jeff Moden (11/21/2016)
Phil Parkin (11/21/2016)
Jeff Moden (11/21/2016)
Why not just use EXCEPT?EXCEPT on a 2-million-row resultset is tidier than a column-by-column comparison, but still not to be recommended, IMO.
Now you have...
November 21, 2016 at 8:20 pm
Jeff Moden (11/21/2016)
Why not just use EXCEPT?
EXCEPT on a 2-million-row resultset is tidier than a column-by-column comparison, but still not to be recommended, IMO.
November 21, 2016 at 5:16 pm
mcfarlandparkway (11/21/2016)
I understand that, but OUTPUT parameters in a proc do not need the RETURN keyword, all you need to do is set their value within...
November 21, 2016 at 5:14 pm
PJ_SQL (11/21/2016)
Are you implying that I import the file received from third party to a table and then update each...
November 21, 2016 at 4:26 pm
mcfarlandparkway (11/21/2016)
Still its showing error
"Input string was not in a correct format.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly,...
November 21, 2016 at 4:23 pm
mcfarlandparkway (11/21/2016)
We need this Id to return we are using in another Sp as imput. to update Emp table with this Id.
I understand that, but OUTPUT parameters in a proc...
November 21, 2016 at 4:20 pm
PJ_SQL (11/21/2016)
I am sending data(text file) to third party which they import to their tool which users pull information from and make changes.
That data sent is combination of multiple...
November 21, 2016 at 4:15 pm
mcfarlandparkway (11/21/2016)
CREATE PROCEDURE [dbo].[InsData]
@DB VARCHAR(20),
@FeT VARCHAR(20),
@SType VARCHAR(50),
@Id INT OUTPUT
AS
BEGIN
SET NOCOUNT ON
INSERT INTO dbo.Emp(FeT,DB,SType,StrtDate)
VALUES(@FeT, @DB, @SType, getdate())
SELECT @Id =...
November 21, 2016 at 2:14 pm
Snargables (11/21/2016)
Is there a way to call a sql select w/o it returning the column header row? Is there some sort of setting i can run before the select?
What client...
November 21, 2016 at 12:44 pm
djj (11/21/2016)
WayneS (11/21/2016)
Hugo Kornelis (11/17/2016)
Luis Cazares (11/17/2016)
Hugo Kornelis (11/17/2016)
Eirikur Eiriksson (11/17/2016)
Brandie Tarvin (11/17/2016)
Beatrix Kiddo (11/17/2016)
CREATE OR ALTER (Yes, we heard you !!!) – New CREATE OR...
November 21, 2016 at 10:25 am
Viewing 15 posts - 6,271 through 6,285 (of 13,874 total)