Viewing 15 posts - 2,206 through 2,220 (of 5,393 total)
Ninja's_RGR'us (12/30/2011)
David Moutray (12/30/2011)
Dude, you should write an article (or maybe a series of articles).Already has done so. It's called 10K posts on ssc.com 😀
This means you already have...
-- Gianluca Sartori
January 2, 2012 at 2:33 am
When you use an IP address instead of the server name, SQLNCLI assumes TCP/IP is enabled.
Is there any particular reason why you're using Named Pipes and not TCP/IP?
-- Gianluca Sartori
December 30, 2011 at 5:24 am
PaulB-TheOneAndOnly (12/29/2011)
pandeesh (12/29/2011)
Any other suggestions welcome...
How about using coalesce?
create table #test(id decimal);
insert into #test values(1);
insert into #test values(2);
insert into #test values(3);
insert into #test values(4);
insert into #test values(5);
insert into #test values(6);
insert...
-- Gianluca Sartori
December 30, 2011 at 5:21 am
I'm officially confused. :ermm:
Time for a break.
-- Gianluca Sartori
December 30, 2011 at 5:15 am
You could set up a policy and raise an alert when the configuration changes. You can even prevent the change at all.
-- Gianluca Sartori
December 30, 2011 at 5:09 am
Duplicate post.
Replies here please:
http://www.sqlservercentral.com/Forums/FindPost1228255.aspx
-- Gianluca Sartori
December 30, 2011 at 5:06 am
DECLARE @abc TABLE
(
SerialNumber varchar (50)
)
insert into @abc (SerialNumber)values ('12345 0047225P1')
insert into @abc (SerialNumber)values ('00011 0055500ABC2')
SELECT
SUBSTRING(SerialNumber, PATINDEX('% %', SerialNumber) + 1, PATINDEX('%[^0-9][0-9]', SerialNumber) - PATINDEX('% %', SerialNumber) -...
-- Gianluca Sartori
December 30, 2011 at 5:02 am
mario.balatellii (12/30/2011)
So if i knew the logic my self i would have done it .
I guess you will have to ask that to somebody who knows the business logic.
I...
-- Gianluca Sartori
December 30, 2011 at 4:51 am
forsqlserver (12/30/2011)
Yes may be I have not discussed.
That would be the best way. Talk to your admins, I'm sure you can set up something sensible.
After completion how can I disconnect...
-- Gianluca Sartori
December 30, 2011 at 4:47 am
mario.balatellii (12/30/2011)
create table abc
(
SerialNumber varchar (50)
)
insert into abc (SerialNumber)values ('12345 0047225P1')
insert into abc (SerialNumber)values ('00011 0055500ABC')
I am expecting a table with once column name account number and the result like...
-- Gianluca Sartori
December 30, 2011 at 4:32 am
forsqlserver (12/30/2011)
How can user_id and password be provide without manual intervention.
NET USE X: \\servername\sharename password /USER:domainname\username
-- Gianluca Sartori
December 30, 2011 at 4:30 am
encrypted by MSSQL 2008R2.
You mean TDE? No way. SQL Server handles that for you.
Any other kind of encryption is managed by the applications. Find the app that encryped the data...
-- Gianluca Sartori
December 30, 2011 at 4:19 am
You're not telling much about your data.
Can you post the table script, some sample data and the expected results based on the sample data?
Also, what makes P the letter in...
-- Gianluca Sartori
December 30, 2011 at 4:17 am
You would have to issue a NET USE command for the SQL Server service account.
Ugly and unreliable. Are you sure you don't have other options?
-- Gianluca Sartori
December 30, 2011 at 4:14 am
Michael Valentine Jones (12/29/2011)
Gianluca Sartori (12/28/2011)
With RCS enabled writers don't block readers. Is this the kind of concurrency issue you're trying to address?
As far as the dangers is concerned,...
-- Gianluca Sartori
December 30, 2011 at 2:47 am
Viewing 15 posts - 2,206 through 2,220 (of 5,393 total)