User gbn - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T00:22:18Zhttp://stackoverflow.com/feeds/user/27535http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1869753/maximum-size-for-a-sql-server-query-in-clause-is-there-a-better-approach/1869775#18697753Answer by gbn for Maximum size for a SQL Server Query? IN clause? Is there a Better Approachgbn2009-12-08T20:56:46Z2009-12-08T21:03:28Z<p>Per batch, <a href="http://msdn.microsoft.com/en-us/library/ms143432.aspx" rel="nofollow">65536 * Network Packet Size</a> which is 4k so 256 MB</p>
<p>However, IN will stop way before that but it's not precise.</p>
<p>You end up with memory errors but I can't recall the exact error.
A huge IN will be inefficient anyway.</p>
<p>Edit: Remus reminded me: the error is about "stack size"</p>
http://stackoverflow.com/questions/1869479/database-design-question-using-multiple-tables-or-xml/1869536#18695365Answer by gbn for Database design question, using multiple tables or XMLgbn2009-12-08T20:12:26Z2009-12-08T20:12:26Z<p>Tables</p>
<p>Some thoughts:</p>
<ul>
<li>Parsing XML will be expensive</li>
<li>Assuming 100 million "rows", that's a 6GB ish string of unicode xml</li>
<li>Databases are designed to JOIN</li>
<li>Indexing?</li>
<li>Is this not a single self-referencing table that can be traversed with a CTE (SQL Server)</li>
<li>Finally, why is the CTO working at this level?</li>
</ul>
http://stackoverflow.com/questions/1868678/database-design-which-table-has-the-foreign-key/1868776#18687761Answer by gbn for Database design, which table has the foreign keygbn2009-12-08T18:05:17Z2009-12-08T18:25:01Z<ul>
<li>If every USER has exactly (or at most) one ACCESS_ROLE.</li>
<li>One ACCESS_ROLE can have multiple USERs</li>
</ul>
<p>Then:</p>
<ul>
<li>FK parent is ACCESS_ROLE and links to the PK of the ACCESS_ROLES table</li>
<li>FK child is USERS and the FK column is the ACCESS_ROLE column</li>
</ul>
<p>Note: the foreign key "parent" column(s) must have be constrainted unique. If you have multiple users per ACCESSROLE, the FK <em>must</em> be from USERS to ACCESSROLES</p>
<p>In SQL Server</p>
<pre><code>ALTER TABLE USERS WITH CHECK ADD
CONSTRAINT FK_USERS_ACCESS_ROLES FOREIGN KEY (ACCESS_ROLE) REFERENCES ACCESS_ROLES (ACCESS_ROLE /*PK?*/)
</code></pre>
http://stackoverflow.com/questions/1867946/sql-wildcard-performance-overhead/1868038#18680386Answer by gbn for Sql wildcard: performance overhead?gbn2009-12-08T16:18:28Z2009-12-08T16:46:49Z<pre><code>SELECT * FROM...
</code></pre>
<p>and</p>
<pre><code>SELECT every, column, list, ... FROM...
</code></pre>
<p>will perform the same because both are an unoptimised scan</p>
<p>The difference is:</p>
<ul>
<li>the extra lookup in sys.columns to resolve *</li>
<li>the contract/signature change when the table schema changes</li>
<li>inability to create a covering index. In fact, no tuning options at all, really</li>
<li>have to refresh views needed if non schemabound</li>
<li>can not index or schemabind a view using *</li>
<li>...and other stuff</li>
</ul>
<p>Other SO questions on the same subject...</p>
<ul>
<li><a href="http://stackoverflow.com/questions/321299/what-is-the-reason-not-to-use-select">What is the reason not to use select * ?</a></li>
<li><a href="http://stackoverflow.com/questions/208925/is-there-a-difference-betweeen-select-and-select-list-each-col">Is there a difference betweeen Select * and Select list each col</a></li>
<li><a href="http://stackoverflow.com/questions/128412/sql-query-question-select-from-view-or-select-col1-col2-from-view">SQL Query Question - Select * from view or Select col1,col2…from view</a></li>
<li><a href="http://stackoverflow.com/questions/321468/select-from-table-vs-select-cola-colb-etc-from-table-interesting-behaviour">“select * from table” vs “select colA,colB,etc from table” interesting behaviour in SqlServer2005</a></li>
</ul>
http://stackoverflow.com/questions/1867445/monitor-account-activity-for-sql-server-2005/1867519#18675193Answer by gbn for Monitor account activity for SQL Server 2005gbn2009-12-08T14:58:39Z2009-12-08T14:58:39Z<p>To see who's connecting, you can use <a href="http://technet.microsoft.com/en-us/library/bb326598%28SQL.90%29.aspx" rel="nofollow">Logon Triggers</a> which allows you to log access. Running a trace for a month or 2 to audit login events may simply not work if you failover, restart SQL etc</p>
<p>However, to see what someone is doing after connection, then you'll really have to use Profiler like Mitch said</p>
http://stackoverflow.com/questions/1862593/constant-abuse/1862651#18626517Answer by gbn for Constant abuse?gbn2009-12-07T20:23:47Z2009-12-07T20:23:47Z<p>Abuse, IMHO. "Zero" is just is one of the basics.</p>
<p>Although the STRINGS_ARE_EQUAL could be easy, why not ".Equals"?</p>
<p><a href="http://en.wikipedia.org/wiki/Magic%5Fnumber%5F%28programming%29#Accepted%5Flimited%5Fuse%5Fof%5Fmagic%5Fnumbers" rel="nofollow">Accepted limited use of magic numbers?</a></p>
http://stackoverflow.com/questions/1857875/dbnetlibconnectionopen-preloginhandshake-general-network-error-connecti/1858022#18580220Answer by gbn for [DBNETLIB][ConnectionOpen (PreLoginHandshake()).]General network error - connecting to SQL database in VB scriptgbn2009-12-07T05:37:48Z2009-12-07T20:11:01Z<p>It's not a database error, but a client tools or config error</p>
<p>The failing servers will probably:</p>
<ul>
<li>have a different level of either SQL Server install /includes service pack)</li>
<li>are configured for Windows Authentication only</li>
<li>have an older MDAC (linked to SQL Service pack, OS Service pack etc)</li>
</ul>
<p>Edit:</p>
<p>SQL Server SSL Encryption, <a href="http://msdn.microsoft.com/en-us/library/ms189067%28SQL.90%29.aspx" rel="nofollow">server side, is described here</a>. And in <a href="http://support.microsoft.com/kb/316898" rel="nofollow">KB 316898</a> too</p>
<ul>
<li>"Server side" requires only a server certificate and all connections are encrypted</li>
<li>"client side" requires client certs and is optional, and only for that client</li>
</ul>
<p>Certain client libraries (notably MS JDBC) do not support this.</p>
<p>If I've guessed right, you'll have either client or server SSL encryption set based on the server (your script is acting as a client)</p>
<ul>
<li><a href="http://blogs.msdn.com/sql%5Fprotocols/archive/2005/10/04/476705.aspx" rel="nofollow">a blog entry too</a></li>
</ul>
http://stackoverflow.com/questions/1862375/disbabled-sql-server-job-will-still-try-to-run-at-the-original-scheduled-time/1862493#18624931Answer by gbn for Disbabled sql server job will still try to run at the original scheduled timegbn2009-12-07T19:57:33Z2009-12-07T19:57:33Z<p>A disabled job does not run.</p>
<ul>
<li>Does it have multiple schedules?</li>
<li>Have you disabled the schedule?</li>
<li>Do you have an alert?</li>
<li>Is it being triggered elsewhere?</li>
</ul>
<p>You can not update system tables directly in SQL Server 2005+...</p>
http://stackoverflow.com/questions/1859915/changing-multiple-column-names-with-a-single-query/1859950#18599502Answer by gbn for changing multiple column names with a single querygbn2009-12-07T13:22:59Z2009-12-07T13:22:59Z<p>You have to create a new table, copy data, drop old table</p>
<p><a href="http://technet.microsoft.com/en-us/library/ms190273.aspx" rel="nofollow">ALTER TABLE</a> does not support multiple ...ALTER COLUMN clauses</p>
<p>You could ADD multiple columns on one go, populate then, then drop the old columns.
Multiple ADDs are supported.</p>
http://stackoverflow.com/questions/1859280/regarding-case-when-in-stored-procedure/1859349#18593494Answer by gbn for Regarding case when in stored proceduregbn2009-12-07T11:08:46Z2009-12-07T11:08:46Z<p>This won't work in several levels.</p>
<ul>
<li>You can't append a string to a query. It's either all dynamic or all not.</li>
<li><p>The CASE WHEN bit needs to be in string delimiters "<code>...THEN
'(e.CourseId is null or e.CourseId is not null)'...</code></p></li>
<li><p>"e.CourseId is null or e.CourseId is not null" is the same "always give me data"</p></li>
</ul>
<p>All you need is:</p>
<pre><code>select f.EnquiryID,
e.[Name],
f.AttendedBy,
f.Remarks,
f.CreatedDate
from STD_FollowUp f
inner join
STD_Enquiry e
on f.EnquiryId=e.EnquiryId
</code></pre>
http://stackoverflow.com/questions/1858329/can-i-rollback-dynamic-sql-in-mssql-tsql/1858341#18583413Answer by gbn for Can I rollback Dynamic SQL in MSSQL / TSQLgbn2009-12-07T07:11:41Z2009-12-07T07:32:28Z<p>Yes. The TXNs belong to the current session/connection and dynamic SQL uses the same context.</p>
<p>However, @@ERROR won't pick up the error most likely: the status has to be checked immediately after the offending statement. I'd use TRY/CATCH, assuming SQL Server 2005+</p>
<p>Edit: The TRY/CATCH should work OK.</p>
http://stackoverflow.com/questions/1856966/how-to-let-sql-server-know-not-to-use-cache-in-queries/1858030#18580300Answer by gbn for How to let SQL Server know not to use Cache in Queries?gbn2009-12-07T05:43:13Z2009-12-07T05:43:13Z<p>For data, you can't. There is no cache in the sense that "the next query will have the same data as the first from cache". Every query will return the latest committed data in the tables.</p>
<p>For code, don't do it unless you know <em>why</em> and only under certain conditions.</p>
http://stackoverflow.com/questions/1855188/collating-sequence-not-supported-by-operating-system/1855387#18553870Answer by gbn for Collating Sequence Not supported by operating systemgbn2009-12-06T13:26:55Z2009-12-06T13:26:55Z<p>Compile the code: don't use the IDE?</p>
<p>Related <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;246167" rel="nofollow">KS KB article 246167</a></p>
http://stackoverflow.com/questions/1852431/left-join-for-current-row-in-primary-table/1852678#18526781Answer by gbn for LEFT JOIN for current row in primary tablegbn2009-12-05T16:41:08Z2009-12-05T16:41:08Z<p>Based on the question</p>
<pre><code>SELECT B.description FROM
A
INNER JOIN
B ON A.ID = B.refId
WHERE
A.ID = 2
SELECT B.description FROM
B
WHERE
B.refid = 2
</code></pre>
<p>Otherwise, I don't think we understand the question...</p>
http://stackoverflow.com/questions/320657/when-good-programmers-go-bad/1852544#18525440Answer by gbn for When good programmers go bad!gbn2009-12-05T15:56:57Z2009-12-05T15:56:57Z<p><a href="http://www.simple-talk.com/community/blogs/philfactor/archive/2006/03/20/610.aspx" rel="nofollow">Dull John vs Clever John</a> (from Simple_Talk)</p>
<p>Read it through, it reminds me of "Clever John"...</p>
http://stackoverflow.com/questions/1843121/objectid-of-object-in-another-database-how-to-find-database-id-or-name-fully-q/1851792#18517920Answer by gbn for OBJECT_ID of object in another database - how to find database ID or name/fully qualified object name?gbn2009-12-05T10:18:10Z2009-12-05T10:18:10Z<p>You should be able to do this:</p>
<pre><code>SELECT
name
FROM
AnotherDB.sys.objects --changes context
WHERE
object_id = OBJECT_ID('AnotherDB.ASchema.ATable')
</code></pre>
<p>This is what you effectively do with <code>OBJECT_ID('AnotherDB.ASchema.ATable')</code></p>
<p>This means that you could rely on dbname.sys.objects and avoid confusion with metadata functions.</p>
<p>Note: the <a href="http://msdn.microsoft.com/en-us/library/ms174365%28SQL.90%29.aspx" rel="nofollow">new Catalog views</a> are designed to be used and not change from version to version, as per the link. In the old days, it was consider bad practice to use system tables but the stigma still remains.
So, you can safely rely on sys.objects rather that the metadata functions.</p>
http://stackoverflow.com/questions/467513/at-some-point-in-your-career-with-sql-server-does-parameter-sniffing-just-jump-ou/1851765#18517652Answer by gbn for At some point in your career with SQL Server does parameter sniffing just jump out and attack?gbn2009-12-05T10:04:52Z2009-12-05T10:11:15Z<p>Not quite an answer, but I'll share my experience.</p>
<p>Parameter sniffing took a few years of SQL Server to come and bite me, when I went back to Developer DBA after moving away to mostly prod DBA work. I understood more about the engine, how SQL works, what was best left to the client etc and I was a better SQL coder.</p>
<p>For example, dynamic SQL or CURSORs or just plain bad SQL code probably won't ever suffer parameter sniffing. But better set programming or how to avoid dynamic SQL or more elegant SQL more likely will.</p>
<p>I noticed it for complex search code (plenty of conditionals) and complex reports where parameter defaults affected the plan. When I see how less experienced developers would write this code, then it won't suffer parameter sniffing.</p>
<p>In any event, I prefer parameter masking to WITH RECOMPILE. Updating stats or indexes forces a recompile anyway. But why recompile all the time? I've answered elsewhere to one of your questions with a link that mentions parameters are sniffed during compilation, so I don't have faith in it either.</p>
<p>Parameter masking is an overhead, yes, but it allows the optimiser to evaluate the query case by case, rather than blanket recompiling. Especially with statement level recompilation of SQL Server 2005</p>
<p>OPTIMISE FOR UNKNOWN in SQL Server 2008 also appears to do exactly the same thing as masking. My SQL Server MVP colleague and I spent some time investigating and came to this conclusion.</p>
http://stackoverflow.com/questions/1848686/now-that-i-have-the-report-viewer-working-in-local-mode-how-do-i-set-the-default/1848820#18488201Answer by gbn for Now that I have the report viewer working in Local mode, how do I set the default render method?gbn2009-12-04T18:31:45Z2009-12-04T18:31:45Z<p>You use the <a href="http://msdn.microsoft.com/en-us/library/ms251839%28VS.80%29.aspx" rel="nofollow">LocalReport.Render method</a>.</p>
<p>I've forgotten exact details but here is a <a href="http://weblogs.asp.net/rajbk/archive/2006/03/02/How-to-render-client-report-definition-files-%5F28002E00%5Frdlc%5F2900%5F-directly-to-the-Response-stream-without-preview.aspx" rel="nofollow">PDF render</a> I found</p>
http://stackoverflow.com/questions/1846509/problem-with-indexed-view-msql/1846778#18467781Answer by gbn for Problem with indexed view msql gbn2009-12-04T12:50:00Z2009-12-04T12:50:00Z<p>Try <code>GROUP BY ColumnC, ColumnA % ColumnB</code> ?</p>
<p>From your link:</p>
<blockquote>
<p>..cannot contain... An expression on a column used in the GROUP BY clause, or an expression on the results of an aggregate.</p>
</blockquote>
<p>I think this means you can't modulo on your group by columns. However, you should be able to do the expression in the GROUP BY and simply repeat in the select clause</p>
http://stackoverflow.com/questions/1846493/i-need-an-alternative-to-server-based-reporting-services/1846514#18465141Answer by gbn for I need an alternative to server based Reporting Servicesgbn2009-12-04T11:56:57Z2009-12-04T11:56:57Z<p>Try a <a href="http://www.gotreportviewer.com/" rel="nofollow">ReportViewer control</a> in local mode. No SSRS install needed</p>
http://stackoverflow.com/questions/1845730/things-to-remember-while-doing-code-review-of-stored-procedures-in-sql-server/1846501#18465010Answer by gbn for Things to remember while doing code review of Stored Procedures in SQL Servergbn2009-12-04T11:54:26Z2009-12-04T11:54:26Z<p>The only hard and fast rule above is "Prefix dbo. before a table name". Even then, it should be prefix the schema.</p>
<p>For example:</p>
<ul>
<li><p>ISNULL or COALESCE?</p></li>
<li><p>A JOIN can not be optimal by itself. It's part of a query (DISTINCT/JOIN vs EXISTS vs IN, indexes, function on column, datatype precedence, SELECT * etc)</p></li>
</ul>
<p>Other that that, do you have a template or standard? With your SET NOCOUNT, SET XACT_ABORT, TRY/CATCH, transaction handling etc</p>
<p>The question itself is too broad, sorry</p>
http://stackoverflow.com/questions/1843222/do-link-tables-need-a-meaningless-primary-key-field/1845070#18450700Answer by gbn for Do link tables need a meaningless primary key field?gbn2009-12-04T05:39:34Z2009-12-04T05:39:34Z<p>The correct answer is:</p>
<ul>
<li>Primary key is <code>('table1fk' , 'table2fk')</code></li>
<li>Another index on <code>('table2fk' , 'table1fk')</code></li>
</ul>
<p>Because:</p>
<ul>
<li>You don't need an index on table1fk or table2fk alone: the optimiser will use the PK</li>
<li>You'll most likely use the table "both" ways</li>
<li>Adding a surrogate key is only needed because of braindead ORMs</li>
</ul>
http://stackoverflow.com/questions/1843771/how-do-i-create-a-user-account-in-sql-server-2000/1845047#18450471Answer by gbn for How do I create a user account in SQL Server 2000?gbn2009-12-04T05:31:45Z2009-12-04T05:31:45Z<p>Basically, you'll have to run the system stored proc <a href="http://msdn.microsoft.com/en-us/library/aa259567%28SQL.80%29.aspx" rel="nofollow">sp_addlogin</a>.</p>
<p>See Example "A" in the link.</p>
http://stackoverflow.com/questions/1842126/call-tracert-and-ping-from-sql-and-put-the-result-in-sql-table/1842182#18421820Answer by gbn for call tracert and ping from sql and put the result in sql tablegbn2009-12-03T19:08:07Z2009-12-03T19:08:07Z<p>Can you not do this in client code?</p>
<p>If not, you'll have to use xp_cmdshell with string manipulation (especially to parse tracert) or CLR code.</p>
http://stackoverflow.com/questions/1841915/sql-difference-betweeen-decimal-and-numeric/1841934#18419342Answer by gbn for SQL, difference betweeen DECIMAL and NUMERICgbn2009-12-03T18:33:22Z2009-12-03T18:45:34Z<p>They are synonyms, no difference at all. </p>
<p>At least <strike>on SQL Server</strike> in the ANSI SQL standards.
This <a href="http://stackoverflow.com/questions/759401/is-there-any-difference-between-decimal-and-numeric-in-ms-sql/759606#759606">SO answer shows</a> some difference in ANSI but I suspect in implementation they are the same</p>
http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1840974#18409744Answer by gbn for Can someone copyright a SQL query?gbn2009-12-03T16:12:23Z2009-12-03T16:12:23Z<p>Spend the $500 on a solicitor's letter</p>
<p>My 2 pennies is <em>at most</em> he can ask you leave his name in if you reuse his code (which is quite common, no?</p>
http://stackoverflow.com/questions/1838429/create-a-global-static-variable-in-sql-server/1838451#18384510Answer by gbn for Create a global static variable in SQL Server?gbn2009-12-03T08:22:57Z2009-12-03T08:22:57Z<p>Not a global variable.</p>
<p>There's chance you can define a global UDF like you can create a "system" stored proc (starts "sp" in master), but I've not tried it.</p>
<p>Note:</p>
<p>Even <code>DECLARE @@DefaultValue bit</code> is actually local:</p>
<p><code>@</code> means local variable, identifier is <code>@DefaultValue</code></p>
<p>It's not really global: try <code>SELECT @@DefaultValue</code> from 2 another query window</p>
http://stackoverflow.com/questions/1838276/problem-with-cte/1838290#18382903Answer by gbn for Problem with CTEgbn2009-12-03T07:38:42Z2009-12-03T07:46:46Z<p>Exactly what it says:</p>
<p><code>'name1'</code> has a different data type to <code>'name' + CAST((rn+1) as varchar(255))</code></p>
<p>Try this (untested)</p>
<pre><code>;with cte as
(
select 1 as rn, CAST('name1' as varchar(259)) as nm
union all
select rn+1,nm = 'name' + CAST((rn+1) as varchar(255))
from cte a where rn<10)
select * from cte
</code></pre>
<p>Basically, you have to ensure the length matches too. For the recursive bit, you may have to use <code>CAST('name' AS varchar(4))</code> if it fails again</p>
http://stackoverflow.com/questions/1836713/cant-log-in-to-sql-server-2008-management-studio/1837997#18379971Answer by gbn for Can't log in to SQL Server 2008 Management Studiogbn2009-12-03T06:13:19Z2009-12-03T06:13:19Z<p>The easiest way to do this is via command line. You keep opening connections using SSMS that fail...</p>
<p>Using command line you'll have one connection and <strong>delimit the login name correctly: "[SVR\USR]"</strong></p>
<pre><code>sqlcmd -S InstanceName -d master -E -Q"ALTER LOGIN [SVR\USR] WITH DEFAULT_DATABASE = master"
</code></pre>
<p>or replace <code>-E</code> with <code>-U SQLLogin -P Password</code> if you have a SQL login handy</p>
http://stackoverflow.com/questions/1835605/natural-language-processing-find-obscenities-in-english/1835666#18356665Answer by gbn for Natural Language Processing: Find obscenities in English?gbn2009-12-02T20:43:33Z2009-12-02T20:56:50Z<p>A huge list and think of the target audience. Is there 3rd party service that you can use that specialises in this rather than rolling your own?</p>
<p>Some quick thoughts:</p>
<ul>
<li>The <a href="http://en.wikipedia.org/wiki/Scunthorpe%5FProblem" rel="nofollow">Scunthorpe</a> problem (and follow the links to "<a href="http://en.wikipedia.org/wiki/Swear%5Ffilter" rel="nofollow">Swear filter</a>" for more)</li>
<li>British or American English? fanny, fag etc</li>
<li>Political correctness: "black" or "Afro-American"?</li>
</ul>
<p>Edit:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Controversies%5Fabout%5Fthe%5Fword%5F%22niggardly%22" rel="nofollow">Be very careful</a> </li>
</ul>
http://stackoverflow.com/questions/1869753/maximum-size-for-a-sql-server-query-in-clause-is-there-a-better-approach/1869810#1869810Comment by gbn on Maximum size for a SQL Server Query? IN clause? Is there a Better Approachgbn2009-12-08T21:02:51Z2009-12-08T21:02:51Z"stack size": that's the error I could not rememberhttp://stackoverflow.com/questions/1869527/create-class-from-database/1869542#1869542Comment by gbn on Create class from databasegbn2009-12-08T20:37:13Z2009-12-08T20:37:13Z@All: thanks. I will delete http://stackoverflow.com/questions/1869527/create-class-from-database/1869542#1869542Comment by gbn on Create class from databasegbn2009-12-08T20:18:37Z2009-12-08T20:18:37Z@Orion: Are we still talking about ORMs? Seriously, I thought the whole point was to abstract DB design away fronm clients (in very loose terms)http://stackoverflow.com/questions/1859644/can-i-combine-these-two-sql-queries-into-single-query/1860710#1860710Comment by gbn on Can I combine these two SQL queries into single query?gbn2009-12-08T19:12:42Z2009-12-08T19:12:42Zah, I've not worked with Access like this. And did not know about PROCEDUREs in Access either.http://stackoverflow.com/questions/1867946/sql-wildcard-performance-overhead/1868038#1868038Comment by gbn on Sql wildcard: performance overhead?gbn2009-12-08T16:23:11Z2009-12-08T16:23:11ZTrue, but folk often mention it. of course, for 300 columns and 10 rows.. ;-)http://stackoverflow.com/questions/1863908/sending-emails-from-sql-sever/1863923#1863923Comment by gbn on Sending emails from sql severgbn2009-12-08T06:05:57Z2009-12-08T06:05:57ZYes, this is very old and out of date since SQL Server 2005.http://stackoverflow.com/questions/1864542/how-to-get-date-from-datetime-in-sql/1864557#1864557Comment by gbn on How to get date from datetime in sqlgbn2009-12-08T06:03:20Z2009-12-08T06:03:20ZAnd this too: <a href="http://stackoverflow.com/questions/133081/most-efficient-way-in-sql-server-to-get-date-from-datetime" rel="nofollow" title="most efficient way in sql server to get date from datetime">stackoverflow.com/questions/133081/…</a>http://stackoverflow.com/questions/1862535/sql-get-the-last-6Comment by gbn on Sql Get the last 6 gbn2009-12-07T20:15:07Z2009-12-07T20:15:07ZOne hopes the Day&Time column is "datetime" or similar. Not varchar...?http://stackoverflow.com/questions/1862008/why-is-a-trailing-set-inconsistently-throwing-an-error-in-sql/1862168#1862168Comment by gbn on Why is a trailing SET inconsistently throwing an error in SQL?gbn2009-12-07T19:39:56Z2009-12-07T19:39:56ZGood call. New to me.http://stackoverflow.com/questions/1862282/sql-server-get-view-creation-statement-for-existing-view/1862300#1862300Comment by gbn on Sql Server - Get view creation statement for existing viewgbn2009-12-07T19:38:20Z2009-12-07T19:38:20ZThis would be my answer...http://stackoverflow.com/questions/1859644/can-i-combine-these-two-sql-queries-into-single-query/1860710#1860710Comment by gbn on Can I combine these two SQL queries into single query?gbn2009-12-07T19:37:19Z2009-12-07T19:37:19Zit's for MS Access, not SQL. We're all making the same mistake...http://stackoverflow.com/questions/1835605/natural-language-processing-find-obscenities-in-english/1845543#1845543Comment by gbn on Natural Language Processing: Find obscenities in English?gbn2009-12-07T16:45:40Z2009-12-07T16:45:40ZHow did I know you're a Brit before I looked at your profile... ;-)http://stackoverflow.com/questions/1859644/can-i-combine-these-two-sql-queries-into-single-query/1859661#1859661Comment by gbn on Can I combine these two SQL queries into single query?gbn2009-12-07T15:42:22Z2009-12-07T15:42:22ZOops. True. Simple scalar values... not complex expressions.http://stackoverflow.com/questions/1859644/can-i-combine-these-two-sql-queries-into-single-query/1859661#1859661Comment by gbn on Can I combine these two SQL queries into single query?gbn2009-12-07T12:24:52Z2009-12-07T12:24:52ZWon't work. Default's have to be constants, however this could be wrapped in scalar UDFhttp://stackoverflow.com/questions/1857875/dbnetlibconnectionopen-preloginhandshake-general-network-error-connecti/1858022#1858022Comment by gbn on [DBNETLIB][ConnectionOpen (PreLoginHandshake()).]General network error - connecting to SQL database in VB scriptgbn2009-12-07T07:09:14Z2009-12-07T07:09:14Z@VBScripter: can you ping 127.0.0.1? are these server configured for encrpytion?