Viewing 15 posts - 1 through 15 (of 62 total)
These wouldn't work in your context:
[' + @SN + '].msdb.dbo.sysjobhistory h
Anything inside brackets it takes as a literal name. Here, it thinks the server you're trying to access...
May 3, 2016 at 5:39 pm
Lowell (3/11/2015)
i think you're stuck with adding an trigger for insert in order to get your...
March 11, 2015 at 1:49 pm
tomaz.kastrun (3/11/2015)
Hi,you can use this:
create table #temp
(
id int identity(1,1)
,name varchar(50)
,calc as char(65) + convert(varchar(10), getdate(),112) + convert(varchar(20), id, 0)
)
and it should work.
Best, Tomaž
The problem with this is that every...
March 11, 2015 at 10:52 am
Can xs:complexType have xs:Sequence as a child?
February 15, 2014 at 9:54 pm
I'm Doing something like this:
CREATE TABLE #Child_table(
id int,
parent_id int,
Attribute1 VARCHAR(10),
Attribute2 VARCHAR(10),
column1 VARCHAR(10),
column2 VARCHAR(10),
column3 VARCHAR(10),
column4 VARCHAR(10),
column5 VARCHAR(10))
CREATE TABLE #Parent_table(
id int,
Attribute1 VARCHAR(10),
column1 VARCHAR(10),
column2 VARCHAR(10),
column3 VARCHAR(10),
column4 VARCHAR(10),
column5 VARCHAR(10),
column6 VARCHAR(10),
column7 VARCHAR(10))
DECLARE @X XML, @Y...
November 1, 2013 at 11:47 am
wolfkillj (10/24/2013)
Khades (10/24/2013)
Koen Verbeeck (10/22/2013)
If you know which characters you...
October 24, 2013 at 9:23 pm
Koen Verbeeck (10/22/2013)
If you know which characters you don't want,...
October 24, 2013 at 7:17 pm
Aren't there other characters that UTF-8 encoding won't allow though? Such as the copyright symbol?
October 22, 2013 at 12:38 pm
Oh ok. I do usually use SQL Server Configurations. I've seen it done 2 different ways.
One way is to make sure the configuration file is in the same path in...
August 15, 2013 at 3:28 pm
It sounds like the location of your package is not changing whether you want to run it for prod or test, is this true?
What we usually do is have 1...
August 15, 2013 at 11:53 am
Page cannot be displayed :(.
I have a question, so if daylight savings were to change again in the future, I would have to go update this table correct?
October 25, 2012 at 2:01 pm
Thank you once again. I appreciate your help.
What does the dbo.Tally table hold? I notice we keep querying the N column.
September 4, 2012 at 3:10 pm
The character that was giving me problems is â (0xE2)
August 31, 2012 at 3:44 pm
Looks like this might be in the wrong section, how do I move it to the XML secion?
August 23, 2012 at 2:23 pm
Viewing 15 posts - 1 through 15 (of 62 total)