Viewing 15 posts - 616 through 630 (of 707 total)
marees.inspire (5/14/2009)
getting the error
"Cannot obtain the schema rowset "DBSCHEMA_TABLES_INFO" for
OLE DB provider "SQLNCLI10" for linked server "LinkedServer".
The provider supports the interface, but returns a failure code...
May 14, 2009 at 5:38 am
Steve Jones - Editor (5/5/2009)
you need to stop shrinking it.
Can you please explain why..? (bcse it needs to expand it everytime.?). I do shrink log regulerly. Please suggest me a...
May 12, 2009 at 1:24 am
Let me know this one ---- Suppose my DB gets corrupted(after taking the backup)? For restoring the database which files i required to have? Is the backup file *.bak is...
May 12, 2009 at 1:17 am
It doesn't come in profiler when executed from APPLICATION (Col Fusion). That's the problem.
What about SQL debugger in VS-2005/2008..?
Thanks..
May 5, 2009 at 11:31 pm
...And once you make a column as identity, no need to supply any value for that column while inserting.....
April 30, 2009 at 6:39 am
But this is not what i want. I just want to know all the rights granted to the user like create database or create table, etc when ID/Name is passed....
April 30, 2009 at 6:25 am
gaurav (4/29/2009)
when it was created the identity was 'no' (false).
because of that i am unable to insert any data...
April 30, 2009 at 12:22 am
You're doing this in Management Studio? Are you connecting to an instance on your local machine or on a network server? Try looking on the "Network Servers" tab rather than...
April 29, 2009 at 11:45 pm
I am not sure....still you can try with below query.
Hope GROP BY wont make any diference.
SELECT [Job Date], NextBusinessDay, Branch, [Deliver Time], [Job Type]
, [Company Name], [Site Location]
, Equipment=case
when ...
April 29, 2009 at 5:05 am
but my requirement is
like this:
declare @var1 varcahr(300)
set @var1=tablename from firsttable;
exec('select column1'+'_'+'column2 from'+@var1')
try the below query...
declare @var1 varcahr(300)
set @var1=tablename from firsttable;
declare @qry nVarchar(500)
Set @qry='select column1'+'_'+'column2 from'+@var1'
exec(@qry)
by the way it's...
April 29, 2009 at 3:06 am
Update A
Set A.statutSpecifique=B.dpStatut
From table1 A
Inner Join @tempTableStatutDp B On A.id=B.dpId
April 29, 2009 at 12:41 am
select tablename from secondtable;
select column1+'-'+column2 from tablename;( here table name is from above query).
You can take the result of first query into a variable (@tbname).
Make dynamic query for the...
April 28, 2009 at 11:55 pm
Thanks Chirag, this is wot exaclty I wanted.
Cheers.
April 27, 2009 at 6:40 am
Thank you somuch Gila. Think this is I what I was looing for.
I will go thru it..
April 13, 2009 at 3:05 am
Viewing 15 posts - 616 through 630 (of 707 total)