Forum Replies Created

Viewing 15 posts - 31 through 45 (of 54 total)

  • RE: FIND THE DATABASE USED

    few jobs run tsql while few others are cmdexec or SSIS.

    Take a look at the SSIS packages to see what are they doing. To do that, create a new BI...

  • RE: regarding SQL Server software

    The SQLServer tools that we need are included in Microsoft Visual Studio 2005

    This is true, but we're talking of the express edition, which have some limitations that you don't want...

  • RE: Do you have access to your Windows server box ?

    Hi there,

    Based on my experience, having local admin rights to the server is really important, but that does not mean that you should connect anytime you want to perform things...

  • RE: Error trying to access DB

    Hi,

    First of all, why are you trying to create a database with the datafile located at C:\Documents and Settings\morase\Desktop\Copy of BPO Portal\BPO Portal\BPO Portal\App_Data\FinancialControl.mdf ??

    Don't do that. Set the path...

  • RE: Help with the SQL administration

    First of all, welcome aboard !!

    I think you should start with some basic admin book, like the one you get from the official training, to get used to some concepts....

  • RE: Insert data

    Hi,

    you can use the following.

    INSERT INTO [Mydb].[dbo].[Departments]

    ([DeptID]

    ,[DeptName]

    ,[Manager])

    select 1,'Human Resource','Frank'

    union all

    select 2,'Management','Franklin'

    union all

    select 3,'something','something'

    Cheers

  • RE: Get Distinct Values from 3 Cloumns

    Hi CrazyMan,

    I think that the solution provided by FelixG is the one because you'll have the distinct combination.

    Based on the example you provide, you have 3 different values in Age...

  • RE: SQL Server Job Agent Restart after power down

    Hi,

    The answer is no. The jobs that had a start time that fits on the server downtime will not be executed upon the server start.

    Cheers

  • RE: Using CLR function

    Hi,

    If I correctly understood what you want to achieve, I think you can perform that using SQL, which I think will be better than deploying a CLR.

    declare @value1 bit

    declare @value2...

  • RE: CLR & Clustering

    Hi,

    you should deploy it only on the active node, no need to deploy it on every node.

    cheers,

    Alejandro

  • RE: List all permission in all databases

    Hi there,

    the simplest way is replacing this line

    insert into @dbs

    select name from sys.databases order by name

    with this one

    insert into @dbs

    values ('Name_of_DB')

    The nicest way will be removing...

  • RE: Insert of huge records per minute

    I agree with TheSQLGuru about the lack of information to correctly guide ritesh, but also think that tempdb comments are important because of the same reason: didn't provide us with...

  • RE: Insert of huge records per minute

    Yeap, follow Chris advice and separate everything. Also consider having 1 datafile in tempdb per processor (this is for avoiding bottlenecks on the tempdb).

    If you're server is Win 2003 or...

  • RE: Insert of huge records per minute

    Hi ritesh.saluja,

    also if you're managing tons of inserts per minute, consider creating one or more filegroups on different disks system and put those tables on them. That will reduce IO...

  • RE: Connection to SQL server 2005

    DMC is right, when you connect to the VPN then your default gateway don't know how to route you to the test environment. I suggest you use something like "route...

Viewing 15 posts - 31 through 45 (of 54 total)