Viewing 15 posts - 31 through 45 (of 98 total)
Here is the build script:
CREATE TABLE [dbo].[item](
[item_urn] [int] NOT NULL,
[cat_urn] [int] NOT NULL,
[item_mnc] [varchar](10) NOT NULL,
[item_descr] [varchar](50) NULL,
[item_active] [char](1) NULL,
[item_device] [varchar](20) NULL,
[item_type] [char](1) NULL,
[dept_urn] [int] NULL,
[modified_by] [varchar](16) NULL,
[mod_timestamp] [datetime] NULL,
[mnc_descr_mod]...
April 8, 2013 at 8:55 pm
Good reply! You are right I should put in a minimum page count. Still annoying that it is taking so long. I would of said the same...
April 8, 2013 at 8:08 pm
Is level 8 published anywhere?
April 6, 2013 at 10:36 pm
Found those as well 🙂
Using those to validate and flush out my points.
This presentation is going to be brutal for the listeners if I don't clean it up...
April 5, 2013 at 1:29 pm
Thanks Gail 🙂
I had found that on my hunt for more information...I am actually doing a presentation on the T-LOG...
Per Sean McCown, I purposefully selected a rough topic...
April 5, 2013 at 9:43 am
Just got back from a little walk and that is what I was thinking Gail (not the smart stuff, but that BoL is probably under stating the conditions)...
Oh well...
I will...
April 5, 2013 at 9:33 am
Found this on books online:
Transactional Replication and the Transaction Log
If a database includes one or more transactional publications, the log is not truncated until all transactions relevant to the publications...
March 21, 2013 at 10:44 am
Is it possible that they have multiple per one day? You are counting distinct days. Why not just do COUNT(*).
What duplicates are you trying to rid yourself of?
February 21, 2013 at 2:46 pm
Not pretty, but it seems to work for me:
I created the following table to help with data type declaration:
declare @DataTypeVariable table
(
name varchar(30),
system_type_id int,
user_type_id int,
max_length char(1),
precision char(1),
scale char(1),
primary key (system_type_id,...
August 9, 2012 at 2:25 pm
Not sure it is a good idea, but my way around this is by creating a table with every data type to get the defaults. Then do a comparison...
August 9, 2012 at 11:31 am
Fantastic thanks for the feedback!
July 26, 2012 at 11:43 am
Is it safe to put a delete switch in as well?
CREATE TABLE TestTable (id TINYINT PRIMARY KEY IDENTITY(1,1), name NVARCHAR(10));
INSERT INTO TestTable (name) VALUES ('a')
GO
CREATE PROCEDURE SaveTestTable @id TINYINT, @name...
July 26, 2012 at 11:18 am
I think you answered my question. I have never used the term "upsert", but that is exactly what I am doing.
"Generic Save" was the only thing I could come...
July 26, 2012 at 9:24 am
These seems to work, but I am getting different results when linked servers are involved...
create table #t (a varchar(10))
declare @sql nvarchar(max) = '';
begin try
set @sql =...
July 24, 2012 at 3:37 pm
Why I am always so excited to find stuff to post here.
The feedback really is amazing stuff!
July 12, 2012 at 2:47 pm
Viewing 15 posts - 31 through 45 (of 98 total)