Viewing 15 posts - 121 through 135 (of 257 total)
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...
November 19, 2004 at 7:48 am
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...
November 5, 2004 at 7:53 am
Thanks, here's what I came up with
CREATE PROCEDURE
dbo.spGetColumnValue
/*
This Procedure Returns a Value for a Column Dynamically
*/
(
@Table...
October 27, 2004 at 9:20 am
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!
October 27, 2004 at 8:35 am
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!...
October 16, 2004 at 10:28 am
Yes, I do this now. I have the Code in VB.NET if you'd like it.
September 28, 2004 at 8:04 am
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...
September 16, 2004 at 7:44 am
Select * From [Table] Where Begin_Date Between '01/01/2004' And '01/15/2004'?? Not sure exactly what you're looking for
September 9, 2004 at 6:46 am
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...
September 9, 2004 at 6:44 am
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...
September 9, 2004 at 6:37 am
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...
September 8, 2004 at 6:59 am
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...
September 7, 2004 at 9:59 am
Here ya go!
From
(Select tid, count(*) as Count1 From txn_log Where type = '10' Group By...
September 3, 2004 at 7:20 am
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...
September 3, 2004 at 7:16 am
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...
August 31, 2004 at 8:38 am
Viewing 15 posts - 121 through 135 (of 257 total)