Viewing 15 posts - 4,051 through 4,065 (of 15,381 total)
Stefan Krzywicki (8/6/2014)
August 6, 2014 at 7:46 am
I took a guess that the author was looking for the column list in the tooltip. However I very rarely use select * and surprisingly when I am typing a...
August 6, 2014 at 7:12 am
Right...as I said look at SQL Search. It will do this.
August 5, 2014 at 2:16 pm
powerofsound (8/5/2014)
August 5, 2014 at 2:14 pm
SQL_Kills (8/5/2014)
I'm not sure how my Question is Vague? Ideally the user will enter the table name as a parameter to the stored Procedure findMyTable('TableA') and this will then run...
August 5, 2014 at 1:02 pm
powerofsound (8/5/2014)
August 5, 2014 at 12:55 pm
thejordans21 (8/5/2014)
here is a my raw data (partial)
PLANTPLANT_DESCVENDOR
7010Coquitlam DCPR1
NOPENULLNOPE
NOPENULLNOPE
NOPENULLNOPE
NOPENULLNOPE
NOPENULL1014435
NOPENULL1014435
NOPENULL1014435
7012Chilliwack DCPR1 ...
August 5, 2014 at 12:52 pm
One thing you didn't mention is an external application. What if you have an external application that performs CRUD operations via pass through sql?
August 5, 2014 at 12:47 pm
SQL_Kills (8/5/2014)
Has any one got some useful scripts that I could you that would tell me how a table is populated within a database? So i'm thinking of a stored...
August 5, 2014 at 12:46 pm
Luis Cazares (8/5/2014)
Maybe this thread can give you some ideas. http://www.sqlservercentral.com/Forums/Topic1531616-392-1.aspxThere's another option that uses a scalar function which seems to be faster but I'll have to find it.
Awesome. I...
August 5, 2014 at 8:22 am
Here is another one...unfortunately I did not record who provided this. If anybody recognizes this please let me know so I can give proper credit.
ALTER function [dbo].[NewInitCap]
(
@word varchar(2000)
) returns table
return
select...
August 5, 2014 at 8:21 am
Here is a scalar function I wrote years ago. This works pretty well but the performance is not great.
ALTER function [dbo].[InitCap]
(
@inString varchar(max)
)
returns varchar(max)
as
begin
declare @currIndex int,
@nextIndex int,
@result varchar(max),
@StrLength int
set...
August 5, 2014 at 8:20 am
This topic comes up around here from time to time. I have 3 different version stashed in my snippets. The first one here is from ColdCoffee.
--From Cold Coffee
DECLARE @Table TABLE...
August 5, 2014 at 8:19 am
sivarao.n (8/5/2014)
We are also getting same error message in production server intermittently.
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body><s:Fault><faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher">a:InternalServiceFault</faultcode><faultstring xml:lang="en-US">A network-related or instance-specific error occurred while establishing a connection to SQL Server. The...
August 5, 2014 at 7:53 am
Is there even a question here? This just looks like a stack trace from .net.
August 4, 2014 at 1:40 pm
Viewing 15 posts - 4,051 through 4,065 (of 15,381 total)