Viewing 15 posts - 526 through 540 (of 587 total)
I don't know this for certain, but I'm guessing that the input values are "set" when the query first starts, so the value is zero. IF you set the...
July 22, 2008 at 12:39 pm
DKG - yes, SQL Authentication and the IP/Name with a correct user/password can be used. The name will not conflict with another, because each name ends with a domain...
July 21, 2008 at 8:23 pm
I don't think there is anything special - you can connect to any SQL server if you know it's IP (or a resolvable name), port, a username and password... as...
July 18, 2008 at 9:11 pm
Sounds to me like they've just placed it outside the firewall. Although this does make it visible everywhere, it also... well... makes it visible everywhere. I'd rather have...
July 18, 2008 at 1:16 pm
InStr([start,] string1, string2 [, compare])
Hope this helps,
Chad
July 18, 2008 at 1:08 pm
How about InStr([start,] string1, string2 [, compare])
Hope this helps,
Chad
July 18, 2008 at 1:07 pm
I'm not sure I understand... are you trying to string together a series of parameters for a single report? For example, pick a country, then the region box fills...
July 16, 2008 at 11:27 am
The removedocument is out of order, but that was the only issue I found. I'm guessing that there is a bad character in the XML that didn't survive the...
July 15, 2008 at 1:48 pm
Cool. I like it. I'll be using this frequently to quickly double check column types or foreign keys while writing scripts. Very handy, thanks!
Thanks,
Chad
July 15, 2008 at 12:41 pm
A trusted connection is one that used a windows account to connect to the SQL Server (e.g. domain\user). Non-trusted connections use a username and password to connect.
Chad
July 14, 2008 at 4:11 pm
I don't completely understand all of your data, nor what you are looking for, but lets see if this helps at all...
I'm guessing that you want to see a list...
July 14, 2008 at 12:39 pm
Look in the SQL Server Log and see if it has additional information there about the failed login. If not, turn on login auditing for failed logins and it...
July 11, 2008 at 2:59 pm
It is possible to replicate the results, Open up a query window to a database and type in "SELECT * FROM sys.master_files", then open "activity monitor" and kill the...
July 11, 2008 at 8:59 am
A few things you might try...
--Check that the backup file location and the path in the cleanup task are identical (not a mapped drive in one and UNC in another,...
July 10, 2008 at 4:03 pm
I'm sure someone will have a better idea than this, but you can get around it by adding the exact content of your ORDER BY to the select:
SELECT DISTINCT zipcode
,city
,state
,CASE...
June 30, 2008 at 2:12 pm
Viewing 15 posts - 526 through 540 (of 587 total)