Forum Replies Created

Viewing 15 posts - 331 through 345 (of 812 total)

  • RE: Filegroup backup

    1) Are you taking the full backup or filegroup backup?

    2) Do you have same database setup in some other environment/server where same database with filegroup exist? Like QA or Dev....

    ----------
    Ashish

  • RE: DML info for a table

    Please stop recommending that people look in the default trace for data changes. Data changes are not tracked by the default trace in any version of SQL.

    then what is the...

    ----------
    Ashish

  • RE: DML info for a table

    Please follow this very well written article:-

    http://feodorgeorgiev.com/blog/2011/01/what-objects-were-created-altered-and-deleted-in-the-past-24-hours/

    Obviously, as mentioned in post as well, it will work only if your default trace is enabled which you can check by running :-

    select...

    ----------
    Ashish

  • RE: Filegroup backup

    its similar to restoring the database....not sure where you finidng the problem.

    SSMS--rightclick on your database where u want to restore---tasks--restore--file and filegroups.

    If you want to do this by script...

    ----------
    Ashish

  • RE: How do i find Scheduled JOBS using a query.

    use msdb

    go

    select a.name as Jobname, a.enabled,

    b.next_run_Date as [Next Schedule to Run],

    b.next_run_time as [Scheduled time to execute]

    from sysjobs a, sysjobschedules b

    where a.job_id= b.job_id

    This query will give you information on the jobs...

    ----------
    Ashish

  • RE: No Lock

    I've never heard of nolock causing blocking and deadlocks. Can you explain your understanding a bit more, please, as there must be a gap in my understanding.

    I have experienced it...

    ----------
    Ashish

  • RE: No Lock

    No lock is suppose to speed up your queries because the overhead of locking is not happening. Also because nolock is specified deadlocks shouldn't happen. Please can you let...

    ----------
    Ashish

  • RE: Visual Studio Code Names

    funny to see that product can be named as ....dude.

    So coming onwards whoever call me dude, I will tell them I am not microsoft prodcut. 😀 😀 :-D...

    ----------
    Ashish

  • RE: No Lock

    no, I will not suggest for nolock.

    It will affect your performance very badly and you will see lot of blocking and deadlock as well.

    ----------
    Ashish

  • RE: Changing Domains

    it will be different SIDs for windows account which you will create in new domain

    ----------
    Ashish

  • RE: how to deincre logfile

    if you asking for decreasing the log file then the only thing you can do is more frequent log backup and execute small chunk of update/insert/delete statement.

    Also Shrinking...

    ----------
    Ashish

  • RE: Changing Domains

    What I am unclear on is the best way to handle the many Windows groups / user logins i.e [olddomain\bhope] that exist in the system.

    Windows account you have to create...

    ----------
    Ashish

  • RE: ODBC VS OLEDB

    have a read :-

    http://database.ittoolbox.com/documents/odbc-vs-oledb-18150

    ----------
    Ashish

  • RE: The user is not associated with a trusted SQL Server connection

    ok, so it confirmed that its not orphaned account.

    Next thing I would like to check if the account have correct permission on database level. Seems like as soon someone...

    ----------
    Ashish

  • RE: The user is not associated with a trusted SQL Server connection

    It need to be run in the database where you have the problem.

    For more detail please have a read of :- http://msdn.microsoft.com/en-us/library/ms174378.aspx

    ----------
    Ashish

Viewing 15 posts - 331 through 345 (of 812 total)