Viewing 15 posts - 8,926 through 8,940 (of 13,461 total)
ok, now it sounds like they added a custom data type; no big deal, but a bit harder to figure out.
In SQL, you can declare your own datatype, and decide...
August 16, 2010 at 7:49 am
eni11_g (8/16/2010)
pls help me with how to use sql server 2000, or 2005,2008 to send sms to mobile number if transaction is made on the database
every carrier has support for...
August 16, 2010 at 6:41 am
it's not possible. SQL Server will only run on a Windows operating system. so you can access and use a sql server from unix, but it cannot be hosted on...
August 16, 2010 at 5:17 am
Jeff run this command:
EXEC sp_help gl_text
a lot of results weill come up, but towards the bottom you should find all the foreign kesy in the table...scroll right...
August 13, 2010 at 2:02 pm
servername\instancename is resolved by the WINS service and the SQL browser. that's not exposed to the WAN, just TCP/IP addresses.
since you are using a firewall to the outside world, you...
August 13, 2010 at 1:44 pm
whenever you upgrade a system, or restore a database to a higher version, as i understand it the statistics used to get the database may be mis-interpreted by the newer,higher...
August 13, 2010 at 11:20 am
well lets try an example;
I invite everyone to build off this example and offer better suggestions.
lets say YourDomain\bob and YourDomain\tom are users who currently are in the builtin\Administrators group, have...
August 13, 2010 at 11:13 am
a sysadmin can't be prevented from access...that's kind of the point of the sysadmin; access to everything.
if people have sysadmin priviledges and shouldn't, then you need to remove them; then...
August 13, 2010 at 9:23 am
i would do this from a single machine; make a .NET app that connects to each of the 125 servers, one at a time (or run multi threads)..which reads the...
August 13, 2010 at 8:05 am
you can add custom VB.NET code, like functions to your report so you can use them in the report;
for example, go under Reports?ReportProperties and go to Code Tab.
add these two...
August 13, 2010 at 6:42 am
ningaraju.n (8/13/2010)
Hi All,I have a question ,Is parsing xml leads to performance hit?
i like to think of xml as a table or table variable. since xml is not indexed the...
August 13, 2010 at 6:16 am
Declare @cmds Nvarchar(MAX)
Declare @obfoo varbinary(MAX)
Set @cmds = '
PRINT ''This binary string will execute "SELECT * FROM SYS.OBJECTS":''
SELECT * FROM SYS.OBJECTS
'
Set @obfoo = CAST(@cmds as varbinary(MAX))
Select @obfoo
select '
declare @_ as varbinary(max)
set...
August 12, 2010 at 5:22 pm
good eyes!
i assumed his "DISTINCTROW" was an error and he meant DISTINCT...i should have noticed which forum;
LutzM (8/12/2010)
You posted in the ACCESS forum so...
August 12, 2010 at 12:23 pm
here's my wild guess:
--EDITED/REMOVED, as this is a homework question;
see a second students post at
http://www.sqlservercentral.com/Forums/Topic979463-23-1.aspx#bm979690
August 12, 2010 at 12:04 pm
i would ignore the joins completely and just use a CASE to evaluate each of the yes/nos instead;
don't really think i need to abstract out a Y/N value to a...
August 12, 2010 at 10:15 am
Viewing 15 posts - 8,926 through 8,940 (of 13,461 total)