Forum Replies Created

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

  • RE: Need Urgent help to convert nVarchar to Numeric in SQL

    Are you talking about converting the values in a sql script or actually changing the data type of the field in the table?

    Let us know what you've tried already. ...

  • RE: SQL Cluster Migration

    Did this with Win2003/SQL2000/SQL2005 cluster to Win2008R2/SQL2005/2008 cluster...

    You can't really move # of databases at a time since they'll be on specific instances. You'd have to move an...

  • RE: Parent-Child But Not All Have Children...?

    Try looking at recursive CTE or adjacency model to start. There's plenty of good articles on SSC on what you want to do.

    [Edit]

    Oops yeah that works. Didn't read...

  • RE: SSRS custom assembly using old ActiveX dll

    Nevermind... can't do it the ActiveX COM object is 32bit and SSRS is 64bit...

    my IDE is 32bit... oh well...

    If anyone know's magic to get it to work let me know...

  • RE: Stored Procedure Consolidation

    If you're just looking for a single SP to access the same data I'd just setup a 3rd SP to call one or the other...

    if your looking for just 1...

  • RE: Need help with SQL query..

    Please read the link below in my signature about good ways of asking for help. You're question is hard to understand and incomplete from what I can tell. ...

  • RE: SQL Server 2008 cluster upgrade

    Raghavender (2/18/2013)


    Windows 2008

    64 or 32 bit (OS, SQL)? Just upgrading SQL Server or hardware/OS upgrades as well?

    Personally I'd upgrade 1 instance at a time side by side (Generally)...

    1. Setup...

  • RE: SQL Agent won't start after installing Full-text Search

    Superdoc (2/18/2013)


    Need some more details, have you checked windows events, sql server logs? it could well be a coincidence as i feel full text indexing cannot be hampering path of...

  • RE: Really Strange

    Sounds like the data in the file isn't completely loaded into table1 before you start the insert into table2, maybe getting dirty reads... what isolation level? I'm going to assume...

  • RE: Stored procedure

    Write it and test it. Tweak it and test it. Tweak some more and test it. test test test.

  • RE: query to split a table into 2 tables

    Similar to the one above... you can run this entire script and see the results...

    The one above was missing the Vulerability ID field...

    --================Setting up sample data========

    declare @master as...

  • RE: assertions

    Lynn Pettis (2/8/2013)


    mehta.saurabhj (2/8/2013)


    No i said similar have a look you idiot!!!

    This is a professional site and this is totally uncalled for.

    I completely agree. If he's here to get...

  • RE: assertions

    mehta.saurabhj (2/8/2013)


    what is the difference between assertion and the check constraint as both of them do the same function?Please give an example

    Maybe there's something that I'm missing but Assertions and...

  • RE: Deployment of SSRS reports

    SceloM (2/8/2013)


    Hi

    I want to present to management about moving our reports into SSRS and need assistance in answering this question.

    When an SSRS report is deployed does the database travel with...

  • RE: SSIS import multiple csv files by name

    Not sure if it'll work but it's something to try...

    Try the Conditional Split Task.

    Capture the file name and parse out the file type in the loop and store in variables.

    Then...

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