Viewing 15 posts - 76 through 90 (of 1,182 total)
Silly question (maybe):
Have you tried the export from the server itself? Another workstation with SSMS installed?
December 21, 2012 at 10:56 am
You have a bunch already. Go to the Character Map and explore the WingDings (and other) fonts.
Start > All Prog > Accessories > Character Map
December 17, 2012 at 8:06 am
create two different datasets. 🙂
December 17, 2012 at 8:04 am
You're close. The parameters (when multiple are chosen) are passed to your procedure as a comma delimited list. You will need to split those out into a table of values...
December 10, 2012 at 8:16 am
Why not just "try it" Set up a task to delete any *.* files and set it to run in 5 minutes, then see if it fails. :w00t:
November 27, 2012 at 7:47 am
Yes, you can update those tables, but they are "fussy".
Check out this article, it shows how to work around it. I'm fairly certain it works in 2008.
November 13, 2012 at 7:27 am
You may need to set the compatibility level of the current database to a higher value to enable this feature. See help for the SET COMPATIBILITY_LEVEL option of ALTER DATABASE.
According...
November 12, 2012 at 10:32 am
GilaMonster (11/2/2012)
Not even with SET NOEXEC ON?
And THANKS a ton Gail! This got us on the right track at least. 🙂
November 2, 2012 at 9:12 am
Eugene Elutin (11/2/2012)
DECLARE @sql VARCHAR(8000) = 'SELECT * FROM FROM sys.objects'
SET @sql = 'SET NOEXEC ON;
' + @sql + '
SET NOEXEC OFF;'
BEGIN TRY
...
November 2, 2012 at 9:11 am
GilaMonster (11/2/2012)
Not even with SET NOEXEC ON?
That might be it.
So how would I (or is it possible) to do this inside a procedure and capture the output.
In other words, I...
November 2, 2012 at 7:46 am
Jeff Moden (11/1/2012)
Jason Selburg (11/1/2012)
I need only to check the syntax.
Also, the syntax can be...
November 2, 2012 at 6:57 am
Good idea dwain, but I do not want to/ can not execute the statements.
I need only to check the syntax.
Also, the syntax can be any valid sql. So...
November 1, 2012 at 8:17 pm
Ha Ha...I need to sloooooow down. I totally missed the two FROM's
November 1, 2012 at 4:11 pm
Lowell (11/1/2012)
November 1, 2012 at 1:54 pm
Lee Crain (11/1/2012)
November 1, 2012 at 1:20 pm
Viewing 15 posts - 76 through 90 (of 1,182 total)