Viewing 15 posts - 1,351 through 1,365 (of 1,539 total)
yeah!! Whats the logic of splitting 23 into 4 rows. the sum of minimum values in the four rows comes to 43...
December 27, 2008 at 7:04 am
susant the link is http://jumpstarttv.com/
video is at http://www.jumpstarttv.com/backing-up-your-database-with-smo_411.aspx
December 26, 2008 at 9:45 pm
My Goals
1. Switch to a new job
2. Get Married
3. Learn SQL Server 2005
December 26, 2008 at 9:15 pm
Just a follow up query on this!
If i'm writing DLLs for extended stored proc, do i need to use C++/C# or Can i use the DLL written in VB 6.0...
December 26, 2008 at 8:53 pm
Incidently we've implemented the same algorithm as mentioned in the article mentioned by Steve. 128 bit blowfish algorithm.
Would suggest Pavas to download the toolkit and implement it. you can...
December 26, 2008 at 8:46 pm
Jeff, I must say the way you play around with T-SQL is really amazing. Atleast I couldnt think of using PARSENAME in this example:w00t:
December 26, 2008 at 12:10 pm
I guess u're referring to SELECT.
=========================
I've a table (reccalldetails) with appx 200,000 rows in it.
I created a non-clustered index on the column POLICYNO in it.
I fired this statement:
Case I
select *...
December 26, 2008 at 3:55 am
Vishal Singh (12/26/2008)
But if I mix "IS NULL" the update will go...
December 26, 2008 at 3:15 am
Whenever you fire an update statement, all the rows under scope will be locked. In first case, you're firing one update statement, the duration of row lock on that particular...
December 26, 2008 at 3:01 am
create table #patname
(
FullName varchar(100),
FirstName varchar(100),
MiddleName varchar(100),
LastName varchar(100)
)
insert into #patname(FullName)
select 'John,David Robert'
UNION ALL
select 'sustaita,corie m'
UNION ALL
select 'pena,geneva jesus'
-- Assumption, the field full name contains last name, a comma, first name, a...
December 26, 2008 at 12:16 am
susant (12/25/2008)
I am developing one Windows application... That application using one database named as INVENTORY..All my tables and SP are there in that INVENTORY database...
Requirement
---------------
I hve one menu 'Take...
December 25, 2008 at 11:50 pm
hi all
Problem
----------------
There are number of databases in my SQLExpress-2005.. like..
1: Master
2: Pubs
3: Inventory..
My application related database is Inventory...
Requirement..
-----------------
1: No can open that database..
sug..
-------
I...
December 25, 2008 at 11:45 pm
you can use trigger in this scenario. I'm assuming empid is not an identity column and u're manually inserting data in that column.
===================================
create table employees
(
empid int,
empcode varchar(10),
ename varchar(100)
)
create trigger trg_empCode
on...
December 25, 2008 at 11:27 pm
sp_who2 works just fine for finding sessions. u can also query sysprocesses table.
December 25, 2008 at 10:27 am
Merry Christmas to Everyone at SQL Server Central [Steve, Gail, Jack, Michael, Jeff, Barry, Seth, Grant, Jerry and to all wonderful people who selflessly guide us sail through all problems...
December 24, 2008 at 8:46 pm
Viewing 15 posts - 1,351 through 1,365 (of 1,539 total)