Viewing 15 posts - 2,041 through 2,055 (of 2,268 total)
Roll-back Transaction will only roll-back data modications and will not affect the values in local variables.
so @n stays = 112
July 18, 2008 at 10:12 am
Inner Join is the ANSI standard and has been for a number of years.
The other way will not be supported in the future, so probably best not to begin using...
July 18, 2008 at 8:02 am
Writing a procedure that simply inserts the data into one table from the other will be faster than writing to a flat file first.
you can either write a procedure or...
July 18, 2008 at 6:57 am
You could use the copy database wizard in SSMS to copy the database, and then save the package and use this in SSIS.
July 17, 2008 at 9:53 am
Once you have created it locally and are happY with it, then you will have to re-create it on the hosting server.
If you are only interested in moving the...
July 17, 2008 at 7:33 am
ansz5 (7/16/2008)
HiAlso , Are these ETL tools...same as Data warehousing ..??
Regards,
Ansz5
ETL refers to Extract, Transform , Load
and it refers to the process of moving your data from your various...
July 17, 2008 at 6:55 am
It looks like you are conntecting using named pipes, have you enabled this in SQL configuration manager on your server?
July 17, 2008 at 6:52 am
There a lot of different things you can do to optimise a query, fromm removing cursors , correct indexing and reducing the number of columns selected.
Post up a copy of...
July 17, 2008 at 6:46 am
What do you mean by , tables that you create locally?
Does this mean tables you have created on a local server on your machine?
Sql server operates in a client -...
July 17, 2008 at 4:54 am
Replication is used when you have the data pushesdacross form one server to another, for example you could have an Admin system that populates a database every time a...
July 15, 2008 at 8:37 am
SQL server express can act as a subscriber in replcication but does not have the ability to act as a publisher.
Replication is a specific term in SQL, and is different...
July 15, 2008 at 7:50 am
To load 20 seperate files at the same time you will need to use the For.. Each loop container to loop through the files and load them up
July 14, 2008 at 7:21 am
As others have said, I think Backup and Restore is the best option.
Log Shipping would add an unnecessary overhead to your production server if the only reason you are...
July 14, 2008 at 6:47 am
It is generally accepted that it is better practice to store images on the file path,
Security and backups are two things that you will have to take care...
July 14, 2008 at 3:19 am
Viewing 15 posts - 2,041 through 2,055 (of 2,268 total)