User Rick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T02:00:55Zhttp://stackoverflow.com/feeds/user/14138http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/654296/remove-subversion-sourcecontrol-from-a-project-visual-studio-tortoisesvn/1575194#15751941Answer by Rick for Remove subversion sourcecontrol from a project (visual studio/tortoiseSVN)Rick2009-10-15T21:28:33Z2009-10-15T21:28:33Z<p>Already <a href="http://stackoverflow.com/questions/154853/how-do-you-remove-subversion-control-for-a-folder">asked and answered</a></p>
http://stackoverflow.com/questions/1228000/push-replication/1242470#12424701Answer by Rick for Push ReplicationRick2009-08-07T01:38:35Z2009-08-07T01:38:35Z<p>When the initial snapshot is sent to the subscriber, it will create any missing objects. You will need to indicate what the snapshot should do if the object already exists by setting the "Action if name in use" property. This can be set by clicking the Article Properties button.</p>
<p>Push replication supports schema changes, so any changes to existing objects will also be replicated.</p>
http://stackoverflow.com/questions/1175217/sql-server-if-not-exists-usage/1175307#11753071Answer by Rick for SQL Server IF NOT EXISTS Usage?Rick2009-07-24T00:56:17Z2009-07-24T00:56:17Z<p>Have you verified that there is in fact a row where Staff_Id = @PersonID? What you've posted works fine in a test script, assuming the row exists. If you comment out the insert statement, then the error is raised.</p>
<pre><code>set nocount on
create table Timesheet_Hours (Staff_Id int, BookedHours int, Posted_Flag bit)
insert into Timesheet_Hours (Staff_Id, BookedHours, Posted_Flag) values (1, 5.5, 0)
declare @PersonID int
set @PersonID = 1
IF EXISTS
(
SELECT 1
FROM Timesheet_Hours
WHERE Posted_Flag = 1
AND Staff_Id = @PersonID
)
BEGIN
RAISERROR('Timesheets have already been posted!', 16, 1)
ROLLBACK TRAN
END
ELSE
IF NOT EXISTS
(
SELECT 1
FROM Timesheet_Hours
WHERE Staff_Id = @PersonID
)
BEGIN
RAISERROR('Default list has not been loaded!', 16, 1)
ROLLBACK TRAN
END
ELSE
print 'No problems here'
drop table Timesheet_Hours
</code></pre>
http://stackoverflow.com/questions/1124808/need-only-date-from-datetime/1129466#11294662Answer by Rick for Need only Date from DateTime Rick2009-07-15T04:52:51Z2009-07-15T23:48:56Z<p>This has been <a href="http://stackoverflow.com/questions/688914/save-datetime-in-mssql-2005-without-hours-minutes-and-seconds">asked and answered</a> before on Stack Overflow. In fact, it's been asked over and over:</p>
<ol>
<li><a href="http://stackoverflow.com/questions/133081/most-efficient-way-in-ms-sql-to-get-date-from-datetime">Most efficient way in MS SQL to get date from date+time?</a></li>
<li><a href="http://stackoverflow.com/questions/325871/best-way-to-check-for-current-date-in-where-clause-of-sql-query">Best way to check for current date in where clause of sql query.</a></li>
<li><a href="http://stackoverflow.com/questions/493223/sql-drop-time-in-datetime">SQL Drop Time in DateTime</a></li>
<li><a href="http://stackoverflow.com/questions/467103/ms-sql-date-only-without-time">MS SQL Date Only Without Time</a></li>
<li><a href="http://stackoverflow.com/questions/113045/how-to-return-the-date-part-only-from-a-sql-server-datetime-datatype">How to return the date part only from a SQL Server datetime datatype</a></li>
</ol>
http://stackoverflow.com/questions/901134/sql-server-simple-remote-reporting-tool/901157#9011570Answer by Rick for SQL Server - simple remote reporting tool?Rick2009-05-23T08:40:52Z2009-05-23T08:40:52Z<p>MS Access isn't free, but if they already have it then you're set. Just create an Access Data Project (adp) against the database, and only give them execute access on the views/stored procs that you want them to use. It's simple point-and-click for them to run a sproc, and it prompts them for the parameter values.</p>
http://stackoverflow.com/questions/843541/whats-a-good-online-resource-for-sql-server-and-t-sql/886726#8867260Answer by Rick for What's a good online resource for SQL server and T-SQL?Rick2009-05-20T08:06:00Z2009-05-20T08:06:00Z<p>I've always like <a href="http://sqlservercentral.com" rel="nofollow">SQL Server Central</a>. They have lots of good articles, and every day there's a Question of the Day that you can try to answer. QOTD is a great way to force yourself to learn about areas of SQL Server that you don't normally look at.</p>
http://stackoverflow.com/questions/463989/export-basic-sales-data-from-jd-edwards0Export basic sales data from JD EdwardsRick2009-01-21T03:12:22Z2009-05-12T23:25:00Z
<p>JD Edwards is sales and accounting software sold and supported by Oracle. We need to get daily or weekly exports from an affiliate using JD Edwards, which I can then import into our system. That means I don't want any answers that result in some sort of proprietary format. Surely there is an "Export" button, or a way to save reports as Excell/CSV/TXT/XML/...?</p>
<p>Ideally, it should be something that the users at that company can run manually or schedule to run automatically. There's no real tech support over there, and I'm not keen to drive there and try to learn their system from scratch.</p>
<p><strong>Edit: 2009-01-23</strong>
From what I read on the web, JD Edwards is backed onto an Oracle database, but the ERD is fairly difficult to understand without a data dictionary. Can anyone suggest either SQL to pull out basic sales data, or else point me at a webpage describing the data model?</p>
<p><strong>Edit: 2009-04-21</strong>
Just a follow-up: they're running JDE via terminals to an AS/400. So it's strictly cursors and keyboard commands. None of the users seem to have access to real reporting; some of the screen show summaries, which the users paste into emails. So we haven't been able to follow dviggiani's advice of automated JDE Report exports.</p>
http://stackoverflow.com/questions/837384/converting-pascalcase-string-to-friendly-name-in-tsql/837525#8375252Answer by Rick for Converting PascalCase string to "Friendly Name" in TSQLRick2009-05-07T23:16:44Z2009-05-08T15:30:43Z<pre><code>/*
Try this. It's a first hack - still has problem of adding extra space
at start if first char is in upper case.
*/
create function udf_FriendlyName(@PascalName varchar(max))
returns varchar(max)
as
begin
declare @char char(1)
set @char = 'A'
-- Loop through the letters A - Z, replace them with a space and the letter
while ascii(@char) <= ascii('Z')
begin
set @PascalName = replace(@PascalName, @char collate Latin1_General_CS_AS, ' ' + @char)
set @char = char(ascii(@char) + 1)
end
return LTRIM(@PascalName) --remove extra space at the beginning
end
</code></pre>
http://stackoverflow.com/questions/834300/finding-out-which-locks-that-are-acquired-in-a-query-on-sql-server/837616#8376160Answer by Rick for Finding out which locks that are acquired in a query on SQL Server?Rick2009-05-07T23:55:42Z2009-05-07T23:55:42Z<p>Here's a query that will show you all active locks, who's got them, and what object they are on. I pulled this from a technet article or something years and years ago. It works on SQL 2000 and 2005 (change sysobjects to sys.objects for 2005.) Uncomment the WHERE clause if you want to restrict it to just this databse, and just the "EXCLUSIVE" locks.</p>
<pre><code>select 'Locks' as Locks,
spid, nt_username, name, hostname, loginame, waittime, open_tran,
convert(varchar ,getdate() - last_batch, 114) as TimeSinceLastCommand,
case req_mode
when 0 then 'Not granted'
when 1 then 'Schema stability'
when 2 then 'Schema modification'
when 3 then 'Intent shared'
when 4 then 'Shared intent update'
when 5 then 'Intent shared shared'
when 6 then 'Intent exclusive'
when 7 then 'Shared Intent Exclusive'
when 8 then 'Shared'
when 9 then 'Update'
when 10 then 'Intent insert NULL'
when 11 then 'Intent shared exclusive'
when 12 then 'Intent update'
when 13 then 'Intent shared-update'
when 14 then 'Exclusive'
when 15 then 'Bulk operation'
else str(req_mode) end as LockMode
from master..syslockinfo
left join sysobjects so on so.id = rsc_objid
left join master..sysprocesses sp on sp.spid = req_spid
--where rsc_dbid = (select db_id()) and ltrim(req_mode) in (6,7,11,14)
</code></pre>
http://stackoverflow.com/questions/837158/passing-default-parameter-value-vs-not-passing-parameter-at-all/837359#8373590Answer by Rick for Passing default parameter value vs not passing parameter at all?Rick2009-05-07T22:20:45Z2009-05-07T22:20:45Z<p>As stated, TSQL doesn't distinguish between supplying the default value and not supplying a value. I think the engine basically substitutes the default values for any missing parameters (or params called with the DEFAULT keyword.)</p>
<p>Instead, use 0 as "No Hat", and NULL as no parameter specified. This is the prefered use of NULL, where it means value unknown or not specified. By using NULL as "No Hat", you've co-opted it into adding an extra value to the range of your data type.</p>
<p>Think of it in terms of the BIT datatype. The datatype is defined to represent a binary value (1 or 0, or T/F if you prefer to think of it as a boolean.) By treating NULL as a valid value, you have extended the datatype beyond the binary options (now have three options, 1/0/NULL.) My recommendation is always that if you find you've run out of values in the current datatype, you're using too small a type.</p>
<p>Back to the stored procedure calling; if you set your default values to NULL, and treat NULL as unset or not specified, then callers should always specify a non-null value when calling the proc. If you get a NULL, assume they didn't supply a value, supplied a NULL, or used the DEFAULT keyword.</p>
http://stackoverflow.com/questions/809375/sql-server-varbinary-or-int-to-store-a-bit-mask/809482#8094821Answer by Rick for SQL Server: varbinary or int to store a bit mask?Rick2009-04-30T22:49:00Z2009-04-30T22:49:00Z<p>I usually agree with @hainstech's answer of using bit fields, because you can explicitly name each bit field to indicate what it should store. However I haven't seen a practical approach to doing bitmask comparisons with bit fields. With SQL Server's bitwise operators (&, |, etc...) it's easy to find out if a range of flags are set. A lot more work to do that with equality operators against a large number of bit fields.</p>
http://stackoverflow.com/questions/805259/storing-utf-16-unicode-data-in-sql-server/805279#8052791Answer by Rick for Storing UTF-16/Unicode data in SQL ServerRick2009-04-30T03:50:50Z2009-04-30T04:32:09Z<p>The string functions work fine with unicode character strings; the ones that care about the number of characters treat a two-byte character as a single character, not two characters. The only ones to watch for are len() and datalength(), which return different values when using unicode. They return the correct values of course - len() returns the length in characters, and datalength() returns the length in bytes. They just happen to be different because of the two-byte characters.</p>
<p>So, as long as you use the proper functions in your code, everything should work transparently.</p>
<p><strong>EDIT</strong>: Just double-checked <a href="http://msdn.microsoft.com/en-us/library/aa223981.aspx" rel="nofollow">Books Online</a>, unicode data has worked seemlessly with string functions since SQL Server 2000.</p>
<p><strong>EDIT 2</strong>: As pointed out in the comments, SQL Server's string functions do not support the full Unicode character set due to lack of support for parsing surrogates outside of plane 0 (or, in other words, SQL Server's string functions only recognize up to 2 bytes per character.) SQL Server will store and return the data correctly, however any string function that relies on character counts will not return the expected values. The most common way to bypass this seems to be either processing the string outside SQL Server, or else using the CLR integration to add Unicode aware string processing functions.</p>
http://stackoverflow.com/questions/172668/full-time-programmer-or-software-development-consultant/172703#17270313Answer by Rick for Full-time programmer or software development consultant?Rick2008-10-05T21:35:17Z2009-04-21T06:48:19Z<p>Consulting does often pay more, but I found it was higher stress and not as much fun. Because you tend to move between companies so often, you don't form as many friendships. And unless you specialize, the work you're doing tends to range from cutting edge to decades old legacy stuff. That makes it difficult to maintain skills and progress your career.</p>
<p>What I often suggest is to start out contracting for a couple of years to build up a proficiency with a specific skillset, consult for a few years to earn money and get a feel for the various work environments and projects available, and then move into a permanent/full-time position where you get benefits + training + frienships. Being permanent/full-time doesn't mean staying there forever, either. Average employment lengths seem to range from 1.5 to 4 years; as people increase in skills, they tend to either get promoted or find a new role with another company.</p>
http://stackoverflow.com/questions/704131/how-many-days-does-it-take-to-learn-jdedwards/770372#7703720Answer by Rick for how many days does it take to learn JDEDWARDSRick2009-04-20T22:34:28Z2009-04-20T22:34:28Z<p>As far as I can tell, it depends on the version of JDE. There are a lot of different components, and different versions (from what I can tell.) For example, a sister company of ours is running JDE over terminals to an AS/400. It's all "Green Screen" text-based screens, typing three letter commands at a command prompt, and using the cursor to move around the screen.</p>
<p>I haven't tried to learn it in depth yet, but trying to learn enough to do basic support has taken me several months at a few hours a week. Think of JDE as a baby version of SAP, that gives you an idea of the scope of your question.</p>
http://stackoverflow.com/questions/509076/how-do-i-address-unchecked-cast-warnings/509160#5091600Answer by Rick for How do I address unchecked cast warnings?Rick2009-02-03T22:16:34Z2009-02-03T22:55:05Z<p>Just typecheck it before you cast it.</p>
<pre><code>Object someObject = session.getAttribute("attributeKey");
if(someObject instanceof HashMap)
HashMap<String, String> theHash = (HashMap<String, String>)someObject;
</code></pre>
<p>And for anyone asking, it's quite common to receive objects where you aren't sure of the type. Plenty of legacy "SOA" implementations pass around various objects that you shouldn't always trust. (The horrors!)</p>
<p><strong>EDIT</strong> Changed the example code once to match the poster's updates, and following some comments I see that instanceof doesn't play nicely with generics. However changing the check to validate the outer object seems to play well with the commandline compiler. Revised example now posted.</p>
http://stackoverflow.com/questions/434647/essential-math-for-excelling-as-a-programmer/434709#4347091Answer by Rick for Essential Math for excelling as a Programmer?Rick2009-01-12T07:29:02Z2009-01-12T07:29:02Z<ol>
<li><strong>Linear Algebra</strong> - you need this for physics, accounting, really most
business logic.</li>
<li><strong>Logic</strong> - knowing how the associative and distributative rules
apply to booleans has helped me debug code sooo many times.</li>
<li><strong>Tuple Calculus</strong> - SQL (a language for interacting with databases) is
based on tuple calculus; even if you only understand the basics, you're
so far ahead of everyone else in the "real world" that all their database
code will look simplistic</li>
</ol>
<p>That's it. If I had known how important Tuple Calculus would be to anyone writing or debugging any sort of database code, I would have tried to teach myself in high school. Way more important than any C, C++ or Java courses I took.</p>
http://stackoverflow.com/questions/329822/mysql-strict-select-of-rows-involving-many-to-many-tables/329862#3298620Answer by Rick for MySQL strict select of rows involving many to many tablesRick2008-12-01T02:24:10Z2008-12-01T02:30:48Z<p>A bit of a hacky solution is to use IN with a group by and having filter. Like so:</p>
<pre><code>SELECT B_id FROM AB
WHERE A_id IN (1,2,3)
GROUP BY B_id
HAVING COUNT(DISTINCT A_id) = 3;
</code></pre>
<p>That way, you only get the B_id values that have exactly 3 A_id values, and they have to be from your list. I used DISTINCT in the COUNT just in case (A_id, B_id) isn't unique. If you need other columns, you could then join to this query as a sub-select in the FROM clause of another select statement.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329590#3295904Answer by Rick for Is 1 for TRUE or FALSE ?Rick2008-11-30T23:24:10Z2008-11-30T23:24:10Z<p>I always remember that most languages are optimistic. So while only 0 = false, everything else = true.</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/324730#3247305Answer by Rick for What's the most egregious pop culture perversion of programming?Rick2008-11-27T22:13:38Z2008-11-27T22:13:38Z<p>How about using a virus to blow up computers, as done in Transformers? And since when do computers contain material that can explode with such force?</p>
http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/289155#2891550Answer by Rick for What is the single hardest programming skill or concept you have learned?Rick2008-11-14T03:25:54Z2008-11-14T03:25:54Z<p>Self-referencing <a href="http://msdn.microsoft.com/en-us/library/ms175972.aspx" rel="nofollow">Common Table Expressions</a>. They seem so simple, but recursion in a set-based language like sql is much, much different from recursion in an iterative or functional language.</p>
http://stackoverflow.com/questions/285960/how-to-avoid-that-url-equals-needs-access-to-the-internet-in-java/285975#2859751Answer by Rick for How to avoid, that URL.equals needs access to the internet in Java?Rick2008-11-13T00:58:01Z2008-11-13T00:58:01Z<p>If you just want to compare the url strings, try</p>
<pre><code>url1.toString().equals(url2.toString())
</code></pre>
http://stackoverflow.com/questions/277210/i-need-to-get-the-password-which-is-hashed-in-asp-net/277241#2772411Answer by Rick for I need to get the password which is Hashed in ASP.netRick2008-11-10T06:54:50Z2008-11-10T07:26:32Z<p>If you're not using a <a href="http://en.wikipedia.org/wiki/Salt_(cryptography)" rel="nofollow">salt</a> then you could break the passwords using a <a href="http://en.wikipedia.org/wiki/Dictionary_attack" rel="nofollow">dictionary attack</a>.</p>
<p>EDIT: I realise his original question is how to retrieve a password <em>he stored</em>, but it amuses me to provide a solution to the more generic question implied by the question title.</p>
http://stackoverflow.com/questions/269253/sql-2005-sql-login-ip-restriction/271057#2710570Answer by Rick for SQL 2005 sql login ip restrictionRick2008-11-07T02:30:52Z2008-11-07T02:30:52Z<p>Why do you need to restrict by IP address? If all your users are authenticated, just set up group permissions on SQL Server, and allow or deny the groups you want.</p>
<p>If the problem is various users using applications with the same SQL login (you mentioned you're using mixed-mode), then the question is why do you want to allow some users using the applications to access SQL Server, and not allow others? Implement the security in the applications, don't bounce them at the database level.</p>
http://stackoverflow.com/questions/250536/sql-server-full-text-search/254984#2549841Answer by Rick for SQL Server Full Text SearchRick2008-10-31T21:14:26Z2008-10-31T21:14:26Z<p>This has already been <a href="http://stackoverflow.com/questions/4052/how-to-enable-full-text-indexing-in-mssql-2005-express">asked and answered</a> for SQL 2005 Express.</p>
http://stackoverflow.com/questions/241230/setting-up-a-backup-db-server-in-asp-net-web-config-file/241298#2412981Answer by Rick for Setting up a backup DB server in ASP.NET web.config fileRick2008-10-27T20:36:51Z2008-10-28T02:16:24Z<p>What you want is called "failover", where if one database fails your queries are automatically redirected to the other. This is acheived at the database level, not the application. There are a lot of walkthroughs etc for setting up failover clusters: here's one for <a href="http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/failclus.mspx" rel="nofollow">SQL 2000</a>, and another for <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=818234dc-a17b-4f09-b282-c6830fead499&displaylang=en" rel="nofollow">SQL 2005</a>. Basically, once you set it up, the primary database communicates all activity to the secondary one. If the primary fails, the secondary is (almost) up to date and takes over.</p>
<p>The servers form a cluster, and look like a single unit - similar to the way your load-balanced web servers look to the outside world. The backup monitors the primary, and if the primary stops responding, the backup takes over receiving queries. If you're Googling, try also looking adding the keywords "database mirroring" and "quorum".</p>
http://stackoverflow.com/questions/237601/sql-server-2005-wrapping-tables-by-views-pros-and-cons/237808#2378083Answer by Rick for SQL Server 2005: Wrapping Tables by Views - Pros and ConsRick2008-10-26T09:59:17Z2008-10-26T09:59:17Z<p>You won't notice any performance impact for one-table views; SQL Server will use the underlying table when building the execution plans for any code using those views. I recommend you schema-bind those views, to avoid accidentally changing the underlying table without changing the view (think of the poor next guy.)</p>
<blockquote>
<p>When a table column is to be renamed</p>
</blockquote>
<p>In my experience, this rarely happens. Adding columns, removing columns, changing indexes and changing data types are the usual alter table scripts that you'll run.</p>
<blockquote>
<p>It is easier to implement derived attributes (easier than using computed columns).</p>
</blockquote>
<p>I would dispute that. What's the difference between putting the calculation in a column definition and putting it in a view definition? Also, you'll see a performance hit for moving it into a view instead of a computed column. The only real advantage is that <em>changing</em> the calculation is easier in a view than by altering a table (due to indexes and data pages.)</p>
<blockquote>
<p>You can effectively have aliases for column names.</p>
</blockquote>
<p>That's the real reason to have views; aliasing tables and columns, and combining multiple tables. Best practice in my past few jobs has been to use views where I needed to denormalise the data (lookups and such, as you've already pointed out.)</p>
<p>As usual, the most truthful response to a DBA question is "it depends" - on your situation, skillset, etc. In your case, refactoring "everything" is going to break all the apps anyways. If you do fix the base tables correctly, the indirection you're trying to get from your views won't be required, and will only double your schema maintenance for any future changes. I'd say skip the wrapper views, fix the tables and stored procs (which provide enough information hiding already), and you'll be fine.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195196#1951961Answer by Rick for What is the best comment in source code you have ever encountered?Rick2008-10-12T07:29:27Z2008-10-25T09:39:35Z<p>Found in the main trigger code for transactions in an OLTP database:</p>
<pre><code>-- This line negates the @inverseqty, which is the
-- negative of the @insertedquantity. This works through the
-- magic of the trigger. In fact, this code is a lot like
-- the bermuda triangle!
@negquantity = -1 * @inverseqty
</code></pre>
http://stackoverflow.com/questions/196256/returning-the-largest-of-2-columns-in-sql-server/196282#1962820Answer by Rick for Returning the largest of 2 columns in SQL ServerRick2008-10-12T23:26:14Z2008-10-24T03:59:37Z<p>Case statements will probably be the fastest, but get increadibly unwieldly (as in the example in ΤΖΩΤΖΙΟΥ's link. And bad luck with a function, as it needs to be called for every single row (lots of overhead.)</p>
<p>You could do something smarter by with SQL 2005+ by unpivoting the columns to be compared and then using the MAX function. For example:</p>
<pre><code>create table #t (id int IDENTITY(1,1), a int, b int)
insert #t
select 1,2 union all
select 3,4 union all
select 5,2
select id, max(val)
from #t
unpivot (val for col in (a, b)) as unpvt
group by id
</code></pre>
<p>Note that you'll need a primary key on your table (I added an identity column), but it's far simpler to maintain the columns to be compared than any of the options in the posted question. Just add/remove columns from the list in the unpivot operator clause.</p>
<h2>Update</h2>
<p>I've run the three examples (<strong><code>CASE</code></strong>, <strong><code>UDF</code></strong> and <strong><code>UNPIVOT</code></strong>) against 1 million unsorted rows, and surprisingly found they were quite comparable.</p>
<ul>
<li><strong><code>CASE</code></strong> = 26 seconds</li>
<li><strong><code>UDF</code></strong> = 23 seconds</li>
<li><strong><code>UNPIVOT</code></strong> = 25 seconds</li>
</ul>
<p>I suspect that the <strong><code>UDF</code></strong> will fall behind as the number of rows increases, due to the overhead of the function calls, but the fact that it is precompiled might continue to give it the edge. <strong><code>Unpivot</code></strong> will be the fatest and easiest to manage when comparing more than two elements, but for two elements I'd say a User Defined Function is your best choice.</p>
http://stackoverflow.com/questions/72070/problem-with-set-fmtonly-on/232380#2323801Answer by Rick for Problem with SET FMTONLY ONRick2008-10-24T03:19:57Z2008-10-24T03:19:57Z<p>Some statements will still be executed, even with <strong><code>SET FMTONLY ON</code></strong>. You "Conversion failed" error could be from something as simple as a <code>set variable</code> statement in the stored proc. For example, this returns the metadata for the first query, but throws an exception when it runs the last statement:</p>
<pre><code>SET FMTONLY on
select 1 as a
declare @a int
set @a = 'a'
</code></pre>
<p>As for running a dropped procedure, that's a new one to me. SQL Server uses the system tables to determine the object to execute, so it doesn't matter if the execution plan is cached for that object. If you drop it, it is deleted from the system tables, and should never be executable. Could you please query sysobjects (or sys.objects) just before you execute the procedure? I expect you'll find that you haven't dropped it.</p>
http://stackoverflow.com/questions/232333/how-long-should-set-readcommittedsnapshot-on-take/232358#2323581Answer by Rick for How long should SET READ_COMMITTED_SNAPSHOT ON take?Rick2008-10-24T03:04:58Z2008-10-24T03:04:58Z<p>You can check the status of the READ_COMMITTED_SNAPSHOT setting using the <strong><code>sys.databases</code></strong> view. Check the value of the <strong><code>is_read_committed_snapshot_on</code></strong> column. Already <a href="http://stackoverflow.com/questions/51969/how-to-detect-readcommittedsnapshot-is-enabled">asked and answered</a>.</p>
<p>As for the duration, Books Online states that there can't be any other connections to the database when this takes place, but it doesn't require single-user mode. So you may be blocked by other active connections. Run <strong><code>sp_who</code></strong> (or <strong><code>sp_who2</code></strong>) to see what else is connected to that database.</p>
http://stackoverflow.com/questions/1381118/sql-server-2005-trigger-to-hash-password-at-insertion/1381164#1381164Comment by Rick on sql server 2005 - trigger to hash password at insertionRick2009-09-04T19:40:57Z2009-09-04T19:40:57ZMake sure you add a salt to the password before hashing it, to avoid rainbow table attacks.http://stackoverflow.com/questions/1357678/how-to-update-top-400/1358163#1358163Comment by Rick on How to UPDATE TOP 400 ?Rick2009-09-03T01:00:57Z2009-09-03T01:00:57ZAlso works on SQL 2005, but requires the brackets: TOP (n). See SQL 2005 BOL, UPDATE statement, TOP () clause.http://stackoverflow.com/questions/1357678/how-to-update-top-400/1358455#1358455Comment by Rick on How to UPDATE TOP 400 ?Rick2009-09-03T00:58:31Z2009-09-03T00:58:31ZHe must be using SQL 2000, as SQL 2005 supports the TOP () clause for UPDATE statements. SQL 2000 doesn't have CTEs, so he can't really use this.http://stackoverflow.com/questions/1246707/how-do-i-make-one-user-see-a-different-table-with-same-name/1246729#1246729Comment by Rick on How do I make one user see a different table with same nameRick2009-08-07T21:00:08Z2009-08-07T21:00:08ZYou can't make a view with the same name as an existing table in the same schema. If you try, you'll get error Msg 2714 ("object with that name already exists").http://stackoverflow.com/questions/1242355/best-way-to-store-large-dataset-in-mssql-server/1242404#1242404Comment by Rick on Best way to store large dataset in MSSQL Server?Rick2009-08-07T01:20:03Z2009-08-07T01:20:03Z+1 for the comment about selectivity, probably has the biggest impacthttp://stackoverflow.com/questions/1175217/sql-server-if-not-exists-usageComment by Rick on SQL Server IF NOT EXISTS Usage?Rick2009-07-24T00:44:37Z2009-07-24T00:44:37Z1 in that case is just a constant. All he cares about is that a row is returned, not the value of any columns. Using a constant is usually faster than using * or a specific column list.http://stackoverflow.com/questions/1175244/sql-server-error-on-update-command-a-severe-error-occurred-on-the-current-comm/1175261#1175261Comment by Rick on SQL Server error on update command - "A severe error occurred on the current command"Rick2009-07-24T00:42:23Z2009-07-24T00:42:23Z+1 for suggesting triggers.http://stackoverflow.com/questions/346659/what-are-the-most-common-sql-anti-patterns/346710#346710Comment by Rick on What are the most common SQL anti-patterns?Rick2009-07-16T00:08:23Z2009-07-16T00:08:23Z@recursive: you can't have indexes on a table variable, which will often make it slower than a subquery. However you could use a temporary table with custom indexes.http://stackoverflow.com/questions/346659/what-are-the-most-common-sql-anti-patterns/346668#346668Comment by Rick on What are the most common SQL anti-patterns?Rick2009-07-15T23:59:58Z2009-07-15T23:59:58ZThe prefixes can be useful if you're scripting the objects to files (eg: for source control, deployments or migration)http://stackoverflow.com/questions/1124808/need-only-date-from-datetime/1131792#1131792Comment by Rick on Need only Date from DateTime Rick2009-07-15T23:32:36Z2009-07-15T23:32:36ZThat only gives the day of the month, for example today is the 16th of July, so datepart(day, getdate()) would return 16. I think he wants '2009-07-16' instead.http://stackoverflow.com/questions/1093106/tidy-for-sql/1093120#1093120Comment by Rick on Tidy for SQLRick2009-07-07T22:44:48Z2009-07-07T22:44:48ZWebsite is free to use, but the add-in for SSMS is $40 USD.http://stackoverflow.com/questions/1093106/tidy-for-sql/1094851#1094851Comment by Rick on Tidy for SQLRick2009-07-07T22:43:48Z2009-07-07T22:43:48ZWebsite is free to use, but the add-in for SSMS is $40 USD.http://stackoverflow.com/questions/884663/how-would-a-single-script-truncate-a-particular-table-in-every-database/884744#884744Comment by Rick on How would a single script truncate a particular table in every database?Rick2009-05-20T08:02:06Z2009-05-20T08:02:06ZHe's not looking to truncate the Transaction Log, but rather to truncate a table called Logs.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/324730#324730Comment by Rick on What's the most egregious pop culture perversion of programming?Rick2009-05-18T09:49:26Z2009-05-18T09:49:26ZIf I remember correctly, in Transformers the computers blow up in a huge fireball, completely destroying the room/building. That's a bit different from overheating the electronics.http://stackoverflow.com/questions/463989/export-basic-sales-data-from-jd-edwards/855397#855397Comment by Rick on Export basic sales data from JD EdwardsRick2009-05-18T09:37:39Z2009-05-18T09:37:39ZThanks @ezingano, that site looks good. I'll post there and see what people can tell me. Can't mark this as a solution to my question, but definitely gets an up-mod as helpful.