Viewing 15 posts - 7,891 through 7,905 (of 13,469 total)
Ray synonyms are Per Object, with an object being a Table, typically;
so you need a synonym for each object coming from the linked server.
so you create say , 4 synonyms...
March 23, 2011 at 12:14 pm
KermitTheRock (3/23/2011)
March 23, 2011 at 10:08 am
ok see if this is even close to what you are looking for;
i'm assuming you need to generate the delete statements because you know a certain key must be deleted...
March 23, 2011 at 8:41 am
you can build your tree based on the foreign keys, but the decision on what to do with rows of data containing FK references is still a business decision. Once...
March 23, 2011 at 5:57 am
Tara the other person could be mapped to a remote user that has full access, and everyone else's connection made with no context; that way, everyone EXCEPT the people i've...
March 22, 2011 at 12:14 pm
ok answering my own question, I definitely do not want the serverproperty;
what i foudn that since one of the first things SQL does on startup is create a new tempdb,...
March 22, 2011 at 12:06 pm
ok I'm poking around trying to find what might be the most accurate server start time; I'm not sure the first date i find in the DMV's would be perfect..i'd...
March 22, 2011 at 11:50 am
Based on that blog by Aaron, I put the script below together.
My only issue is whether i'm using the right date for when the server was restarted...i was just assuming...
March 22, 2011 at 11:11 am
homework question:
Auto commit has been turned off.
1- William logs into the database
2- Julianna logs into the database
3- William sees 12 rows in the TOYS table
4-...
March 22, 2011 at 11:00 am
you posted the same question in a SQL 2000 forum here:
http://www.sqlservercentral.com/Forums/Topic1080006-5-1.aspx
in that thread I had posted a link to aaron bartrands blog on how to read the DMV's to find...
March 22, 2011 at 10:44 am
your ttableB.Earlylate has more than one value...you might want the MAX date or the MIN date, depending on your logic, instead
update tableA
SET TableA.validateTime = (select MAX(tableB.Earlylate) from tableB
where tableA.ID =...
March 22, 2011 at 9:45 am
assumning if that field HF00340 is zero, you want to set that result to zero, else the calcualtion:
Update a
set HF56390 =
CASE
WHEN HF00340 = 0
THEN 0
...
March 22, 2011 at 9:43 am
yes SQL Express will run on Windows 7 no problem.
Express, by default, does not set itself up for remote connectionsso users can't access it from other machines immediately... so...
March 22, 2011 at 7:48 am
actually, MS provides a stored procedure that will give you all objects(procs, views, tables, etc) in dependency order:
try this in SSMS:
EXEC sp_msdependencies @intrans = 1
if...
March 22, 2011 at 6:24 am
vishnubhotla.uday your solution is changing the collation of the master database, and then the default collations of each of the databases...that's only 5% of the solution,and typically you need to...
March 22, 2011 at 6:10 am
Viewing 15 posts - 7,891 through 7,905 (of 13,469 total)