Viewing 15 posts - 1,876 through 1,890 (of 2,268 total)
Integration services is an ETL tool for transferring data from a data source to a taget. It can be used for populating databases and data-warehouses.
There are a lot of...
October 14, 2008 at 9:52 am
You shouldn't need an open source ETL tool, SQL 2005 ships with SSIS which is as good as any other ETL tool out there and about as easy to...
October 14, 2008 at 8:10 am
You may run into trouble running xp_cmdshell on a production server, quite often this feature is disabled on production for security reasons.
Though it would be a lot easier to schedule...
October 14, 2008 at 3:33 am
Thanks, no we don't have another server available that we can use. We have decided to go ahead with a 2008 license to act as a Distributor.
Do you know...
October 10, 2008 at 7:57 am
Okay, check the error log of the failed sever and this should give you more of a clue on what is going on
October 9, 2008 at 6:13 am
Try using full-qualified Tcp address.
instead of
TCP://MYSERVER:5023
try
TCP://MYSERVER.yourdomain.com:5023
October 9, 2008 at 2:47 am
From a quick look it looks like this statement may be casuing you some problems
set rs = conntemp.execute("SELECT SQLStmt, DateEntered FROM SavedSearch WHERE ID=" & SavedSearch)
As you SQLstmnt already...
October 8, 2008 at 11:20 am
You can geta copy of SQL refactor from Red-Gate this will upcase all your keywords for you , it works really well.
October 8, 2008 at 8:30 am
Because the data that your require is located in seperate tables. So you join them together using primary keys and foreign keys to select the information you need.
October 8, 2008 at 8:07 am
this code will get you the lastname as long as it the after the last space in the string.
declare @Name varchar(100)
set @name = 'Stephen Robert Fagan and Judith Mary Fagan'
select...
October 8, 2008 at 5:45 am
This could be a number of things..
are you able to connect to the server via SSMS?
Does the server allow remote connections?
Is the SQL browser turned on ?
October 8, 2008 at 4:49 am
The sub-query means that for each row in the outer query, sql server needs to search the inner query so you exponentially increase the amount of work sql sever has...
October 8, 2008 at 3:43 am
Why are you using a sub-query for the first example? this could be why the query is timing out, try writing it like this;
select '12' as Norder, description...
October 8, 2008 at 3:15 am
Viewing 15 posts - 1,876 through 1,890 (of 2,268 total)