Viewing 15 posts - 256 through 270 (of 928 total)
I would like to know why they even bother.
How many people out there are going to think "I could do with a new kitchen, where should I look? I know...
July 28, 2016 at 3:06 am
Lynn Pettis (7/26/2016)
Haven't seen the UK Kitchen spam in a while.
You just had to, didn't you?
Has nobody ever told you - CandyMan, CandyMan, Cand....
July 28, 2016 at 1:08 am
Phil Parkin (7/26/2016)
ChrisM@Work (7/26/2016)
BrainDonor (7/26/2016)
July 26, 2016 at 5:51 am
Somewhere deep within the bowels of Microsoft there's a team of developers who believe that there's nothing at all wrong with the way SSIS ascertains the metadata for the columns...
July 26, 2016 at 4:41 am
Does anybody know who the "Hotshot SQL Guru" is?
https://tmblr.co/Z14uHt29WaOS7
https://tmblr.co/Z14uHt29Ww0kS
https://tmblr.co/Z14uHt29ZP3zF
Somebody wasn't impressed.
July 21, 2016 at 1:50 am
For option 1:
DECLARE @Param1 varchar(10) = NULL;
UPDATE dbo.table
SET Column1 = ISNULL(@Param1,Column1);
So if @Param1 is null, it will use the existing value, so no change to the contents of that column.
For...
June 22, 2016 at 6:23 am
jasona.work (6/22/2016)
June 22, 2016 at 6:14 am
The first thing you should do is find out if you actually have a problem. It may be a sign of an issue elsewhere (hardware, comms etc) so it would...
June 20, 2016 at 3:48 am
have a look at the differences:
create procedure DailyReport_sp
@ModelNumber nvarchar(100),
@debug bit = 0
as
Begin
declare @TableName nvarchar(200), @SQLQuery nvarchar(200)
select @TableName = name from sys.objects where type = 'u' and name...
June 15, 2016 at 4:04 am
astrid 69000 (6/15/2016)
i just google it, and it doesn't workso basically i am asking how to fix the procedure and prevent the sql injection.
thanks!!!
What error do you get that is...
June 15, 2016 at 3:52 am
Having set the value for @SQLQuery you then need to execute it:
exec sp_executesql @SQLQuery
June 15, 2016 at 3:14 am
llouw1 (6/15/2016)
thank you for the reply.I want to use a CTE because I need to do more 'additions' with the 'WITH' table
llouw1 (6/15/2016)
I want to use...
June 15, 2016 at 2:32 am
First of all, you don't need a CTE for this. The CTE would be useful if you were transforming the data prior to inserting it (at a basic level think...
June 15, 2016 at 2:06 am
Brandie Tarvin (6/14/2016)
Microsoft wants to use LinkedIn...
June 14, 2016 at 5:16 am
SQL Saturday Manchester, on July 23rd - who (apart from Hugo) will be going?
June 13, 2016 at 6:13 am
Viewing 15 posts - 256 through 270 (of 928 total)