Viewing 15 posts - 14,626 through 14,640 (of 26,486 total)
You are going to need to use dynamic sql to generate the query you need to run using system tables to identify the column names for the table requested.
I don't...
April 18, 2011 at 10:27 am
parthi-1705 (4/18/2011)
Lynn Pettis (4/18/2011)
select
'id: ' + id + ';' +
'name: ' + name + ';' +
...
April 18, 2011 at 10:22 am
parthi-1705 (4/18/2011)
create table #Temp (id int,name varchar(30), surname varchar(30) ,age tinyint)
insert into #Temp values (1, 'John', 'Smith', 20)
insert into #Temp values (2, 'Pen', 'Drive', 14)
Select COL_NAME(OBJECT_ID('#Temp'),...
April 18, 2011 at 10:04 am
May I ask why you need this?
April 18, 2011 at 9:45 am
I believe what you are looking for is this:
create table #TestData (
project char(3),
country varchar(64),
vendor char(4),
...
April 18, 2011 at 12:44 am
April 15, 2011 at 12:22 am
Here is the problem, we can't see from here what you see from there. We have no idea what the job is doing that fails, we have no idea...
April 15, 2011 at 12:18 am
Just a guess, but I'd be checking the server logs and talking to your network people.
This doesn't look like a SQL Server specific error.
April 14, 2011 at 1:12 pm
SanDroid (4/12/2011)
Tom.Thomson (4/12/2011)
CirquedeSQLeil (4/12/2011)
I really thought this dilemma was answered. Are we beating a dead-horse now?If not, what exactly is the debate at this point?
At this point there is...
April 12, 2011 at 12:40 pm
SanDroid (4/12/2011)
You still haven't proven your point. I still see nothing in the code above that supports your position regarding the version store. I have also gone back through the...
April 12, 2011 at 11:34 am
SanDroid (4/12/2011)
Lynn Pettis (4/12/2011)
SanDroid (4/12/2011)
Lynn Pettis (4/12/2011)
April 12, 2011 at 10:52 am
SanDroid (4/12/2011)
Lynn Pettis (4/12/2011)
April 12, 2011 at 10:06 am
SanDroid (4/12/2011)
Lynn Pettis (4/7/2011)
I also found SanDroid and his arguments most interesting, if not totally off in left field somewhere. It is...
April 12, 2011 at 8:11 am
Craig Farrell (4/12/2011)
paul.knibbs (4/12/2011)
David Data (4/11/2011)
Er :ermm: ... does anyone remember when this forum was about SQL Server, and this thread about SQL Injection issues? :Whistling:
The article this...
April 12, 2011 at 1:25 am
djackson 22568 (4/11/2011)
Lynn Pettis (4/11/2011)
April 11, 2011 at 1:13 pm
Viewing 15 posts - 14,626 through 14,640 (of 26,486 total)