Viewing 15 posts - 1 through 15 (of 33 total)
Thank you, all sample ddl is below
--will create the table
CREATE TABLE [dbo].[Seating](
[id] [int] NULL,
[cube] [int] NULL,
[capacity] [int] NULL
) ON [PRIMARY]
GO
--will insert 3 rows into the table
INSERT INTO dbo.Seating
...
June 25, 2013 at 2:18 pm
Thanks Lowell!! I will give this a try in a loop and see where it takes me.
March 5, 2012 at 4:20 pm
I actually need to generate 2400 files. Each named from a value taken from another column in the same table and ending in .jpg
March 5, 2012 at 4:17 pm
Why not just shrink it with DBCC SHRINKFILE commands and/or create mulitple files?
October 14, 2011 at 12:51 pm
The services just do not start once the server was rebooted. No entries in the sql logs and nothing in events as if the services are not even trying to...
October 14, 2011 at 9:44 am
He replied with it has to do with read/write conflicts and serializibility which I guess my explanation of isolation levels did not cover as well as it could have.
October 5, 2009 at 4:06 pm
All he mentioned was that it was an IT Database analysis class. Does that help or should I ask for more info?
October 5, 2009 at 3:38 pm
Good Call 🙂
Co-Workers homework question that I am embarrassed I did not have the answer to after working as a dba for 15 years but it got me interested...
October 5, 2009 at 2:08 pm
This insert into event_log should insert into Bankruptcy the bayview_loan_number, bankruptcy_id and the max(actual_end_date)
as the new field I created Motion_for_Relief_Filed_Date. If the bayview_loan_number, bankruptcy_id already exist in bankurptcy then based...
February 21, 2009 at 10:48 am
My script to extract data for the Bankruptcy table is chocking on a few fields but the other tables I was able to extract sample data. I hope its posted...
February 20, 2009 at 7:53 pm
Hi,
Thanks, it does make sense and I tried that approach but I am unable to get the value from this statement (especially the fact that I need the max(actual_end_date))
SELECT...
February 20, 2009 at 2:01 pm
Hi,
I had started with the first trigger and 1st field but in testing I am updating all rows and need help with the insert.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
CREATE TRIGGER [dbo].[tiu_bankruptcy_event_log]...
February 20, 2009 at 1:22 pm
Its not that the application wont work, I need the users to be able to connect to the server they are used to without having to connect to server\instancename. Also,...
November 19, 2008 at 8:29 am
Viewing 15 posts - 1 through 15 (of 33 total)