<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming</id>
  <title type="text">microsoft.public.sqlserver.programming Google Group</title>
  <subtitle type="text">
  Microsoft SQL Server newsgroup.
  </subtitle>
  <link href="/group/microsoft.public.sqlserver.programming/feed/atom_v1_0_msgs.xml" rel="self" title="microsoft.public.sqlserver.programming feed"/>
  <updated>2009-11-09T01:05:55Z</updated>
  <generator uri="http://groups.google.com.au" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>TheSQLGuru</name>
  <email>kgbo...@earthlink.net</email>
  </author>
  <updated>2009-11-09T01:05:55Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/d6b4c85859bb244f/c9c5bbef7a448f67?show_docid=c9c5bbef7a448f67</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/d6b4c85859bb244f/c9c5bbef7a448f67?show_docid=c9c5bbef7a448f67"/>
  <title type="text">Re: Sql Server on VMWare</title>
  <summary type="html" xml:space="preserve">
  If you need any performance at all I HIGHLY recommend you get an experienced &lt;br&gt; consultant in to help provision/configure your system.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Andrew J. Kelly</name>
  <email>sqlmvpnooos...@shadhawk.com</email>
  </author>
  <updated>2009-11-09T00:35:48Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/4d04c251bc2519dc?show_docid=4d04c251bc2519dc</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/4d04c251bc2519dc?show_docid=4d04c251bc2519dc"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  Mike, &lt;br&gt; The transaction log entries are crucial to peak performance when it comes to &lt;br&gt; writes. Essentially if one insert is held up due to bottlenecks on writing &lt;br&gt; to the log file so will all other transactions that will also be writing at &lt;br&gt; that time. The more concurrent writes you have the more the potential for a
  </summary>
  </entry>
  <entry>
  <author>
  <name>jh</name>
  <email>nie_spamuj...@radio.kielce.pl</email>
  </author>
  <updated>2009-11-08T21:15:24Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/b5f3cd701d9e41f9/8b2f6798a6f65d8e?show_docid=8b2f6798a6f65d8e</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/b5f3cd701d9e41f9/8b2f6798a6f65d8e?show_docid=8b2f6798a6f65d8e"/>
  <title type="text">Re: SQL 2008 - FILESTREAM OpenSQLFilestream invalid handle</title>
  <summary type="html" xml:space="preserve">
  Uzytkownik &amp;quot;Erland Sommarskog&amp;quot; &amp;lt;esq...@sommarskog.se&amp;gt; napisal w wiadomosci &lt;br&gt; OK. Here is declaration of OpenSqlFilestream: &lt;br&gt; &amp;lt;code&amp;gt; &lt;br&gt; function OpenSqlFilestream( &lt;br&gt; Path: PChar; &lt;br&gt; Access: Cardinal; &lt;br&gt; Options: Cardinal; &lt;br&gt; txnToken: TtxnToken; &lt;br&gt; txnTokenLenght: Cardinal; &lt;br&gt; AllocationSize: PInt64): THandle stdcall; external &#39;sqlncli10.dll&#39;;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Kalen Delaney</name>
  <email>please_reply_on_newsgro...@domain.com</email>
  </author>
  <updated>2009-11-08T21:00:28Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/f763a44d386620a1/938b92700435eebe?show_docid=938b92700435eebe</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/f763a44d386620a1/938b92700435eebe?show_docid=938b92700435eebe"/>
  <title type="text">Re: creating table on secondery filegroup</title>
  <summary type="html" xml:space="preserve">
  In SQL 2008, you can INSERT into an existing table, using a nested SELECT, &lt;br&gt; with the same performance as SELECT INTO (in many cases). So you can create &lt;br&gt; the table on your preferred filegroup, and then copy the rows from the other &lt;br&gt; table into it. Check the BOL for full details.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Erland Sommarskog</name>
  <email>esq...@sommarskog.se</email>
  </author>
  <updated>2009-11-08T20:07:31Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/b5f3cd701d9e41f9/88153ac3ec949988?show_docid=88153ac3ec949988</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/b5f3cd701d9e41f9/88153ac3ec949988?show_docid=88153ac3ec949988"/>
  <title type="text">Re: SQL 2008 - FILESTREAM OpenSQLFilestream invalid handle</title>
  <summary type="html" xml:space="preserve">
  I suspect this is a &amp;quot;how do I do this in Delphi&amp;quot;, which is not easy to &lt;br&gt; assist with, since I don&#39;t know Delphi. I would guess that you have some &lt;br&gt; error around one of the parameters to OpenSqlFilestream or the &lt;br&gt; import of it. &lt;br&gt; Could you post the code, including how you import OpenSqlFilestream? &lt;br&gt; No promises, but maybe we are able to spot something.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Erland Sommarskog</name>
  <email>esq...@sommarskog.se</email>
  </author>
  <updated>2009-11-08T19:09:17Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/ca754d479ccc67ea?show_docid=ca754d479ccc67ea</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/ca754d479ccc67ea?show_docid=ca754d479ccc67ea"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  More or less. BULK INSERT uses OLE DB, and below the covers there are &lt;br&gt; is a command INSERT BULK, which you can see in a Profiler trace. &lt;br&gt; But keep in mind that while they are similar, they are to some extent &lt;br&gt; different implementations, and there are subtle differences. Sometimes &lt;br&gt; BCP accepts a file that BULK INSERT barfs at, or vice versa.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Dan Guzman</name>
  <email>guzma...@nospam-online.sbcglobal.net</email>
  </author>
  <updated>2009-11-08T18:22:08Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/f763a44d386620a1/fdc511ee51717491?show_docid=fdc511ee51717491</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/f763a44d386620a1/fdc511ee51717491?show_docid=fdc511ee51717491"/>
  <title type="text">Re: creating table on secondery filegroup</title>
  <summary type="html" xml:space="preserve">
  SELECT...INTO creates the table on the default filegroup. You&#39;ll need to &lt;br&gt; mark the secondary filegroup as the default one beforehand: &lt;br&gt; ALTER DATABASE MyDatabase &lt;br&gt; MODIFY FILEGROUP [MySecondaryGroup] DEFAULT;
  </summary>
  </entry>
  <entry>
  <author>
  <name>David Portas</name>
  <email>remove_before_replying_dpor...@acm.org</email>
  </author>
  <updated>2009-11-08T18:15:27Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/d6b4c85859bb244f/6256113e7e011040?show_docid=6256113e7e011040</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/d6b4c85859bb244f/6256113e7e011040?show_docid=6256113e7e011040"/>
  <title type="text">Re: Sql Server on VMWare</title>
  <summary type="html" xml:space="preserve">
  &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.vmware.com/files/pdf/solutions/sql_server_virtual_bp.pdf&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.vmware.com/files/pdf/SQLServerWorkloads.pdf&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Mike23</name>
  <email>_no_s...@_no_spam.com</email>
  </author>
  <updated>2009-11-08T17:06:46Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/36f9a38833fdec3e?show_docid=36f9a38833fdec3e</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/36f9a38833fdec3e?show_docid=36f9a38833fdec3e"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  Thanks. I am aware of this but was just speculating that &amp;quot;SqlBulkCopy&amp;quot; is &lt;br&gt; probably a wrapper for BULK INSERT or some other high-volume (native) SQL &lt;br&gt; Server statement (possibly internal to MSFT only). My original issue however &lt;br&gt; is whether running &amp;quot;SqlBulkCopy&amp;quot; (or BULK INSERT directly) will have an
  </summary>
  </entry>
  <entry>
  <author>
  <name>Roy Goldhammer</name>
  <email>r...@top.com</email>
  </author>
  <updated>2009-11-08T16:54:32Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/f763a44d386620a1/aa7bf01744afa1ef?show_docid=aa7bf01744afa1ef</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/f763a44d386620a1/aa7bf01744afa1ef?show_docid=aa7bf01744afa1ef"/>
  <title type="text">creating table on secondery filegroup</title>
  <summary type="html" xml:space="preserve">
  hello there &lt;br&gt; i have database with two filegroups and for each filegroup there is diffrent &lt;br&gt; file name &lt;br&gt; How can I use Select .. into and create new table on secondery filegroup?
  </summary>
  </entry>
  <entry>
  <author>
  <name>Dan Guzman</name>
  <email>guzma...@nospam-online.sbcglobal.net</email>
  </author>
  <updated>2009-11-08T15:12:29Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/385ae96e1e853ef0?show_docid=385ae96e1e853ef0</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/385ae96e1e853ef0?show_docid=385ae96e1e853ef0"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  BULK INSERT is a Transact-SQL statement whereas the SqlBulkCopy class (and &lt;br&gt; its unmanaged ODBC/OLEDB cousins) are native client APIs. Unlike BULK &lt;br&gt; INSERT, the client APIs allow you to load directly from program variables.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Mike23</name>
  <email>_no_s...@_no_spam.com</email>
  </author>
  <updated>2009-11-08T12:48:17Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/a80ecf28726ddbae?show_docid=a80ecf28726ddbae</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/a80ecf28726ddbae?show_docid=a80ecf28726ddbae"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  Thanks. Can you also briefly elaborate on my last response to him (just &lt;br&gt; posted). Appreciate your help. &lt;br&gt; Not familir with this but probably not necessary for my needs unless it &lt;br&gt; solves some problem specificically related to this issue (resource &lt;br&gt; exhaustion). The bulk insert I tested (&amp;quot;SqlBulkCopy&amp;quot; in .NET) is very fast
  </summary>
  </entry>
  <entry>
  <author>
  <name>Mike23</name>
  <email>_no_s...@_no_spam.com</email>
  </author>
  <updated>2009-11-08T12:34:21Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/56bd728712978727?show_docid=56bd728712978727</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/56bd728712978727?show_docid=56bd728712978727"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  Thanks for you help and I agree. It&#39;s hard to appreciate when you&#39;re not &lt;br&gt; really familiar with the details. In this case however it&#39;s a fairly simple &lt;br&gt; situation. Assuming 10,000 customers in the short-term, 100,000 long term, &lt;br&gt; and each customer will be uploading a single file just once every few weeks
  </summary>
  </entry>
  <entry>
  <author>
  <name>Mike23</name>
  <email>_no_s...@_no_spam.com</email>
  </author>
  <updated>2009-11-08T12:09:16Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/5cb508bbab32292e?show_docid=5cb508bbab32292e</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/5cb508bbab32292e?show_docid=5cb508bbab32292e"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  Thanks. I&#39;m actually using the &amp;quot;SqlBulkCopy&amp;quot; class (assuming you&#39;re familiar &lt;br&gt; with .NET) and this presumably wraps BULK INSERT (still researching things). &lt;br&gt; I also took a quick look at ROWS_PER_BATCH and this may prove useful (thanks &lt;br&gt; for pointing this out). If possible however, I&#39;d like to insert all data in
  </summary>
  </entry>
  <entry>
  <author>
  <name>Uri Dimant</name>
  <email>u...@iscar.co.il</email>
  </author>
  <updated>2009-11-08T10:52:53Z</updated>
  <id>http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/c75d2b5a7d4f7d81?show_docid=c75d2b5a7d4f7d81</id>
  <link href="http://groups.google.com.au/group/microsoft.public.sqlserver.programming/browse_thread/thread/141b61d6627f0e18/c75d2b5a7d4f7d81?show_docid=c75d2b5a7d4f7d81"/>
  <title type="text">Re: Transaction load</title>
  <summary type="html" xml:space="preserve">
  Hi &lt;br&gt; As Andrew said to separate LOG and DATA files must be e first step &lt;br&gt; Have you considered using SSIS Package to insert the data from the files , &lt;br&gt; it hs very nice feature named &#39;fast load&#39;
  </summary>
  </entry>
</feed>
