Viewing 15 posts - 9,301 through 9,315 (of 13,469 total)
Gil i don't believe it is possible.
I'd seen this question a couple of times before, and here are some threads on the same issue.
http://www.sqlservercentral.com/Forums/Topic921933-391-1.aspx
http://www.sqlservercentral.com/Forums/Topic906015-145-1.aspx?Highlight=whoami
http://www.sqlservercentral.com/Forums/Topic905937-146-2.aspx
i had tried reading the registry of...
June 8, 2010 at 5:44 am
I think Jim Dillon has posted the definitive way to create a linked server to MySQL here:
http://www.sqlservercentral.com/Forums/Topic340912-146-1.aspx
he posted some really good instructions, and there's a lot of sharp questions on...
June 7, 2010 at 6:22 am
then the error is in the logic where you are determining the substring; does this return any rows?:
;WITH CTE AS
(
SELECT Field9,
...
June 6, 2010 at 9:16 pm
the problem is in the data; at least one row does not have every charindex you are looking for:
select * from evCreateUser
WHERE CharIndex(''User Account Created'', Field9) = 0...
June 6, 2010 at 8:44 pm
there is absolutely no advantage to storing dates as anything except dates.
never store datetime as any other datetype except datetime.
what is the date of the integer 20105404?
internally, SQL stores it...
June 4, 2010 at 12:16 pm
depends on what "kind" of integer you want:
select convert(int,getdate())
--40332 days since 01-01-1990, SQL's internal start date
select YEAR(getdate()) * 10000
+ MONTH(getdate()) * 100
+ DAY(getdate())
--an integer "20100604"
June 4, 2010 at 12:12 pm
i don't know if this will help you, as it's not a canned solution, just how I've done it in the past.
I created a simple vb6, and then improved it...
June 4, 2010 at 6:20 am
davidandrews13 (6/4/2010)
so if i wanted to find out if 'lowell@davidandrews.com' exists on my own server how would i go about that?
lets say that the email in the...
June 4, 2010 at 6:16 am
no sorry Dave; all you can do is check that the format of the email is correct...[something] @ [a correct TLD]
If you have your own mailserver for davidandrews.com,for example, then...
June 4, 2010 at 5:52 am
you did not really provide any definitive requirements; your procedure is unnamed and your fourtables are pseudo names(TABLEA,etc)
here is some pseudo code that is the basics of what i think...
June 4, 2010 at 5:44 am
i bet the email is sent as html, and since html does not respect CrLf/Lf, you should substitute the <br /> instead:
Set @Job = 'The following opportunity has been changed...
June 3, 2010 at 10:51 am
uggg....you have a SQL server exposed directly to the internet? At our shop, we have a web server that is exposed to the internet, and it connects to a SLQ...
June 3, 2010 at 8:37 am
the devil is in the details, but here's my two cents:
use computed columns or a view which does the computation for you whenever possible.
i don't know if you've ever tried...
June 3, 2010 at 8:26 am
denying UPDATE at the table level prevents "smith" from directly updating your table with the statement UPDATE TableB SET somevalue = ''
if smith should not update tableB, he should...
June 3, 2010 at 7:52 am
also using roles is the recommended best practice for assigning permissions. If you do not want to use them, it's more likely you are not familiar with how useful they...
June 3, 2010 at 7:45 am
Viewing 15 posts - 9,301 through 9,315 (of 13,469 total)