Viewing 15 posts - 6,226 through 6,240 (of 26,490 total)
dwilliscp (7/25/2014)
July 25, 2014 at 9:53 am
Okay, I still have to ask. Are you sure there is data in all three tables?
July 25, 2014 at 9:47 am
crmitchell (7/25/2014)
Lynn Pettis (7/25/2014)
crmitchell (7/25/2014)
Coderx7 (7/24/2014)
Difference between SQL Server and Oracle.
If you want to treat the loop inserting 1000 rows of data as a single transaction in SQL Server you...
July 25, 2014 at 8:28 am
rajemessage 14195 (7/25/2014)
two server can have same timezone and they can get updated from internet also, but will they keep same datetime uptothe second over time.yours sincerely
There is always the...
July 25, 2014 at 8:12 am
crmitchell (7/25/2014)
Coderx7 (7/24/2014)
Evil Kraig F (7/24/2014)
Coderx7 (7/24/2014)
I really cant get the part to insert 1000 rows at once! How is that even possible? is it mot dangerous ? since it...
July 25, 2014 at 8:04 am
edit: Never mind, reread the post and saw that if the TOP 100 was removed the query ran.
July 24, 2014 at 6:46 pm
The first year of the league it was 16 teams. Starting with the second year Dan dropped it to 12 teams. He would be the one to explain...
July 24, 2014 at 1:40 pm
One thing to remember about Oracle and SQL Server, they are not the same. The internals are different, and there for how the operate is different.
For example, the following...
July 24, 2014 at 1:23 pm
ksrikanth77 (7/23/2014)
Sorry Lynn,I replaced the # while formatting the text to update in the Site, I am using #temp tables in the query.
Well, you changed the entire meaning of the...
July 23, 2014 at 5:02 pm
First, you aren't using actual temporary tables but permanent tables as temporary tables.
Try this:
Begin
SELECT
A.[Entry No_],
A.[G_L Account No_],
A.[Gen_ Prod_...
July 23, 2014 at 4:14 pm
shah_khan_1289 (7/23/2014)
create proc createSp1(@acc varchar(20),@columnname varchar(25))
as
declare @value flaot;
set @query='select top 1 @value='+@columnname+' distict where DISTRICT='+@District;
-- select @query;
EXEC sp_executesql @query,N'@value nvarchar OUTPUT',@value OUTPUT;
select @value...
July 23, 2014 at 3:36 pm
Thought I'd try and see if there was an alternative:
create table #phoneNums (phone varchar(50));
insert into #phoneNums values ('800-555-1212');
insert into #phoneNums values ('888-555-1212');
insert into #phoneNums values ('336-555-1212');
insert into #phoneNums values ('804-555-1212');
insert...
July 23, 2014 at 3:27 pm
This:
create table #phoneNums (phone varchar(50));
insert into #phoneNums values ('800-555-1212');
insert into #phoneNums values ('888-555-1212');
insert into #phoneNums values ('336-555-1212');
insert into #phoneNums values ('804-555-1212');
insert into #phoneNums values ('652-555-1212');
insert into #phoneNums values ('704-555-1212');
insert into...
July 23, 2014 at 3:09 pm
pmscorca (7/23/2014)
I repeat that I know that SQL Server 2014 has rights to downgrade.
Simply, I want to know how technically I...
July 23, 2014 at 11:22 am
Eirikur Eiriksson (7/23/2014)
pmscorca (7/23/2014)
Hi,I need to know how I can downgrade to a SQL Server 2014 installation to SQL Server 2012.
Thanks
First suggestion would be to install the SQL 2012 alongside...
July 23, 2014 at 9:24 am
Viewing 15 posts - 6,226 through 6,240 (of 26,490 total)