Viewing 15 posts - 1 through 15 (of 39 total)
Steve Jones - Editor (5/6/2010)
DROP TABLE dbo.mytable
go
CREATE TABLE mytable( col1 int, colb varchar(20))
GO
INSERT MyTable SELECT 1, 'a'
INSERT dbo.mytable SELECT 2, 'b'
GO
DECLARE @tbl...
May 6, 2010 at 10:04 am
Dan.Humphries (5/6/2010)
May 6, 2010 at 9:47 am
Dan.Humphries (5/6/2010)
May 6, 2010 at 9:39 am
Steve Jones - Editor (5/6/2010)
Couldn't you copy the row back into the table directly, changing the columns?
insert TableA
select ColA+1
...
May 6, 2010 at 9:36 am
That depends almost entirely on the nature, structure and format of the file. There is nothing complicated about float or decimal (though you do have to be set on...
August 28, 2008 at 4:34 pm
Ok, so its like setting up permissions in active directory. I can handle that. Where do I setup the schemas?
April 29, 2008 at 7:49 am
Just when I think I'm starting to get good at this stuff, I come on here and realize I'm not, haha. Schema's, hmm...where do I begin? Would this schema be...
April 25, 2008 at 1:23 pm
I tried configuring the user for sql service service and sql server agent service as administrator but still not working.
I have this procedure working on my physical machine.
April 15, 2008 at 12:57 pm
Also note, this is running on vmware, so I don't know if this would affect it.
April 15, 2008 at 12:25 pm
Line 1:
EXECUTE master.dbo.xp_create_subdir N'C:\SQL Server Backups\test'
If I run the t-sql manually it works (From New Query).
April 15, 2008 at 10:36 am
Cool. Will Truncate Table Drop my foreign keys?
April 8, 2008 at 1:30 pm
So my index in my county table should be the state_code? I really can't think of what I would index in my States table since it just lists each state...
April 4, 2008 at 8:52 am
I guess I must be missing the meaning of index. In my county table I have 1 column called County_Id (primary key, unique identifier), another column with the actual county...
April 4, 2008 at 7:35 am
Ok, I went into my database diagrams and updated a few table relationships and it seems to have fixed the delay. However, they still do not say "Seek" instead of...
April 3, 2008 at 3:30 pm
Viewing 15 posts - 1 through 15 (of 39 total)