Viewing 15 posts - 2,446 through 2,460 (of 2,484 total)
The term "Formal Design Methodologies" would include things like database normalization techniques, process and data modelling. What gets done in what order, etc...
Something I found useful to get familar with...
November 19, 2002 at 8:47 pm
You need to check the @@ERROR variable.
Eg:
fetch next from cur into @Var1
while @@fetch_status = 0
begin
update table1 Set Field1 = @Var1
if @@ERROR <>...
November 19, 2002 at 8:35 pm
The best method is to use NT Authentication then there is no userid or password to worry about.
I set my ADO Connection string up as a Global Variable. The userid...
November 19, 2002 at 7:42 pm
Check the SQL Server Accelerator for BI from Microsoft.
http://www.microsoft.com/solutions/BI/nextsteps/default.asp
Haven't tried it myself but it's supposed to build the DTS packages required for loading a Datawarehouse.
Thanks
Phill Carter
November 19, 2002 at 7:24 pm
You can modify the Step name via Disconnected Edit. Be careful, you can screw things up if you forget to change one property. eg: The task name is also a...
November 19, 2002 at 7:15 pm
quote:
What about @@rowcount along with the batch size
Let me explain my situation.
I have a file...
November 13, 2002 at 1:34 am
quote:
Have you tried using the Batchsize option.I think if you use this option with a specific size(1000) you can findout how many...
November 12, 2002 at 3:56 pm
quote:
I think @@rowcount should give you the number of records inserted.begin tran
select * into authors2 from authors
select @@rowcount
commit tran
November 11, 2002 at 3:49 pm
What is the stored procedure that is executing the DTS package?
The NULL return is probably coming from it.
Thanks
Phill Carter
November 7, 2002 at 6:41 pm
quote:
If you have ideas you can send them directly to MS - sqlwish@microsoft.com.
I know...
November 7, 2002 at 2:53 am
quote:
Thanks for your comments - some answers: -I used goto labels because my original solution required the logging of a specific error...
October 31, 2002 at 4:08 pm
Good article. Always like articles with code that I can play with
One comment I would make though is that I'd eliminate the GOTO's by using positive...
October 31, 2002 at 2:36 am
In packages that need to be migrated to differnent servers, I set the connection and task properties dynamically using "Dynamic Properties Task" and global variables.
The Global Variables are passed to...
October 30, 2002 at 9:04 pm
Ron
Never had much luck with shrinking the log file under SQL7. In SQL2K it's a bit better, but not that much. You can play around with the virtual logs files,...
October 18, 2002 at 12:24 am
quote:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/howtosql/ht_install_1d7y.asp
Thanks, just what I needed.
Thanks
Phill Carter
October 8, 2002 at 3:36 am
Viewing 15 posts - 2,446 through 2,460 (of 2,484 total)