Forum Replies Created

Viewing 15 posts - 121 through 135 (of 257 total)

  • RE: dudas sobre la replicación

    I don't believe that Replication will work with Users and DTS packages.

    No creo que puede usar replicacion para todo.  Yo se que esta posible a duplicar Tables, Stored Procs, Views, Functions...pero...

  • RE: Numeric and decimal data types

    If you want to upgrade your existing apps and DB from Numeric to Decimal, there is hardly anything to do.

    First, create your F-Key before changing any data type.  Next, from...

  • RE: Get Column Value

    Thanks, here's what I came up with

    CREATE PROCEDURE

    dbo.spGetColumnValue

    /*

    This Procedure Returns a Value for a Column Dynamically

    */

    (

    @Table...

  • RE: Get Column Value

    Can you or anyone possibly give me an Example of sp_ExecuteSQL?  I can never get that thing to work with Parameters!  Thanks for the Help!

  • RE: need help with T-SQL Syntax

    Well, I thought I'd be original.  I haven't read everyone's post but I think I have the most unique Idea for going about doing this.  Also, it works for any Table!...

  • RE: Encrypting a column

    Yes, I do this now.  I have the Code in VB.NET if you'd like it.

  • RE: Data encryption (column level)

    Is this something you want for a program you are developing?  Or is it something you want for the SQL Server backend (i.e. something to be able to run in...

  • RE: Overlapping date ranges

    Select * From [Table] Where Begin_Date Between '01/01/2004' And '01/15/2004'??  Not sure exactly what you're looking for

  • RE: Issue with ADO.Net and Sql Server procedure

    Maybe it's because you're using a Dynamic query which can't be cached?  I'm not sure, I've moved onto ADO.NET 1.1 for the past year and soon 2.0.  Try just putting...

  • RE: How to catch exceptions

    Well, unless you are trying to connect to another Server / DB in your Stored Proc, usually "SQL Server does not exist or access denied." happens from within a program...

  • RE: MCDBA - Whats it worth?

    Thanks for clearing that up.  Since I am a Developer, I haven't learned all the Auditing processes yet.  But no doubt I do agree with you...DB programming is fun!  I...

  • RE: MCDBA - Whats it worth?

    I guess all of this is really hypothectical, but it's fun to see the responses.

    Vinod Kumar mentioned "...performance tuning, auditing the database...".  How...

  • RE: How to return a 0 value instead of null

    Here ya go!

    Select t1.tid, IsNull(Count1, 0) As Count1, IsNull(Count2, 0) As Count2, IsNull((Count1 - Count2), 0) As Total

    From

    (Select tid, count(*) as Count1 From txn_log Where type = '10' Group By...

  • RE: StoredProcedures or Userdefined function.

    It has to be a Function - that's it, nothing else, game over!  You cannot include data from a Stored Proc into a Select Statement.  The only way (I know...

  • RE: What is the difference between user-defined function and stored procedures in SQL server 2000?

    Great!  Thanks for the Reply!  Personally, I always try everything in my power (sometimes hours and hours of work) to get everything I need from a Select Statement.  Always my...

Viewing 15 posts - 121 through 135 (of 257 total)