Viewing 15 posts - 406 through 420 (of 653 total)
use linked servers and then u can include the table in your query using the 4 part naming convention i.e. LinkedAgencySvr.AgencyDb.dbo.SomeTable
you do not need to store the connection strings in...
May 11, 2007 at 8:52 am
remove [xmlns="http://holoncorp.com/xml/EDIFACT/D96A/INVRPT" xmlns:v3="http://holoncorp.com/xml/EDIFACT/D96A/INVRPT">]
from your xml file.
when i tested i managed to load but i had nulls in some columns, so you might want to check your schema file
May 11, 2007 at 8:41 am
I would suggest
May 11, 2007 at 8:08 am
you are doing the correct thing, just run you script as normal and close it when you are done. Or if you want to save the script goto [File ->Save As]
May 11, 2007 at 8:04 am
If using QA in SQL 2000, then you need to set your output to text. i.e.
Tools > Options > Results
On the dialog box select [Results To Text] on the...
May 1, 2007 at 10:00 am
in the BI Dev Studio there is an option to use the import and export wizard. This is the fastest way I have found to create a package that copies...
May 1, 2007 at 9:55 am
please do not double post your issues.
March 15, 2007 at 11:34 am
when creating you auto script you also have to consider whether you are auditing all the columns in the respective tables.
March 15, 2007 at 11:31 am
you mixed up on
inner join sysusers u on u.id = o.uid
supposed to be
inner join sysusers u on u.uid = o.id
-------
Select u.name as schemaname, o.name as TableName, x.Name as...
March 15, 2007 at 11:21 am
I am still convinced the problem is not with your sql but with outlook, try sending an email to one of your yahoo or hotmail accounts and see if there...
March 15, 2007 at 11:15 am
i have been hunting for that one as well. i don't think it exists. I have become very good at the Ctrl + R (LOL) even with my eyes closed
March 14, 2007 at 11:37 am
March 14, 2007 at 11:34 am
create a job with your chosen schedule and then call a stored proc which uses sp_send_dbmail to send your mail
March 14, 2007 at 10:38 am
Viewing 15 posts - 406 through 420 (of 653 total)