Viewing 15 posts - 181 through 195 (of 202 total)
i see. Thanks guys.
January 4, 2012 at 10:20 am
trust me i'm w/ you. Especially what this is for. Some nickle and dime content managment system being used by 10 people max. Not my call though. The person defining...
January 4, 2012 at 9:52 am
odd. i couldnt post the whole thing at once. had to do it in chuncks......very strange
January 4, 2012 at 9:49 am
--So this would insert a record w/ the below
--[desc] = UserOne
--[encryptedValue] = UserOneEncrypt
--How can i create a trigger so when the record is inserted or updated the passord...
January 4, 2012 at 9:48 am
insert into [dbo].[tbl1]( [desc], [encryptedValue] )
values ( 'UserOne','UserOneEncrypt')
January 4, 2012 at 9:48 am
sorry. having trouble getting the rest of my scripts in here....
CREATE TABLE [dbo].[tbl1](
[desc] [nvarchar](100) NOT NULL,
[encryptedValue] [nvarchar](100)...
January 4, 2012 at 9:47 am
uniqueIdentifier?
January 3, 2012 at 10:28 am
u need top include the unique index 'kp_slownik_kod_idns'. It's whats failing and i dont see it in the code. Uless i'm missing something.
December 20, 2011 at 2:35 pm
Excellent guys, thanks!!!!
December 16, 2011 at 9:44 am
Let me rephase this. Does anyone know where i can get a file that has all the city, state, zips? Preferably a free one? If not does anyone have a...
December 16, 2011 at 8:10 am
MY SOLUTION WAS CLOSE.
WHATS UP W/ THE stuff function u guya are using. Is that to get rid of the trailing comma? How?
November 9, 2011 at 9:32 am
neverind i found the solution
select distinct stock
, (select imgname+','
from #test
where stock = tt.stock
order by imgname
for xml path('')
) st
from #test tt
November 9, 2011 at 9:10 am
that, my friend, is really cool. This is very useful for anyone optimizing or building search functionality. I plan on doing that at my current work space. My guess is...
November 2, 2011 at 2:47 pm
So are there any functions in sql server who are SARGable?
left(), reverse()....?
November 2, 2011 at 11:45 am
Viewing 15 posts - 181 through 195 (of 202 total)