Viewing 15 posts - 31 through 45 (of 121 total)
are you looking to update based on any type of criteria as well?
if so, throw a WHERE a.key = "something" clause, otherwise, the update statement look good
January 27, 2011 at 7:24 pm
applebutton (1/27/2011)
eg.
update
set A.key = C.key
where A.key in (select...
January 27, 2011 at 6:37 pm
In Active Directory, your admin has to right click on the user account and enable 'Account is Trusted for Delegation'
January 27, 2011 at 3:08 pm
Hi OP,
in my environment, we got it setup like you are talking about. What I did was make a variable and store the entire backup statement into the...
January 27, 2011 at 3:06 pm
where col1 is null
and col2 = ""
January 27, 2011 at 2:45 pm
you can use a unique index to prevent dupes from being entered into your table. avoid triggers since this will cause a performance hit if you have a lot...
January 22, 2011 at 6:26 pm
are you talking about DDL & DML changes to the sql data or change to the actual server, such as a new user has been added, timeout connections setting has...
January 22, 2011 at 6:16 pm
i don't know how you would do it in SQL but here's how you can do it in Powershell
$filexml = gc 'C:\Users\a\sc.xml'
[xml]$file = $filexml
$newData = 'xs:string(sql:variable("@dTxtPubdate")'
$file.SelectSingleNode("resRefDate/refDate")."#text" = $newData
$file.Save("C:\Users\a\sc.xml")
Also you have...
January 21, 2011 at 7:18 pm
CirquedeSQLeil (1/21/2011)
Can you post the execution plan?
that's what I was going to say. can't tell what the query is doing exactly w/o it. you can also fire sql...
January 21, 2011 at 6:55 pm
The only way to backup the entire server would be to ghost it. The windows backup tool will backup folders and system information, which you can use to restore...
January 20, 2011 at 12:34 am
try using the ObservableCollection, check to see if there has been any change in your table, if not; don't call the method.
if not, maybe use some sort of event to...
January 20, 2011 at 12:21 am
it was suppose to point to a post i made an app i created that would ease db backup but it looked like it violated some TOA/TOS/rule and the mod...
January 20, 2011 at 12:11 am
anyone know how to change sql 2005 server service password on an active/active cluster via script?
I hate having to click my way thru changing passwords for 50+ servers.
thx
April 8, 2009 at 5:48 pm
hrmm ... don't know if that function and default trace captures anything about linked server. I just added a linked server and then queried that all the trace files...
March 9, 2009 at 12:38 pm
Viewing 15 posts - 31 through 45 (of 121 total)