Viewing 15 posts - 4,936 through 4,950 (of 13,465 total)
ok the query i gave works for objects created WITH SCHEMABINDING... in that case, the referencing_minor_id is not zero, which is how i get some results for column names on...
August 15, 2012 at 1:43 pm
SELECT
OBJECT_NAME(depz.referencing_id), *
FROM sys.sql_expression_dependencies depz
INNER JOIN sys.objects objz ON depz.referenced_id=objz.object_id
LEFT OUTER JOIN sys.columns colz ON objz.object_id = colz.object_id
...
August 15, 2012 at 1:36 pm
ok hang on, i believe that code returns procedure or function dependancies...testing it now;
i have a couple of otehr examples too.
August 15, 2012 at 1:31 pm
there sure is:
this example will give you all columns that have a certain name;
if you want to specifically limit it to a specific table also, simply uncomment out the table...
August 15, 2012 at 1:28 pm
the best, most foolproof way is to backup the database, and restore it on the other server, with whatever name you would like. That is the standard recommendation.
everything other than...
August 15, 2012 at 12:28 pm
would you expect your function to remove high ascii characters as well?
i had posted a solution in your other thread on a similar strip function;
what would you expect for...
August 15, 2012 at 10:52 am
if a transaction rolls back or fails, the identity() columns still increment.
it sounds like an error occurred inserting the data that was not handled/reported by the .net application.
i've seen...
August 14, 2012 at 3:39 pm
linked servers are slow for updates; it's usually because the far table (which might be huge) gets copied over into a local temp table, then the data is merged for...
August 14, 2012 at 3:22 pm
lets double check some settings...by abstracting out your code to be anonymous (SERVERA and SERVERB, something got lost, i think.
first, i don't think its necessary to use EXECUTE AT.
you can...
August 14, 2012 at 3:04 pm
i think only simple DML queries will work on 4 part names;
you have to issue commands like that with EXECUTE.. AT for commands, SET or DBCC options.
EXECUTE ( 'set IDENTITY_INSERT...
August 14, 2012 at 11:46 am
sandeep rawat (8/14/2012)
But in that case u should have same set of user name...
August 14, 2012 at 8:40 am
check out this project over at codeplex:
http://standardeditioncdc.codeplex.com/
it is a project that someone built that ads a CDC-equivilent to 2008 Standard.
StandardCDC is a project to enable customers on Standard Edition SQL...
August 14, 2012 at 8:20 am
I've got the Kindle Fire, it's great for what it does. I got mine at Christmas 2011, so I've had it for 8 plus months.
Email, web, some cute apps all...
August 14, 2012 at 7:19 am
well, it depends on how your server is used.
C:\Windows\System32\LogFiles is the default location for some log files, and the IIS and the ftp service might generate log files in some...
August 13, 2012 at 7:16 pm
things i would look for
:
review each database on the server. How many have huge log files? this post from today is a nice start:
http://www.sqlservercentral.com/Forums/Topic1343996-391-1.aspx
how many of the databases are...
August 13, 2012 at 6:56 pm
Viewing 15 posts - 4,936 through 4,950 (of 13,465 total)