Viewing 15 posts - 8,611 through 8,625 (of 13,469 total)
the piece you seem to be missing is the second part of my example...sp_addlinkedsrvlogin , which adding a link between you/yourlogin and what will be used on the...
October 8, 2010 at 10:26 am
you are correct; a schemabound vie can only reference objects in the same database; that jump to the parallel table in the database "fac" is preventing the schemabinding...
October 8, 2010 at 9:45 am
also this will really get you what you are after:
select * from all_views where LEFT(view_name,5) = 'USER_'
October 8, 2010 at 9:04 am
there's a few suites of views of the objects: ALL_TABLES, DBA_TABLES and USER_TABLES;
i try to stick with USER_tables, which are filtered to the schema you belong to (well the oracle...
October 8, 2010 at 8:54 am
I'm under the impression that for a linked server on another domain, you must use a SQL username and password, and not a your domain credentials;
to use your domain credentials,...
October 8, 2010 at 7:37 am
html query string does not pass comma delimited lists; if the object (like a select list) has more than one value, it repeats like this:
?bob=one&bob=two
so you need to build your...
October 8, 2010 at 7:02 am
for servers on a different domain(assuming you can connect), i've always used this format, which makes the alis for the server different from the connection:
EXEC master.dbo.sp_addlinkedserver @server = N'MyLinkedServer',@srvproduct =...
October 8, 2010 at 6:49 am
it's scope; the table exists INSIDE the exec statement, but is destroyed when it comes back to the "outer" scope of code that called the EXEC..
you have to create the...
October 7, 2010 at 5:01 am
John USER is a keyword in SQL, can you try wrapping the tablename in brackets or double quotes?
select * from LINKEDNAME...
select * from LINKEDNAME..."USER"
does it work that way?
October 7, 2010 at 4:27 am
barry.smallman (10/7/2010)
Yes, I tried amending the SP to query the sys.dm_exec_connections DMV as suggested in the reply by Lowell!!
When the stored procedure failed to run this morning, I started investigating...
October 7, 2010 at 4:20 am
parthi-1705 (10/6/2010)
why did you changed your pic of old(that dog) it was nice when i came long time...
October 6, 2010 at 12:36 pm
looks like version 4.2 is for "all" versions of SQL 2008; no special version just for SQL 2008 R2:
there are two different downloads for 2005 vs 2008 though, both marked...
October 6, 2010 at 12:13 pm
I like to think of SSIS as the universal tool, which can connect to all kinds of datasources, and you can write code to do anything you want. lots of...
October 6, 2010 at 12:01 pm
SQL has created some ready-to-use Oracle Migration Assistants to make this kind of transformation a lot easier.
http://www.microsoft.com/sqlserver/2005/en/us/migration-oracle.aspx
you can do it with SSIS, but this handles a lot of the twists...
October 6, 2010 at 11:22 am
yogesh_pandey (10/6/2010)
Thank you. Can I send you a DDL and may be you can help. Please let me know.
post the DDL and sample data here; there's lots of volunteers on...
October 6, 2010 at 10:53 am
Viewing 15 posts - 8,611 through 8,625 (of 13,469 total)