Viewing 15 posts - 1 through 15 (of 28 total)
Hi,
thanks for the hint with dynamic SQL (I didn't know that it is faster and better than the query I wrote and always thought that it is nasty (SQL...
December 21, 2016 at 12:44 pm
Thanks Phil!
March 3, 2016 at 7:14 am
Hi,
so you need a further column in which the file type is stored:
filetype content: .doc, .xml,....
create table tblRessources
(
IDRessource int identity(1,1) primary key,
FKUser int not null references tblUser,
Url varchar(500),
ID UNIQUEIDENTIFIER...
August 24, 2013 at 8:43 am
Exactly! But thanks to all of you!! Great help!:kiss:
July 23, 2013 at 7:42 am
Great!! This works out! So if I cannot find out how CTE will work, I can do it with this solution!
Thanks to all!! 😀
July 22, 2013 at 2:01 pm
But this doesn't solve the problem with the like operator as I cannot implement the wildcard %, or?
July 22, 2013 at 12:02 pm
Thanks Sean! But I cannot see how dynamic SQL will help here? The problem is that all fields have to be checked for the search criteria so I cannot put...
July 22, 2013 at 11:07 am
Thanks Luis! I have to practice and read carefully as CTE is rather confusing for me ;)... but you think this will solve the problem?
Performance is not the point...
July 22, 2013 at 11:04 am
that are exactly the things which are going around my head ;))
but as u think that both design are practicable - that helps. then i tend to implement the version...
February 16, 2009 at 2:04 am
thank you. it seems that i didn't mention clearly what i mean.
there is a tabel with addresses. for each address i can refer to a title, a contact, martialstatus, ......
February 15, 2009 at 11:22 am
thanks Gail. I see what you mean and will do it your way from now on. 🙂
sql injection: but first of all he has to know the name of the...
November 11, 2008 at 12:01 pm
hi jeff,
what do you think: if you have serveral parameters in the where clause, which can be choosen in every possible way (e.g. the interface allows you to pick: state,...
November 11, 2008 at 5:50 am
thanks for your hint, Jeff.
but isn't this better than to give users permissions on tables and generate the whole select statement dynamically as mentioned before?
November 11, 2008 at 5:19 am
hi Jack,
thanks for your articel.
but I still have a question (hopefully it is ok to post questions/problems here, if not: sorry folks, i'm quite new here):
I get a csv...
November 11, 2008 at 4:41 am
Viewing 15 posts - 1 through 15 (of 28 total)