Viewing 15 posts - 91 through 105 (of 119 total)
try pinging the Server IP Address from command prompt to learn if the server is responding or not.
June 22, 2016 at 4:59 am
Test your linked server connectivity from SSMS, if unsuccessful then check the SQL Logs.
June 22, 2016 at 3:13 am
There exists standard SSIS Package upgrade wizard.
Please refer to https://msdn.microsoft.com/en-us/library/cc280547(v=sql.120).aspx.
June 22, 2016 at 1:23 am
additional information:
SQL Server 2016 offers new feature, STRING_SPLIT() which returns delimited strings as records.
e.g.
SELECT STRING_SPLIT('A,B,C',',')
Output:
A
B
C
June 22, 2016 at 1:13 am
first thing, you need not define another transaction inside the stored proc.
Except that it seems your code is perfect.
June 21, 2016 at 12:30 am
Hi,
I guess you need to create another index explicitly.
June 20, 2016 at 11:29 pm
I guess using data conversion data transformation would help you.
June 20, 2016 at 4:05 am
I got this information online which might help you.
There is this KB article, which lists the required updates you need to install https://support.microsoft.com/en-us/kb/3135244 , which also lists which updates are...
June 20, 2016 at 2:30 am
Can you post the structure of the tables used in query along with some sample data to help you better?
June 20, 2016 at 2:24 am
Thanks, I agree its always a good practice to define primary key on the standard logic tally table.
June 18, 2016 at 2:15 pm
You need to define a tally table
create dbo.numbers(n int);
Load the numbers table using standard logic available.
Now to load the data into #insert table,
INSERT INTO #INSERT(txt)
SELECT txt
FROM #TEMP t
CROSS JOIN dbo.numbers...
June 18, 2016 at 2:02 pm
I think using the T-SQL LIKE clause would help in this scenario.
e.g. in WHERE clause of stored proc use ,
WHERE Address = @inputaddress or Address LIKE LEFT(@inputaddress,1)+'%'
June 18, 2016 at 1:36 pm
Either Gail or Jeff's solution should work.
And in Gail's solution it just refers to the matching rows and the beauty with EXISTS clause is that it just need one matching...
June 18, 2016 at 1:28 pm
Hello,
No where in your tables design there is scope for accommodating the string data 'bio', 'eng.1' etc.
Can you eloborate the problem with data in tables.
June 16, 2016 at 8:17 am
Viewing 15 posts - 91 through 105 (of 119 total)