Viewing 15 posts - 916 through 930 (of 2,038 total)
Hi Anitha
I don't think there is a build-in functionality available.
Greets
Flo
May 16, 2009 at 5:16 am
Hi
Did you ensure that TCP/IP and Named Pipes are activated on your SQL Server? Go to "SQL SErver Configuration Manager" -> "SQL Server Network Configuration" -> "Protocols for MSSQLSERVER" and...
May 15, 2009 at 5:46 pm
Hi Jeffrey
I'm no SSIS pro but your file looks like a usual CSV (except the trailing spaces). I just took your file, added a "Flat File Source" and specified:
Format: Delimited
Text...
May 15, 2009 at 5:10 pm
SSE2k is some month away but I think you can use a T-SQL job which checks the sysfiles and raises an error when your determined size was reached.
May 15, 2009 at 4:52 pm
Hi
I'm also a C# developer.
As first your initial question. If you still trying to use your CLR trigger I would suggest to request the column names again and again whenever...
May 15, 2009 at 4:43 pm
GilaMonster (5/15/2009)
... Is it open season on corruptions all of a sudden? None have any backups, of course....
Not yet in our company. For sure, we have backups! We take them...
May 15, 2009 at 3:57 pm
RBarryYoung (5/15/2009)
FelixG (5/15/2009)
Vrachar type removes trailing spaces... you must use the CHAR type
It doesn't seem to be doing that on my system:
--========
declare @s-2 varchar(30)
declare @t varchar(30)
set @s-2 = 'K ...
May 15, 2009 at 3:38 pm
In this case you have to use SQL Server authentication.
To simplify the server-switch and database naming problems some possibilities:
To handle a possible switch of the database to another server we...
May 15, 2009 at 3:14 pm
Yep. File management is also a nice approach done by CLR. Another one is all those OLE-Automation things instead of sp_OACreate. Hube binary conversions or network conversations like http-requests.
There are...
May 15, 2009 at 3:08 pm
Hi
I hope I understood your question... :ermm:
It depends (as always).
If your complete application is very large and you are working with different developer teams (maybe in different locations) the separated...
May 15, 2009 at 3:03 pm
Hi
If possible I would suggest to use windows authentication.
An encrypted connection string seems to be a good approach. You should not store user/password on client side. Store only server/database information...
May 15, 2009 at 2:42 pm
CLR is a great feature for things like string splitting. Anyway, there are quiet rare reasons to work with CLR in SQL Server since the integration is not better than...
May 15, 2009 at 2:27 pm
Sounds like a normalization problem. What about a description table with a foreign key and a sequence instead of concatenated multi-value column? You will run into huge performance issues if...
May 15, 2009 at 2:19 pm
Hi Tara
Two reasons:
1.) You configured "Minimum server memory" and "Maximum server memory" to same value.
2.) SQL Server needs (or needed once) for some reason. Memory allocation and freeing takes too...
May 15, 2009 at 2:12 pm
Viewing 15 posts - 916 through 930 (of 2,038 total)