Viewing 15 posts - 4,786 through 4,800 (of 13,465 total)
well what you posted is a scalar function; ideally you want it to be an inline table valued function isntead.
after correcting some syntax, and putting it in my default dbo...
September 5, 2012 at 11:14 am
qur7 (9/5/2012)
it makes sense. can you please let me know where to make changes in the code, sorry I am kind a new at this and for the past...
September 5, 2012 at 11:08 am
there's a SERVERPROPERTY function you can use, but do you need to discover that within a TSQL command?
SELECT 'IsClustered', SERVERPROPERTY('IsClustered')
September 5, 2012 at 10:16 am
Scott D. Jacobson (9/5/2012)
September 5, 2012 at 9:27 am
yes it's possible;you need to use either a GROUP BY, or a sub select with a row_number() function to limit the selections.
either one can do what you want, depending on...
September 5, 2012 at 7:29 am
nzhang6666 (9/5/2012)
I didn't know function can not be used in parameters of a table valued...
September 5, 2012 at 6:28 am
i just tested it in 2008R2, 2005, and compatibility 80.
the database you are testing in is set for compatibility 80 instead of 90.
in SQL2000 (80), functions were not allowed, and...
September 5, 2012 at 6:23 am
i googled "vb.net read pop3 mail" and got lots of hits for code examples; switch it around if you are more comfortable with C#, but the code is pretty basic.
I'm...
September 5, 2012 at 6:18 am
I've done this in code in vb.net/c#.net, where you pull messages from an SMTP server, and then you can do what you want with them: delete them off the mail...
September 5, 2012 at 6:03 am
except for the missing GO statement between the end of the proc and the DECLARE, when i uncomment #2, all three work perfectly.
September 5, 2012 at 5:59 am
ok just downloaded this freeware :
http://download.cnet.com/Optillect-SQL-Decryptor/3000-10254_4-75300271.html
i installed it and it decrypts perfectly, without needing the DAC.
September 5, 2012 at 5:53 am
Maximum Number of Processors Supported by the Editions of SQL Server
From your other thread, you know it's 4 sockets/unlimited cores per socket.
so if, for YOU, processor=socket then no.
if processor=core, then...
September 5, 2012 at 5:39 am
Anthony I've seen executables that decrypt without having to go into the DAC, but When I did the research once before, they seemed to be crippleware to try and get...
September 5, 2012 at 5:31 am
does this help you find what you are looking for?
http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=sql2008R2+standard
KumarSQLDBA (9/5/2012)
September 5, 2012 at 5:25 am
swathi that's a great way to show an alternate solution.
The only thing that bothers me is that solution only works if there are only 9 categories, 1-9, since you are...
September 5, 2012 at 5:16 am
Viewing 15 posts - 4,786 through 4,800 (of 13,465 total)