Viewing 15 posts - 46 through 60 (of 130 total)
DAMN!!!...I STILL DON'T KNOW WHAT PORK CHOP HAS TO DO WITH SQL. and it is alright that Microsoft Certified Master MVP be wrong once awhile, just like Microsoft once was...
November 28, 2012 at 12:44 pm
For the OP solution this seems one of those times it would actually be ok to use select *. The very challenge is due to changes in the source table...
November 19, 2012 at 3:31 pm
Alright guy,my bad! I didnt intend to use "select * into" anyway, I was lazy typing so just threw out a quick post that caused someone hair stands...
November 19, 2012 at 3:13 pm
I just thought of a solution after posting:
--dump existing data from target table into a temp table
select * INTO #TempTable from TargetTable;
--drop the TargetTable
drop targetTable;
--recreate TargetTable with additional fields from...
November 19, 2012 at 1:21 pm
tina_cpc (10/31/2012)
Hi,Is there task which will be capable of uploading/storing a file in a database which can be greater than 8000 bytes?
Thanks,
tinac99
If it is the first time you think of...
October 31, 2012 at 3:29 pm
Jeff Moden (10/30/2012)
haiao2000 (10/29/2012)
Jeff Moden (10/28/2012)
This can be done pretty easily. Create an SQL Server job to run the proc and have the app kick the job off.
Saying I...
October 30, 2012 at 12:57 pm
Eric M Russell (10/29/2012)
October 29, 2012 at 9:51 am
Jeff Moden (10/28/2012)
This can be done pretty easily. Create an SQL Server job to run the proc and have the app kick the job off.
Saying I have a SQL...
October 29, 2012 at 8:19 am
Jeff Moden (10/28/2012)
This can be done pretty easily. Create an SQL Server job to run the proc and have the app kick the job off.
I thought about this too....
October 28, 2012 at 7:25 pm
Got You! I have been using sp_executeSql, Just want to see if there is a way that I dont know of.
thanks!
GSquared (10/25/2012)
Look...
October 25, 2012 at 9:06 am
it sounds like the exact oposite is true (again it depends) but take the examples below
method #1
create procedure SP1
@p1 int
,@p2 int
,@p3 int
,@p4 int
as
select * from SomeTable
where p1=@p1...
October 22, 2012 at 3:09 pm
Sean Lange (10/22/2012)
harri.reddy (10/22/2012)
they gave me some tables(approx 9) tables and field that they want to fecth only those field.
they all r master table.so do i need to make table...
October 22, 2012 at 2:53 pm
Jeff,
Thank you for all the hard works on this. I hope I would have let you know this in advance so you didnt waste your time on this. I have...
October 22, 2012 at 8:33 am
Luis Cazares (10/17/2012)
declare @Temp table(state varchar(50),county varchar(50), city varchar(50),Action varchar(50), ActDateTime DateTime)
insert into @Temp(State,County,City,Action, ActDateTime)
select 'Texas','Harris','Houston','Census Taken','11/12/2010 00:00:00' Union...
October 17, 2012 at 5:23 pm
Oh well here is one of the solution. If you have a faster solution, I would love to know it
Thanks!
declare @Temp table(state varchar(50),county varchar(50), city varchar(50),Action varchar(50), ActDateTime...
October 17, 2012 at 3:49 pm
Viewing 15 posts - 46 through 60 (of 130 total)