Viewing 15 posts - 721 through 735 (of 2,486 total)
"...I actually don't need this data in the database at all:..."
That's just the data I used to test the query and make sure it works. See the comment,
"-- create...
September 27, 2005 at 4:20 am
I'd also revisit the database/table design. It seems like you're trying to achieve two outcomes in one hit,
1) provide quick insert/delete response 24x7
2) hold 200gb of data for decision support and analysis
In...
September 27, 2005 at 4:17 am
Ahhh ... even bigger jump this time ...
"...I was referring to the updating of the 'Asgnmnt' table..."
In that case you don't need...
September 27, 2005 at 12:52 am
"...except that with the actual updating of the table..."
Hmmm ... are you referring to updating your Asgnmnt table, or the table variable that you created?
Can you post the...
September 26, 2005 at 11:33 pm
Before removing BUILTIN\Adminstrators, make sure you have another login that has sysadmin rights otherwise you'll lose sysadmin access to the server.
September 26, 2005 at 10:34 pm
Take a look at the article over here http://www.sqldts.com/default.aspx?200
This is for text files, but the Excel connection works the same. Just replace the part that reads '("Text File (Source)")'...
September 26, 2005 at 8:09 pm
If you're logging to SQL Server you can use the sp_dump_dtspackagelog stored procedure in the msdb database to remove package log. It accepts a package name, package id, package version id...
September 26, 2005 at 5:12 pm
What server are you running this on? How are you creating the CDO Message?
SQL Agent tokens are only relevant for SQL Agent Alerts. Also, I think you're complicating things using...
September 26, 2005 at 5:04 pm
If the the email is arriving with a corupted attachment it could well be the email server. We had some problems with Exchange 2000 not using the correct encoding nad...
September 26, 2005 at 4:56 pm
Easiest method I can think of would be to set something like the application name in the DSN-Less connection. This will show up in sysprocesses as the Program Name. Then you...
September 26, 2005 at 4:47 pm
Is the destination going to be SQL Server? If so, then your best bet would be to load the data into a staging table in the SQL Server database. Then...
September 26, 2005 at 4:34 pm
Mike, you can add columns to a table in Enterprise Manager without too much fuss at all. Just add them at the end. Then EM will just use the sp_addcolumn...
September 26, 2005 at 8:21 am
Jon "...done the same with yours..." & podatum "...perhaps phillcart's own forum..."
If you're referring to http://www.sqlserver.org.au as my forum/portal then you're mistaken. Australian SQL Server User Groups is a general...
September 26, 2005 at 7:28 am
I think the problem here is that you're circumventing the backup/restore process by copying the mdf and ldf files directly. XCOPY is not a backup tool, otherwise it would be...
September 26, 2005 at 5:24 am
Nice article, but you forgot to mention one trick, or should I say chore Refresh, refresh, refresh and if you still can't find...
September 26, 2005 at 5:20 am
Viewing 15 posts - 721 through 735 (of 2,486 total)