Viewing 15 posts - 1,696 through 1,710 (of 2,268 total)
If the databases are on the same instance, then use four-part naming to refer to the tables that you need in your join.
If the dbs are on different servers, then...
December 30, 2008 at 4:48 am
It seems like the login that you are using to access the API, does not have permissions for the method that you are trying to call.
Are you able to check...
December 29, 2008 at 8:40 am
what is the error that you are getting when setting up a linked server?
December 23, 2008 at 10:04 am
You can use the import/export wizard to do this
or
create an SSIS package
or
Setup a Linked server and use INSERT INTO.
I would go with the SSIS package..
December 23, 2008 at 8:45 am
Paresh Prajapati (12/22/2008)
You can setup Replication ,Mirroring or Log Shipping in this case.
Mirroring won't help in this situation.
Snap-shop replication could be used though.
December 23, 2008 at 7:59 am
srikanth.katta (12/23/2008)
Hi,Better you should use DBCC SHRINKDB(file_name, target size) or DBCC SHRINKFILE(file_name.log,t size )...
Don't do this,
Shrinking the transaction log is not a good idea especially on...
December 23, 2008 at 3:57 am
This should work
Select Name, Min(Sal), Sum(Sal)
from employee_san
Group by name
December 22, 2008 at 3:45 am
You are selecting more than one column in the sub-query , this will not work in an update statement you need to only select the one column that is...
December 19, 2008 at 10:07 am
You will def need to do some sort of cleansing of the data first. Depending on your programming experience VBA is not that difficult to learn, start simple and...
December 19, 2008 at 9:00 am
To insall a named instance , just run the SQL server installation again and this will give you the option to install a named instance.
December 19, 2008 at 3:24 am
Okay, there are a couple of ways you can deal with this..
You have merged cells in your worksheet this will lead to problems. I would write some VBA...
December 18, 2008 at 9:25 am
pat (12/17/2008)
I am trying to get the file load from SSIS package btu the problem si i have file with first row is file and other information name!!...
December 18, 2008 at 7:49 am
Start --> Control Panel --> Add or Remove Programs --> Microsft SQL Server 2005 --> Remove
December 18, 2008 at 3:08 am
yes this is possible,
you will need to use the Substring funciton to split out the CSV values.
haev a look at this article for an efficent way of dealing with this..
December 17, 2008 at 9:22 am
Viewing 15 posts - 1,696 through 1,710 (of 2,268 total)