Viewing 15 posts - 1,936 through 1,950 (of 13,469 total)
the file must exist on the server, unless you explicitly call a unc path like \\servername\c$\Files\12656.jpg
even then, the service account that SQL runs under must be the one with permissions...
February 26, 2015 at 6:55 am
ok while this gives me the desired results, it bothers me to be using distinct.
under the covers it's twisting these five rows into 250K rows, and back down to ~1300...
February 25, 2015 at 2:39 pm
the question really is WHY do you need to know if any are happening, if the developers are allowed to do that. what do you want to do that is...
February 25, 2015 at 11:54 am
you ar emissing the empty string part i put in my example:
ISNULL(person_name,'')
February 25, 2015 at 10:39 am
null cannot be compared to any value, as NULL is undefined,so it affected your logic.
...AND ISNULL(person_name,'') NOT IN ('john smith', 'sally brown') would resolve the issue.
February 25, 2015 at 10:06 am
its possible, but you have to have defined the matching criteria.
until you define logic for identifying the duplicates, you cannot consolidate duplicates. also, you probably need additional logic, since you...
February 25, 2015 at 9:07 am
sm_iransoftware (2/25/2015)
I Must Started For every User From Its Register Date !!!!(And Inserted Date from That Date to now - For every User)
i showed you a basic example that gets...
February 25, 2015 at 5:35 am
the best way this is done by joining to a permenant Calendar table first, which contains all possible dates, and left joins to your data.
if you don't have one, you...
February 25, 2015 at 5:23 am
i believe when you grant VIEW ANY DEFINITION TO [SpecialUser], that inherently grants connect permissions to each database; you do not need to add anything additional for that permission.
February 24, 2015 at 3:11 pm
abhas (2/24/2015)
Thanx Lowell,By the way any other option to do this? i need to display output as test1(checkbox)test2(checkbox). Client want just output,i can use any other methos as well.
Thanks
Abhas.
it...
February 24, 2015 at 10:11 am
the datalength of an NVARCHAR is doubled, as that is telling you how much storage is required in SQL;
i don't think that is relevant in c#, is it?
/*--Results
(No column name)(No...
February 24, 2015 at 9:55 am
abhas (2/24/2015)
yes, Iamge is binary value like 0x0000A38C00BEB787....Thanks,
Abhas
then no, you cannot do what you are asking.
you cannot concatenate an image to text.
you might be able to display text and image...
February 24, 2015 at 9:51 am
since this is an instance, and you already conencted to a default instance on port 1433, i doubt very much the named instance is listenting on 1433 like you think.
connect...
February 24, 2015 at 9:48 am
well, this has more to do with the display medium more than anything. if you mean checkbox is actually code like this:
<img src="Mywebsite.checkbox.gif">
or
<input type="checkbox" >
or your image is actually a...
February 24, 2015 at 9:40 am
inside the CLR, if you are using a datatable to hold the data, you can find the max length of the values in the a column, , or if...
February 24, 2015 at 9:26 am
Viewing 15 posts - 1,936 through 1,950 (of 13,469 total)