Viewing 15 posts - 1,066 through 1,080 (of 1,110 total)
We are using TCP/IP, named pipes are turned off, shared memory is also enabled. Everything is on default ports on this box.
October 24, 2013 at 2:13 pm
Ya i didn't have high hopes for UAC, but apparently it did work before. SQL Browser was turned off on this server, i turned it on, but still no...
October 24, 2013 at 2:10 pm
The for-each look is your friend, along with some variable manipulation.
September 19, 2013 at 9:52 am
CREATE TABLE #table1(col1 nvarchar(1), col2 int, OrderMe int);
INSERT INTO #table1 VALUES('B','100',0);
INSERT INTO #table1 VALUES('A','200',1);
INSERT INTO #table1 VALUES('B','300',0);
INSERT INTO #table1 VALUES('C','400',1);
WITH CTE (col1,col2, OrderMe) as (
...
September 14, 2013 at 7:11 am
I wouldn't do it that way. My way would be to use the trigger (if i had to) to write the export data to another table, with a SQL...
September 11, 2013 at 10:52 am
Kingston Dhasian (8/23/2013)
Please note that this thread is more than 3 years old.
It just wanted some brains :hehe:
August 23, 2013 at 6:49 am
Casting is your friend here. Not all parts of that string you are concatting are of the same type. Make sure all elements are of the same type and...
July 18, 2013 at 1:50 pm
vick.ram79 (7/15/2013)
July 16, 2013 at 7:08 am
What about using local variables to hold the value of the parameters at the start of the stored procedure? This always seems to work for me when i encounter...
July 15, 2013 at 8:17 am
Look at this article:
http://archive.msdn.microsoft.com/SQLExamples/Wiki/View.aspx?title=createacommadelimitedlist
July 11, 2013 at 12:19 pm
Use a variable to overrride the connectionstring property of the connection connecting to your everchanging database.
You can set the contents of the variable to components of getdate() to look...
July 11, 2013 at 11:41 am
From my brief stint as a CSA:
Caller (Older gentleman, with his first computer, whom I assumed had never seen a typewriter either): How do I enter lower case letters? My...
February 18, 2010 at 11:53 am
david_wendelken (1/6/2010)
January 7, 2010 at 8:33 am
Johan van Tonder (1/6/2010)
January 6, 2010 at 12:22 pm
Viewing 15 posts - 1,066 through 1,080 (of 1,110 total)