Viewing 15 posts - 121 through 135 (of 2,006 total)
nicholas.zhao (6/27/2014)
June 27, 2014 at 3:32 am
GOODS (6/27/2014)
Hi Gail,One more question if I want multiple users to receive the email.how would I go about scripting it?
Isn't recipients a semi-colon deliminated list? Try: -
EXEC msdb.dbo.sp_send_dbmail
@profile_name...
June 27, 2014 at 3:24 am
subbubally (6/9/2014)
Thanks for your reply. I wanted to have the FieldName ( value from the TEST table) as element name. I dont want this,
<FieldName FieldName="TierName" Visibity="0"...
June 10, 2014 at 3:16 am
You've not included what you've tried. How about this: -
SELECT FieldName AS 'FieldName/@FieldName',
isVisible AS 'FieldName/@Visibity',
...
June 9, 2014 at 6:56 am
From a real quick look, bearing in mind that I'm not a VB developer: -
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime
Imports System.Net
Imports System.IO
Imports System.Text
<System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _
<System.CLSCompliantAttribute(False)> _
Partial Public Class ScriptMain
...
April 25, 2014 at 8:39 am
I'd normally say "I'm a Computer Programmer, primarily working with databases and set-based mathematics". That normally kills the conversation dead so I don't have to come up with anything more...
April 24, 2014 at 7:53 am
Bear in mind that I don't think this is a good idea, but this should do what you want: -
DECLARE @id INT =1;
SELECT *
FROM @message m
WHERE EXISTS (SELECT ...
April 17, 2014 at 7:06 am
hoseam (4/10/2014)
I have this code below.
create table dbo.Test(Base_fee [numeric](9, 6) NULL)
insert into dbo.Test(Base_fee) values (444444444.666666)
when I run it I get Arithmetic overflow error. my data type is (9, 6) So...
April 10, 2014 at 4:46 am
Bob Cullen-434885 (2/24/2014)
February 24, 2014 at 8:25 am
So I understood the intent of the question and got it correct, but bear in mind that on a case-sensitive collation you'd get the "Invalid column name 'CategoryId'." error.
February 24, 2014 at 4:40 am
Could you use Powershell? It'll make this task a lot easier.
In fact, here's a script that someone made earlier --> http://www.sqlservercentral.com/scripts/SQL+Powershell+Script/101648/%5B/url%5D.
February 14, 2014 at 9:00 am
sharonsql2013 (2/13/2014)
I want to see the exact(2) decimal value...
Here...
February 13, 2014 at 9:03 am
Steve Jones - SSC Editor (1/31/2014)
February 4, 2014 at 2:36 pm
Nadrek (1/30/2014)
January 30, 2014 at 1:13 pm
Jeff Moden (1/29/2014)
January 29, 2014 at 9:53 am
Viewing 15 posts - 121 through 135 (of 2,006 total)