Viewing 15 posts - 8,431 through 8,445 (of 14,953 total)
Execution plans costs and percentages are misleading. They are quite often just plain wrong. Personally, I wish MS would get rid of them, because they cause more problems...
September 4, 2009 at 6:48 am
Given all the actions you're trying to do, SSIS might be a good solution. It can import data into SQL tables, run command line/exe actions, etc. Take a...
September 4, 2009 at 6:45 am
Because DateTime data type is accurate to 1/300th of a second, not 1/1000th of a second. The definition of the data type in Books Online (or MSDN) explains this...
September 3, 2009 at 1:39 pm
I'd probably still be doing sales, marketing, and/or management, since those are the roles that got me into being a DBA in the first place.
September 3, 2009 at 1:27 pm
Jeff:
Please make sure you don't ever accidentally/intentionally go to http://www.sqlservercentral.com/Forums/Topic782099-338-2.aspx
(Sorry, Paul, I couldn't resist!)
September 3, 2009 at 11:22 am
Are you just trying to find the difference between a date and the date in the next row?
If so, try this:
;with Dates (Row, Date, Days) as
(select...
September 3, 2009 at 9:54 am
Since you can use Exec with varchar(max), you're not really limited on this, but the string-build can get a little complex, especially if you have nested single-quotes.
Exiting the SQL context...
September 3, 2009 at 9:45 am
Dave Ballantyne (9/3/2009)
Shall I ? , i feel mean , but at the same time it is quite simple.http://www.sqlservercentral.com/Forums/Topic781960-338-1.aspx
I get a Page Not Found error from that address.
September 3, 2009 at 9:38 am
I don't see the execution plans.
September 3, 2009 at 9:37 am
I'd say it's a problem that should be fixed, but it's a minor one.
September 3, 2009 at 9:36 am
Dynamic SQL is the usual tool for this kind of thing. You create a varchar variable, populate it with the commands you want by concatenating the database name into...
September 3, 2009 at 8:39 am
sudhanva (9/3/2009)
Dave Ballantyne (9/3/2009)
no , but you can wrap the declare within an IFWhy No?
Can anybody provide some links/info on this?
This link provides the full syntax for declaring a cursor:...
September 3, 2009 at 8:36 am
Failure to report a known crime is conspiracy, which can actually be worse than committing the crime in some cases. In most cases, conspiracy to commit a misdemeanor is...
September 3, 2009 at 7:20 am
Yes, I read the paper. His use of sa was just examples. As I mentioned, if someone has the sa password for your server, SQL injection is the...
September 3, 2009 at 7:14 am
Viewing 15 posts - 8,431 through 8,445 (of 14,953 total)