Viewing 15 posts - 9,991 through 10,005 (of 13,461 total)
Can you explain a little more?
if i had THIS as a comment:
declare @text varchar(4000)
SET @text = Without a doubt SQLCentral is home to finest SQL folk[comment:#grovel].
Sometimes things may get heated[comment:#super...
February 8, 2010 at 8:23 am
river1 (2/8/2010)
Thank you very mutch.A direct question is: will data not be seen if i use profiler? or a sniffer? after encrypting?
for profiler, only users who have ALTER TRACE permission...
February 8, 2010 at 6:49 am
yeah, encryption can be confusing; I didn't know SSL was an added layer; so I learned something today; (as usual here on SSC) Thanks Eduard!
river by changing that flag...
February 8, 2010 at 6:29 am
SSL is an https connection for a web page, using port 443 by default. in theory, i can go to your web page via https, but your web server goes...
February 8, 2010 at 5:29 am
1.your trigger doesn't have SET NOCOUNT ON at the beginning, which is good practice and may avert other issues receiving "1 row(s) affected" and thinking it's a result set.
2.you are...
February 6, 2010 at 5:43 pm
it sounds like you are developing in C# becasue of the error on the escape;, i think you need to use double slash to escape the string in that case:
Data...
February 6, 2010 at 4:28 pm
river1 (2/6/2010)
Or i can only encrypt connection if they use windows...
February 6, 2010 at 1:56 pm
just wrap the servername in brackets, the same way you do with TSQL reserved words:
Data Source=SQLSRVDEVNSMAIN;Database=pubs;Trusted_Connection=True;";
string connectionString =
"Data Source=[HENRY-PC\SQLSRVDEVNSMAIN];Database=pubs;Trusted_Connection=True;";
you could also switch to an ip\instance, or an ip port, which...
February 5, 2010 at 4:49 pm
i think something like this might help you build what you are after?:
results:
Years Months Days ...
February 5, 2010 at 12:12 pm
as i understand it, you should do this in two places;
you can make your server require encryption from everything connecting,a dnt he native client will handle it automatically:
SQL Server Configuration...
February 5, 2010 at 11:46 am
maybe something like this will help you model your calculation?
SELECT
SUM(
CASE WHEN property = 'prop1' THEN 1 ELSE 0 END
+ CASE WHEN property =...
February 5, 2010 at 9:35 am
i think this is what you are after;
the "description" field must be like the NAME, and the NAME must be like your search parameter:
so the "description" must be like '%WASH...
February 5, 2010 at 9:12 am
Tammy from what you describe, the CASE statement is working as it is supposed to, but not the way you want it to.
a case statement executes the first TRUE condition...
February 5, 2010 at 8:51 am
jordan i think this example might help;
i'm using the power of set based operations and the row_nubmer() function to generate the needed values;
check out the SELECT statem3ent...if you run it...
February 5, 2010 at 8:35 am
Viewing 15 posts - 9,991 through 10,005 (of 13,461 total)