Viewing 15 posts - 46 through 60 (of 137 total)
In my experience blocking is almost always due to poor application code rather than anything you can do much about on SQL Server - that said if you do not...
April 21, 2008 at 4:13 am
Remember the network share the backup is being restored from has to be accessible to the user that is running the SQL server service - it is not enough to...
April 21, 2008 at 4:08 am
ISNULL(CONVERT(VARCHAR, Date, 103), 'No Date Specified') AS ExpiryDate
Just beware of a little potential gotcha here - using convert with varchar and no...
April 21, 2008 at 4:06 am
Is one (or both) of the servers Win 2000 Server or are both Win 2003?
February 29, 2008 at 7:06 am
Ah .. didn't notice that .. your subselect makes more sense then (though again it might be necessary to exclude rows in subselect where the actual phone field was not...
February 6, 2008 at 4:03 am
What about something like
SELECT
*
FROM
(
SELECT
COLUMN_NAME,
...
February 6, 2008 at 3:42 am
Coalesce will only work if the phone number columns are nullable and have nulls when the value is not there - otherwise if a record did exist for e.g. home...
February 6, 2008 at 3:10 am
Win 2003 has built in firewall (bit like XP's ... i.e. half hearted) and security is generally locked down a lot more so by default it is difficult to...
February 6, 2008 at 2:29 am
I do something similar for those long tables
SELECT
' ' + 'alias.' + COLUMN_NAME + CASE WHEN ORDINAL_POSITION=@@RowCount THEN '' ELSE ',' END + char(13) +...
January 31, 2008 at 9:17 am
Can't see how that can be the issue - because parser must be looking up the column names anyway even if fully specified so that it can error on e.g.
SELECT...
January 30, 2008 at 4:38 pm
So who said you can never have too much memory!
January 30, 2008 at 4:30 pm
You will get this error if you are using Windows authentication but the client machine is not logging into the domain (or AD) that the server is on. I...
January 30, 2008 at 4:23 pm
Replies so far seem to have missed the obvious point that the same text takes up twice as much space in the database as nvarchar - because the unicode character...
December 6, 2007 at 2:18 am
This actually sounds like it might be a target for replication rather than DTS
November 26, 2007 at 4:57 am
Viewing 15 posts - 46 through 60 (of 137 total)