Viewing 15 posts - 1,096 through 1,110 (of 1,415 total)
sleipner (7/1/2014)
July 1, 2014 at 2:34 pm
Sean Lange (6/27/2014)
patrickmcginnis59 10839 (6/27/2014)
Sean Lange (6/27/2014)
In a windows application this is performed inside the compiled code and the result is compared to sql.
This is actually the insecure part...
June 30, 2014 at 6:29 am
Sean Lange (6/27/2014)
In a windows application this is performed inside the compiled code and the result is compared to sql.
This is actually the insecure part I was talking about....
June 27, 2014 at 2:18 pm
My read of the situation:
If the client is 100 percent under the control of the user then yes, its a security problem, but not because of the hash and salt...
June 27, 2014 at 12:23 pm
awesome! you can now join the SSIS haters club!
(LOL just kidding guys, I'm sure SSIS is great)
June 26, 2014 at 12:46 pm
SQLRNNR (6/26/2014)
Jeff Moden (6/26/2014)
I think it would be much more fun to partition an IDIOT. 😛With a sliding window?
Should we partition by date? Or something else?
Probably by limb.
June 26, 2014 at 9:39 am
Added in the "full file name" part:
if OBJECT_ID('tempdb..##exceltest') is not null
begin
drop table ##exceltest
end
create table ##exceltest
(
docName varchar(100),
docVersion int,
hithar varchar(100)
)
insert into ##exceltest select 'testdoc',1,'well hellooooo'
declare @docName varchar(100)
declare @docVersion int
declare @fullFileName varchar(100)
declare...
June 26, 2014 at 9:33 am
lenrigby (6/25/2014)
June 26, 2014 at 7:54 am
Lynn Pettis (6/25/2014)
Really? Just because SQL Server setup defaults to a CI collation that makes it the "DEFAULT" collation?
That would be my guess. You want to lean toward "least...
June 25, 2014 at 1:53 pm
On a scale of 1 to 10, 1 being "completely unfunny" and 10 being "hilarious", I'd rate this one a -3, "would like to sandpaper Bob's AOL cd".
June 25, 2014 at 8:23 am
SQLRNNR (6/20/2014)
andrew gothard (6/20/2014)
Ed Wagner (6/19/2014)
andrew gothard (6/19/2014)
below86 (6/18/2014)
andrew gothard (6/18/2014)
below86 (6/16/2014)
andrew gothard (6/15/2014)
Koen Verbeeck (6/14/2014)
Badly phrased, sorry. In a column that should be a date, it's plain stupid...
June 20, 2014 at 7:59 am
GilaMonster (6/19/2014)
jasona.work (6/19/2014)
The only way to "break" the TLog backup chain would be to switch the DB to Simple recovery and back to Full.
Or delete a log backup. Or...
June 19, 2014 at 3:19 pm
pdanes (6/19/2014)
patrickmcginnis59 10839 (6/19/2014)
He claims to be out of ideas, and I can't think of what else I might try to help him. Everything works for me, so I have...
June 19, 2014 at 10:22 am
He claims to be out of ideas, and I can't think of what else I might try to help him. Everything works for me, so I have difficulty even experimenting....
June 19, 2014 at 9:55 am
the temp table #hResults is returning multiple rows for each student number, and for each student number, you're making use of distinct values of homeroom.courseNumber, sectionNumber, roomName, teacherDisplay, etc...
Once you...
June 9, 2014 at 11:26 am
Viewing 15 posts - 1,096 through 1,110 (of 1,415 total)