Viewing 15 posts - 61 through 75 (of 80 total)
If you want to compare dates in string format you must use the 111 date format, because this way you'l have first the year, then the month and finally the...
October 3, 2007 at 3:31 pm
I guess you coud code some function to calculate the unique number per combination of the four parameters. Something like this:
CREATE FUNCTION fn_UniqueNumber
(
@empid int, @StateNo int, @CityNo int, @CallType...
October 3, 2007 at 3:19 pm
You just need to change your query to the following:
Select w.* from webs w
LEFT JOIN docs d
ON w.id = d.webid
and w.id = '12345'
...
October 3, 2007 at 2:47 pm
You just need to change your query to the following:
Select w.* from webs w
LEFT JOIN docs d
ON w.id = d.webid
and w.id = '12345'
AND...
October 3, 2007 at 2:47 pm
It seems you have problems connecting to the domain: SQL server Service is unable to get the security credentials of the logged NT user. Are U logged locally or you...
October 3, 2007 at 2:26 pm
Hi Yaniv,
May be the question was not the correct one. I was wondering if exists some way to receive mail using some SQL "service" or "tool" or something else...
The goal is...
September 8, 2006 at 10:39 am
I'm sorry if I disturbed You. It was not my intention at all. In any case you replied because you wanted to.
Thanks anyway
April 3, 2006 at 6:55 pm
Certainly they could see which stored proccedures appeared, but the actual code of the sp will be encrypted. That's the point.
This is not the "whole" security demanded though... just...
January 19, 2006 at 7:11 am
1- First I create one readable script for may personal use like this:
CREATE PROCEDURE myprocedure
@param1 int
WITH ENCRYPTION AS
2- I run this script on my test database and after that I'll...
January 18, 2006 at 3:28 pm
I have tested the previous method and it works ... any comments???
January 18, 2006 at 1:33 pm
Thanks bkelley,
I assume it's possible create the procedure in my development database using the "WITH ENCRYPTION" clause.This will create an encrypted sp, then I could script this encrypted stored proc and deploy...
January 18, 2006 at 1:24 pm
Thanks for your your suggestion... How would I like to have just one and only one table!!!, but all the system is based on these periodical tables, and I'm just trying...
January 17, 2006 at 9:09 am
Thanks rsharma, that's exactly the stuff i needed!!!
January 17, 2006 at 6:16 am
Thanx a lot, it's exactly what i need.
Cheers,
Felix
March 21, 2005 at 6:31 am
Viewing 15 posts - 61 through 75 (of 80 total)