Viewing 15 posts - 76 through 90 (of 330 total)
GilaMonster (2/18/2011)
I'm sorry, but unless you're written the T-SQL equivalent of the 'Great American Novel', there's nothing in your code anyone wants to steal. In my experience most of the...
February 18, 2011 at 10:42 am
If you want, then you need to keep the datatype as varchar not as datetime
declare @Var1 datetime
set @Var1='01/01/1752'
Select CONVERT(datetime,@Var1)
declare @Var2 varchar(20)
set @Var2='01/01/1752'
Select CONVERT(Varchar,@Var2)
February 18, 2011 at 10:09 am
Hi,
DECLARE @Table TABLE (Col varchar(20),Col1 int,Col2 numeric(10,2))
Insert into @Table
Values ('1',1,1),('2',2,2),('3',3,3),('4',4,4),('5',5,5)
Select * from @Table
Select AVG(Col1) from @Table
Select AVG(Col2) from @Table
Select AVG(Col2) from @Table --- must fail since...
February 18, 2011 at 5:49 am
Hi
Try this
In the linked Server properties, Server Options page, Connection Timeout (set to 0) and Querry Timeout (set to 3600);
The remote server properties, Connections page, Remote Qquery timeout (set to...
February 17, 2011 at 9:06 am
Rem70Rem (2/17/2011)
We are starting to talk about migrating from 2005 to 2008. The latest version available id 2008R2, right? Do we know what are the plans of Microsoft...
February 17, 2011 at 8:36 am
Hi,
Have a look on "Distributed Queries,Accessing External Data,Optimizing Distributed Queries,Guidelines for Using Distributed Queries" in the Help File you will get some idea about it
February 17, 2011 at 8:28 am
Hi,
Any one have completed 70-451,433 if so how was the questions.
Any suggestions of how we can cover the subject.
Which part needs to be concentrate more (Generally it will be all...
February 17, 2011 at 8:19 am
Hi,
A good start is SQL Server 2008 Upgrade Advisor.
You will be getting some idea.
February 11, 2011 at 7:51 am
RichardDouglas (2/11/2011)
I sat the 70-433 exam last month and am looking to do the MCITP so I'd be interested to know how you...
February 11, 2011 at 7:09 am
Hi,
Any one has solution for the above.i couldn't find the solution elsewhere.i want to display first dataset,second dataset,third dataset,fourth dataset in the report.Anyone has faced...
February 11, 2011 at 2:31 am
Hi have a look at the below , i think you can get some idea.
declare @py table(cid int identity,fname varchar(50))-- Customer table
declare @sy table(Oid int identity,Cid int,fname varchar(50))-- Order...
February 9, 2011 at 10:29 am
odeonkreel (2/1/2011)
I run a Full backup on all databases on my SQL 2008 Server. I do this once a week.My question is, should I be backing up the TransLogs too?
Full...
February 2, 2011 at 8:26 am
Dave Ballantyne (2/1/2011)
Because its equivalent to
Select * from Sys.sysobjects where id in(Select sysobjects.id from sys.identity_columns)
So there is no syntax error
Hi,
Sub-query should need to executed here but why it...
February 1, 2011 at 6:32 am
ichiyo85 (1/31/2011)
January 31, 2011 at 8:13 am
GilaMonster (1/28/2011)
Steve Jones - SSC Editor (1/28/2011)
Connections to a website do not necessarily mean connections to a database.
Especially if there's connection pooling.
Seriously, the largest number of concurrent connections I've...
January 29, 2011 at 6:14 am
Viewing 15 posts - 76 through 90 (of 330 total)