Viewing 15 posts - 4,966 through 4,980 (of 9,643 total)
Here's one that is getting me going. Gus has already chimed in, thanks.
May 29, 2009 at 9:10 am
No, this is not what you are doing today. This does your update in one statement, not by building a string of sql statements and then executing the string.
If...
May 29, 2009 at 9:09 am
This article[/url] might give you some ideas. It does not do what you want, but it shows how to use a script component to do some conditional processing of...
May 29, 2009 at 9:07 am
Just to clarify, you do NOT need Outlook installed on your SQL Server to use Database Mail.
What is the SMTP server you are using?
May 29, 2009 at 9:05 am
I'd dump the CSV data into a table then do a set-based update. Something like:
UPDATE TABLEA
SET boolean_column = TRUE
WHERE
EXISTS (SELECT 1...
May 29, 2009 at 8:55 am
It depends.
What is the clustered index key? How wide is it?
Where are your inserts in the clustered key, beginning, middle, end?
Are your updates, updating the clustered key?
What is the...
May 29, 2009 at 8:46 am
Stefano has the right idea. Attached is the sql I got from Profiler.
May 29, 2009 at 8:40 am
Roy Ernest (5/29/2009)
Or you can add it as a job if it is to be run at a regular interval.
Darn Roy, I was hoping this would have been a suggestion...
May 29, 2009 at 8:26 am
You could save all the queries in 1 .sql file separated by the GO statement and then execute the 1 command.
You could create a batch file (.bat) that executes the...
May 29, 2009 at 7:34 am
You can use a conditional to simulate COALESCE. Why not do COALESCE in the source query? That would probably be the most efficient way to do it.
May 29, 2009 at 7:32 am
If object names have a normally disallowed character in them you either need to turn on quoted identifiers and use double-quotes (") around the name, "First Name", or you can...
May 29, 2009 at 7:29 am
You would select Database:Database File Auto Grow and Database:Log File Auto Grow. Since these are collected by the Default Trace there really is no reason to do another trace...
May 29, 2009 at 7:27 am
GilaMonster (5/29/2009)
Got no major projects that I'm busy with, just...
May 29, 2009 at 6:38 am
Lynn Pettis (5/28/2009)
Roy Ernest (5/28/2009)
May 28, 2009 at 12:15 pm
Pratibha_Pillai (5/28/2009)
Thanks for the reply.I need few more guidelines from you.
Generally I got the answer as to how can I track the schema changes.My application is used for synchronization...
May 28, 2009 at 7:04 am
Viewing 15 posts - 4,966 through 4,980 (of 9,643 total)