Viewing 15 posts - 20,821 through 20,835 (of 59,072 total)
It would work as expected if you did your BULK INSERT into a table that already has an IDENTITY column. You would need to either put a view on...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 7:57 pm
Ed Wagner (5/7/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 7:40 pm
marcia.j.wilson (5/7/2015)
Jeff Moden (5/7/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 7:26 pm
Oddly enough, Jim, those are SET based operations being controlled by a loop or "cursor"... just smaller sets. It's a tried and true method for doing (for example) massive...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 6:54 pm
You don't need cursor processing for what you're talking about Jim.
You do bring up a point though. I would have expected an article on "Advanced T-SQL" to better explain...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 5:02 pm
charipg (5/7/2015)
Need a script to create a new role in all databases to cover SP creation/execution, any table data manipulation (insert,...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 4:18 pm
GilaMonster (5/7/2015)
Lynn Pettis (5/7/2015)
GilaMonster (5/7/2015)
Lynn Pettis (5/7/2015)
GilaMonster (5/7/2015)
Ok, I need to write something.Article requests?
How about: Partitioning for performance, what it really means. 😛
This one not good enough? https://www.simple-talk.com/sql/database-administration/gail-shaws-sql-server-howlers/
Hey,...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 4:15 pm
Lynn Pettis (5/7/2015)
Jeff Moden (5/6/2015)
Lynn Pettis (5/6/2015)
ramana3327 (5/6/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 11:08 am
I figured as much. Vendors aren't so helpful.
Can we narrow down the type of performance problem that you're experiencing? For example, are the performance issues on SELECTs, INSERTs,...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2015 at 8:23 pm
ramana3327 (5/6/2015)
Here is the table structure
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[ERRORS](
[Id] [uniqueidentifier] NOT NULL,
[InnerErrorId] [uniqueidentifier] NULL,
[CreatorFK] [uniqueidentifier] NOT NULL,
[Created] [datetime] NOT...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2015 at 8:05 pm
Lynn Hendricks (5/6/2015)
After I was going to post the DDL, I noticed an error in the SQL statement.
And as I fixed that, the xp_cmdshell to create the...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2015 at 8:03 pm
Lynn Pettis (5/6/2015)
ramana3327 (5/6/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2015 at 6:06 pm
SlapShot John (5/6/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2015 at 11:01 am
john.yori 32529 (5/6/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2015 at 10:26 am
At this point, I'd recommend posting the DDL for the stored procedure.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2015 at 9:48 am
Viewing 15 posts - 20,821 through 20,835 (of 59,072 total)