Forum Replies Created

Viewing 15 posts - 46 through 60 (of 312 total)

  • RE: XML query issue

    Thanks for the quick reply. I agree XML is difficult to navigate through. I was looking at the loop and time this would take and decided to go...

  • RE: XML query issue

    I am now running into the next issue. I would like to modify an attribute within the xml. I was looking online and since we are treating this...

  • RE: XML query issue

    In the block above what does the WITH do? Is it creating a work table or something? Is there a cost to having the with statement. The...

  • RE: DB Last Backup date

    It looks like it was the VMware doing the backup somehow. I am not sure how the 3rd party software is trying to backup my local DBs. I...

  • RE: DB Last Backup date

    I went into my local current log and found this

    Date12/18/2013 8:54:41 AM

    LogSQL Server (Current - 12/18/2013 10:43:00 AM)

    SourceBackup

    Message

    Database backed up. Database: USINITIAL_752, creation date(time): 2013/12/17(13:44:49), pages dumped: 20402, first LSN:...

  • RE: DB Last Backup date

    I would think that is possible, but I know my machine does not have any backup stuff beyond iron mountain. That strictly backs up my document directory. This...

  • RE: DB Last Backup date

    Yes it shows that it is being backed up but not to a physical location. Instead I get something like this

    {1E63C7F9-E947-42C9-8733-8C166C58B9C4}9

    Where as when I have actually backed the db...

  • RE: Application intermittently not finding Stored procedures in SQL 2008R2

    I was trying not to run a trace but yes I may have to. No one has peeped up saying they did it.

  • RE: tsql script check existing data on creation

    Hey sorry about the confusion. I must have been doing something differently that was not working. I tried this again today and it worked. Thanks

  • RE: tsql script check existing data on creation

    I did find that one in searching

    EXECUTE sp_msforeachtable @command1="Print 'Test'", @Command2 ="ALTER TABLE Foo.tblFoo WITH CHECK CHECK CONSTRAINT all"

    Am I doing something incorrectly because it seems to have no...

  • RE: Standard SQL scripting to CE

    Charles - Thanks for the reply. That is exactly what I did. Made a sproc that reads the tables data and scripts it for CE but it is...

  • RE: Compatibility 2005 vs 2008 TVP and Merge

    Great so I am not totally crazy. I thought it was very strange that I can even fill the TVP in 2005 compatibility. It has to do with...

  • RE: Default mdf/ldf directory at the server level

    That got me to the right spot with that link

    Declare @datadir nvarchar(4000)

    ,@logdir nvarchar(4000)

    EXEC master.dbo.xp_instance_regread

    N'HKEY_LOCAL_MACHINE'

    , N'Software\Microsoft\MSSQLServer\MSSQLServer'

    , N'DefaultData'

    , @datadir output;

    IF @datadir IS NULL

    BEGIN

    EXEC master.dbo.xp_instance_regread

    N'HKEY_LOCAL_MACHINE'

    , N'Software\Microsoft\MSSQLServer\Setup'

    , N'SQLDataRoot'

    , @datadir output;

    END

    EXEC master.dbo.xp_instance_regread

    N'HKEY_LOCAL_MACHINE'

    ,...

  • RE: TabLock and TablLockX Confusion

    I apologize - I must have killed the session after the update the first time. So I still had a transaction open. If I run the select in...

  • RE: TabLock and TablLockX Confusion

    So I can take that as when you apply a hint it is going to lock that table whether it is Tablock or TablockX while the update is going and...

Viewing 15 posts - 46 through 60 (of 312 total)