Forum Replies Created

Viewing 15 posts - 76 through 90 (of 330 total)

  • RE: Preventing thiefs from reverse enginnering stored procedures

    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...

  • RE: Extending minimum datetime values

    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)

  • RE: AVG function on varchars

    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...

  • RE: Mechanism of Linked Server

    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...

  • RE: Upgrading from 2005 to 2008

    Rem70Rem (2/17/2011)


    Hi,

    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...

  • RE: Mechanism of Linked Server

    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

  • RE: Exam 70-451

    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...

  • RE: SQL 2000 upgrade to 20088 R2

    Hi,

    A good start is SQL Server 2008 Upgrade Advisor.

    http://www.microsoft.com/downloads/en/details.aspx?FamilyID=f5a6c5e9-4cd9-4e42-a21c-7291e7f0f852&displaylang=en

    You will be getting some idea.

  • RE: Exam 70-451

    RichardDouglas (2/11/2011)


    How did you get on with the exam?

    I sat the 70-433 exam last month and am looking to do the MCITP so I'd be interested to know how you...

  • RE: SSRS dynamic o/p in grid

    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...

  • RE: How to insert into foreign key table

    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...

  • RE: DB and Translog Backups

    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...

  • RE: Even Subquery is incorrect Main query runs why?

    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...

  • RE: Table variable as Output Parameter

    ichiyo85 (1/31/2011)


    Hi, on a similar note, I want to make a stored procedure where I can delete customers from a December customer table, but only those who will show up...

  • RE: How many users can be configured(MAX) for SQL Server 2008 R2

    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...

Viewing 15 posts - 76 through 90 (of 330 total)