Viewing 15 posts - 4,456 through 4,470 (of 13,469 total)
outsider32 (11/1/2012)
It is on the next line after the data, there is only one return after the data.So i'm getting:
Comments
(cursor here)
I am on version: 11.0.2100.60
I appreciate the help!
does the comments...
November 1, 2012 at 3:15 pm
SELECT * FROM FROM sys.objects
, yeah the parse assumes the second FROM is a table name, and so the alias 'sys.tables' is an error.
a longer, better error message comes from...
November 1, 2012 at 2:09 pm
I've played with this a couple of times, Jason; i've used it to chop a SQL statement into elements, so i could play with building my own formatter, and of...
November 1, 2012 at 1:51 pm
Data is the first thing that comes to mind.
If you save any data of any kind in that database, it would of course be unique to you and your...
November 1, 2012 at 8:43 am
mkarthikeyyan 89837 (11/1/2012)
Please help me to find unpredictable special characters like ? , ? in fields.For example:
It returns "?" only. Please help me how to display these special characters?
Thanks!!!
because you...
November 1, 2012 at 8:10 am
riswana (11/1/2012)
Hi,I am having the same problem. My query string is greater than 8000 characters. I am using varchar(max).
Can someone assist urgently with a result, please.
On computers running...
November 1, 2012 at 7:32 am
here's a link to a copy of the pdf that doesn't require his damn password.
boy that pissed me off for some reason.
oh, and some of his code example references the...
November 1, 2012 at 7:25 am
opc.three (11/1/2012)
November 1, 2012 at 6:56 am
kapil_kk (11/1/2012)
How to send a mail through Storedprocedures with out using system stored procedures
What? without system stored procedures? like msdb.dbo.sp_send_dbmail?
so you are saying instead of using the built in,...
November 1, 2012 at 6:49 am
these issues are notoriously hard to dig for...there's a connect item out there stating why not add the column name of the violating size issue to the error message.
because this...
November 1, 2012 at 5:52 am
note that the end user may have troulbe if they don't use SSMS for connecting;
as an example, i created this login:
USE [master]
GO
CREATE LOGIN [ExampleLogin]
WITH PASSWORD=N'NotTheRealPassword'
...
October 31, 2012 at 1:42 pm
I have this procedure to help me kill users in a specific database:
usage is this easy:
sp_kill DatabaseName
and the code:
CREATE PROCEDURE sp_Kill ...
October 31, 2012 at 1:15 pm
if you are selecting a row that is full of nulls, it would appear as an "extra" line in your file when BCP is finished.
here's a working example, assuming...
October 31, 2012 at 12:04 pm
something that might help a little bit:
if you create a procedure that references a non-sys object in another database, you can find it via the sys.dm_sql_referenced_entities() function
here's an example...the server/database/table...
October 31, 2012 at 9:16 am
It sounds like the account used in Services has access to the shares(because that's what sa /sysadmin's would use for credentials outside of SQL server, but that the proxy_account is...
October 31, 2012 at 8:43 am
Viewing 15 posts - 4,456 through 4,470 (of 13,469 total)