Viewing 15 posts - 1,846 through 1,860 (of 2,486 total)
MS Outlook yes, Outlook Express no.
Take a look at xp_readmail in Books Online.
January 19, 2004 at 3:23 pm
To answer your question 'Not Really'. Microsoft does produce Visual SourceSafe that you can tie into SQL Server which allows you to version control stored procedures, but that's all.
Check out...
January 19, 2004 at 3:17 pm
You should only use the "WITH (nolock)" query hint when you are not concered about the quality of the data.
When nolock is used it is possible to read data from...
January 15, 2004 at 6:37 pm
imackenz is correct. The problem is with the base64 encryption used by Reporting Services. It is supposedly going to be fixed when they release the product later this month.
January 15, 2004 at 3:47 pm
The length that the lock is held would depend on a number of variables. Number of users, size of table, quality of hardware, etc...
I've had it happen to me. The...
January 15, 2004 at 3:42 pm
One of the main reasons to avoid 'select ... into' with temp tables is that it can cause blocking in Tempdb.
January 15, 2004 at 3:24 pm
I'm presuming this is running via a stored procedure and you pass in the criteria using a parameter.
That being the case you would need to validate the passed parameter before...
January 14, 2004 at 8:36 pm
Try
select * from tab1where fld1 like like 'Ph[[](L'
Note the use of [] to enclose the wildcard character in the data.
January 14, 2004 at 8:17 pm
Yes that is it. Look at "Pattern Matching in Search Conditions" in Books Online.
January 14, 2004 at 7:33 pm
When you use the LIKE operator you need to include a wildcard character in the criteria.
EG: select * from tab1 where fld1 like 'Ph[(L%'
This will return all rows where fld1 begins...
January 14, 2004 at 7:20 pm
We don't have any means of determining what has changed in the Progress database unless we check every field in every record. This would substantially increase the time it takes...
January 14, 2004 at 1:48 pm
Does the one package import all these files?
Take a look at the following article
http://www.sqldts.com/default.aspx?246
The filename is assigned to a global variable in step 4 of the example code. You...
January 7, 2004 at 5:22 pm
Firstly you would store the file name in a global variable. Is this package loading multiple files or just one file?
For the transformation click the destination column and create a...
January 7, 2004 at 5:08 pm
You could add an ActiveX Script task that check the properties of the datapump task. This way you'll not only get a count of the rows processed but also the...
January 7, 2004 at 3:34 pm
Viewing 15 posts - 1,846 through 1,860 (of 2,486 total)