Viewing 15 posts - 7,906 through 7,920 (of 13,469 total)
i think you are abstracting stuff out, and leaving out critical details.
show us the EXACT command you ran. it really sounds like you say you did one thing, but actually...
March 21, 2011 at 2:48 pm
'LinkedServerName' was the example...you never mentioned the name you gave that server, so all i could post was examples i thought would be intuitive enough that you knew you'd need...
March 21, 2011 at 2:20 pm
that's the difference between a JOIN(INNER JOIN) and a LEFT OUTER JOIN
inner joins only show matches, where OUTER JOINS (LEFT and RIGHT) can show you where something doesn't match, if...
March 21, 2011 at 2:02 pm
In addition to what Sean said, a lot of out-of-the-box portal software, like Dot Net Nuke and Sharepoint store the html in fields in the database, for dynamic content; codebase...
March 21, 2011 at 1:48 pm
you can set up the linked server so if a specific local user tries to use the linked server, it uses a different set of remote credentials instead:

the way you...
March 21, 2011 at 1:38 pm
diagnose the linked server before using it in your code;
if you run EXEC sp_tables_ex 'LinkedServerName' do you get any results? in theory, it will return all available tables fo rthe...
March 21, 2011 at 1:02 pm
another pair of eyes can certainly help; can you post the execution plans from each server so we can see them too?
so many talented folks here, one person might see...
March 21, 2011 at 11:11 am
your on the right track; a case statement can help you filter your resulting value;
it might not be obvious, but a CASE statement can have more than one test ,...
March 21, 2011 at 11:05 am
Ever since I won the lottery, the only reason I hang out around here is so I can have friends....
March 21, 2011 at 8:26 am
try to avoid fields having the same name as their datatype; use a name that is more descriptof the purpose... like "entryDate" or whatever the field might mean to you.
when...
March 21, 2011 at 5:44 am
and to change compatibility in SSMS so you can test a specific statement:
ALTER DATABASE [SandBox] SET COMPATIBILITY_LEVEL = 80
GO
SELECT IDENTIFICATION, CREATE_DATE, CREATE_USER FROM CUSTOMER
GO
ALTER DATABASE [SandBox] SET COMPATIBILITY_LEVEL = 90
GO
SELECT...
March 18, 2011 at 11:45 am
sweet! glad that worked for you; I'm putting that in my notes that it really works; i wasn't absolutely sure.
yeah, getting the syntax for the dynamic sql part can be...
March 18, 2011 at 8:32 am
easiest way is from within SSMS via TSQL for me; the trace file will be open as if it were a table:
you might need to do select * from sys.traces...
March 18, 2011 at 6:22 am
in SQL 2000(the forum you posted in), i think it's a little tougher;
the easiest way to be to set up a trace on the server and check that after letting...
March 17, 2011 at 3:13 pm
take a look at the posts in this discussion; it has a community contribution to script all indexes as CREATE INDEX statementing:
http://www.sqlservercentral.com/Forums/FindPost1079779.aspx
as far as the GUI goes, i think you...
March 17, 2011 at 9:21 am
Viewing 15 posts - 7,906 through 7,920 (of 13,469 total)