Viewing 15 posts - 9,766 through 9,780 (of 13,469 total)
ok just to be sure, you did uncomment this line like i said you needed to,right?
--EXEC SP_EXECUTESQL @STR
i didn't want other readers running that on...
March 31, 2010 at 5:16 am
jtetler (3/31/2010)
What I actually need is sample code on how to either delete the selected rows or preferably how to delete the images in those rows.Thanks,
Jim
here's some code; i...
March 31, 2010 at 5:07 am
Norm this is just a guess based on adapting your posted query;
does this get you close to what you were after?
SELECT
c.ClassName,
c.EnrollLimit,
p.RegType,
p.RegStatus,
...
March 30, 2010 at 10:46 am
because the underscore has a special meaning in a LIKE statement, i think you need to do something like this instead to find two underscores back to back:
where ...
March 30, 2010 at 10:39 am
Bhuvnesh first, create a server side trace; it's actually a very low impact on the server, but can provide you with exactly what you are looking for, as well as...
March 30, 2010 at 9:06 am
dang; i followed the fine article cos_ta393 posted; at the very end, i found out only enterprise or developer supports TDE; my 2008 Standard doesn't support that feature.
That's something to...
March 30, 2010 at 8:30 am
the devil is in the details: what does "resolve remote server name" mean;
if it's over the internet, is there a DNS of YourRemoteSQLServer.SomeDomainName.Com, or are you talking about a machine...
March 30, 2010 at 7:13 am
don't convert the varchar, as you'll get truncation issues if you don't say how large to convert to;
the rest is just syntax; you need to escape the single quote to...
March 30, 2010 at 6:27 am
well the implementation is the same, it's just the specifics; the remote server is on a network that has access to the internet, that's a basic assumption.
that network has a...
March 30, 2010 at 6:14 am
mark you did not try my case statement; it does produces the desired results; maybe with the switch from pseudo/sample to your real code something got lost;
here's a full example,...
March 30, 2010 at 6:02 am
the case statement i posted had the priority you stated, so do you mean the "priority" may be dynamic and passed as a parameter or something?
March 30, 2010 at 5:19 am
sounds like a networking issue;
by remote, you mean over the internet, right? not on the same LAN/network?
if it's over the internet, you'd need to make sure the remote server...
March 30, 2010 at 5:17 am
it's been a while since i had to do this;
youy can do it with a case statement, comparing multiple value pairs:
select
[Column A],
[Column B],
[Column C],
[Column D],
[Column E],
case
when [Column C]...
March 30, 2010 at 5:09 am
Viewing 15 posts - 9,766 through 9,780 (of 13,469 total)