Viewing 15 posts - 1,036 through 1,050 (of 1,169 total)
arthi.anan (10/24/2012)
I got it right..
Here in this procedure i have a problem with date formats. In my data the format is DD-MM-YYYY (13-Aug-1951)
I should declare in my temp...
October 24, 2012 at 1:47 am
--
-- Side Effects:Import/Export of BLOBS
--
--This code is copyrighted and has-- limited warranties.Please see http://
-- http://www.1SQLStreet.com/xq/ASP/txtCodeId.498/
-- lngWId.5/qx/vb/scripts/ShowCode.htm--for details.--**************************************
-- ...
October 20, 2012 at 5:48 am
arthi.anan (10/19/2012)
Thanks a lot Igor....And here in the script the values are hardcoded.
How can i fetch the values from temp table and then so the splitting?
You have your table with...
October 19, 2012 at 5:31 am
Nils Gustav Stråbø (10/19/2012)
I know that SQL Server enforces unique constraints by creating unique indexs, but I wasn't sure if this...
October 19, 2012 at 3:10 am
Solution with set-based statement
select * from temp
insert into employee(employee_id,first_name,middle_name,last_name,title,sex)
select employee_id,first_name,middle_name,last_name,title,sex
from temp
insert into employee_details(employee_id,from_date,to_date,grade_code,manager_id)
select employee_id,from_date,to_date,grade_code,manager_id
from temp
select * from employee
select * from employee_details
Regards
IgorMi
October 19, 2012 at 2:41 am
Hi,
Try this worked fine on my local database.
CREATE TABLE [dbo].[temp](
[employee_id] [char](7) NOT NULL,
[first_name] [char](50) NOT NULL,
[middle_name] [char](50) NOT NULL,
[last_name] [char](50) NOT NULL,
[title] [char](5) NOT NULL,
[sex] [char](1) NOT NULL,
--add here more...
October 19, 2012 at 2:36 am
Hi,
There are too many tools for that. If you need it for some days just download a trial and compare databases you need. It is more visible and...
October 18, 2012 at 12:19 pm
Oh, I needed it once and used it. It was working fine, but i didn't keep on digging about the dis/advantages...
If you find out something please share it...
Thanks
IgorMi
October 18, 2012 at 3:07 am
Hi,
You have plenty of them. Find them on
http://www.idera.com/Content/Home.aspx
...
Some are free, some are trial and/or restricted with functionality...
you can find articles about monitoring server performances...
October 18, 2012 at 2:34 am
Hi,
Yes it is. Check this article: http://www.sqlservercentral.com/articles/MySQL/88366/
Regards
IgorMi
October 18, 2012 at 2:00 am
beebkhan (10/18/2012)
Table A
TableAID int PRIMARY Key IDENTITY(1,1),
data...
October 18, 2012 at 1:49 am
beebkhan (10/17/2012)
October 17, 2012 at 1:25 pm
Hi, check you use a user that has rights on the table you're trying to update.
declare @sql varchar(1000)
SET @sql = 'UPDATE TableA SET image_name = ''NewName''...
October 16, 2012 at 4:57 pm
Viewing 15 posts - 1,036 through 1,050 (of 1,169 total)