Forum Replies Created

Viewing 15 posts - 586 through 600 (of 1,079 total)

  • RE: Interview

    vinodh247 (1/6/2011)


    Craig,

    I have not copied these q's from any site, these are the questions i was asked in the interview. I'm a newbie to this site and this is my...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Setup Replication using SQL Express as a publisher

    Hardy21 (1/6/2011)


    If we can setup PULL subscription at Enterprise level & pull the data from Express edition, is it possible?

    Microsoft SQL Server 2008 Express (SQL Server Express) can serve as...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Getting a mail when a DB is created

    I understand..the only other way I can think of is Policy Management (SQL 2008 up).

    Haven't tried anything like this yet...

    Trigger on create?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Getting a mail when a DB is created

    Schedule a job to send mail to you with the following tsql...it will return with the names of databases created in the last day....

    select name from sys.databases

    where create_date > (getdate()...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: utility

    To add to what Adiga said, you can always make a normal backup, restore it as a different name, detach from SQL, and do as you please with the mdf...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Interview

    Let's rather start by you presenting us with the answers you gave, and we'll work from there?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Setup Replication using SQL Express as a publisher

    No you cant use Express as Distributor.

    http://msdn.microsoft.com/en-us/library/ms165686.aspx

    Replication Considerations (SQL Server Express)

    SQL Server 2008 R2

    Other Versions

    * SQL Server "Denali"

    * SQL Server 2008

    ...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Do you use Facebook?

    In my age group, it's really the only way to keep in touch with people.

    Nobody picks up the phone and call anymore, so FB is a good alternative.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: If Job Failed, then Rerun the same job

    In the job itself, add the 1st step as a 2nd step, and configure the first step's failure action to go to the next step, instead of reporting failure.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: SQL Server Audit

    rmazambara (1/4/2011)


    Hello folks,

    I would like to set up an audit for my sql server environment. I would like to audit changes that would have been done straight on database tables;...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Logins/Passwrods

    declare @username nvarchar(35)

    set @username = (select suser_name())

    select loginname, (Case sysadmin when 1 then 'Yes' else 'No' end) as Sysadmin

    from syslogins where loginname = @username

    Passwords for NT linked accounts are...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: checking permissions

    exec sp_helplogins

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: change siz of file in file groupe?

    In SSMS, right click the database you want to modify.

    Select properties.

    Select "Files" from the list on the left.

    All files that belong to the database will be displayed (your database file,...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: change siz of file in file groupe?

    You can set the maximum size for each file in your filegroup.

    The filegroup size is the total of all the files sizes that belong to the group.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: GetDate() or CURRENT_TIMESTAMP

    I use getdate() purely as a habit.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

Viewing 15 posts - 586 through 600 (of 1,079 total)