Viewing 15 posts - 46 through 60 (of 94 total)
To my knowledge you should not have any problems. I would suggest you put the SQL code into a stored procedure (obviously) and as long as you have your begin...
February 7, 2005 at 3:30 pm
It appears you are trying to create a data warehouse. Have you considered using Analysis Services and instead of backup/restores create jobs to move only the new data (denormalizing in...
February 2, 2005 at 6:54 am
I would suggest doing this in two steps.
First step is the update process. Don't worry about if the non-key fields match or not because if they match the update won't...
February 2, 2005 at 6:41 am
You are not missing anything (at least to me). However, I would suggest option 3 and that is the truely normalized version. The fact that you have a large number...
January 25, 2005 at 7:13 am
To provide real assistance I'll need a general idea of the table structure transferred from Access and I have a feeling the solution that will work in the end is...
January 18, 2005 at 1:57 pm
I think you'll need to use a cursor to do it. yuck.
declare curCallNotes cursor static for select call, note from tCalls open curCallNotes
declare @Call int --This would be whatever the key...
January 18, 2005 at 11:29 am
There isn't a limitation, but why on earth would you do it? What are you trying to achieve? This would be a performance killer. Also, be aware your cursors will...
January 18, 2005 at 9:23 am
It appears either the function fn_trace_getinfo doesn't exist on the server OR the function does exist but system_function_schema isn't the owner/schema name for the function.
c
January 18, 2005 at 9:17 am
I agree with Phillip on this. Use the books online and pay attention to how SQL Server usings the various types in calculations. Size and expected use are the keys...
January 17, 2005 at 12:53 pm
I follow a similar structure throughout my database designs (Identity fields as primary keys) for the following reasons:
1) It allows me the assumption that a primary key is always an integer...
January 17, 2005 at 12:51 pm
Can you supply some sample data of what you are passing? If the character strings are not in a usuable format you could get a null.
January 13, 2005 at 12:47 pm
It is possible to do it but you would be taking a performance hit in order to do so. You either write all the code within the proc and only...
January 12, 2005 at 8:29 am
I don't know the actual answer, but turn on the profiler and then get the info from enterprise manager. You should then be able to get the SQL from the...
January 3, 2005 at 12:58 pm
What is the table structure and the VB code?
January 3, 2005 at 6:58 am
Is the front end Visual Basic 6? If it is, you may want to create a global subroutine to loop through the recordsets of the Stored Procedure. I use the...
January 3, 2005 at 6:55 am
Viewing 15 posts - 46 through 60 (of 94 total)