Viewing 15 posts - 5,881 through 5,895 (of 7,501 total)
If you're just performing selects ... from ... without saving the results to variables or into another table, you sp will return it as a rowset.
February 27, 2007 at 1:19 pm
- check the command if parameters exist (hen you've been there already), just alter their values. Avoid the clear.
cmd.Parameters(
"@PIN").Value = pin.number
February 26, 2007 at 1:09 am
... "The user account I am using is member of the domain admins group, so this user should have access to it." ...
that is not the case if you removed...
February 24, 2007 at 9:14 am
if you're not providing values for all columns (except for identities) of a table, you should tell it which columns you're providing (values-order must match columnorder in the column-list ).
insert
February 23, 2007 at 4:55 am
did you add/alter the registry-key ?
Be carefull when messing with the registry !!! (backup before !)
-- HOWTO: Enable DTC Between Web Servers and SQL Servers Running Windows Server 2003
--
February 22, 2007 at 7:53 am
- keep in mind that if the clustered index gets dropped, your data will move back to the filegroup defined at "create table"-time.
- so if you can, create the table...
February 22, 2007 at 12:56 am
Builtin\Adminstrator is the group of local administrators of the server and accounts like local system / local service.
If you remove it, be sure you'r running the sqlserver service using a...
February 21, 2007 at 1:21 pm
did you configure MSDTC ? dcomcnfg.exe
February 21, 2007 at 7:47 am
Great. Sometimes, just sitting and reflecting the problem helps ![]()
Can you share the pittfall ? ![]()
February 21, 2007 at 4:54 am
maybe you should have a look at http://support.microsoft.com/default.aspx?scid=kb;en-us;906954
February 21, 2007 at 12:48 am
this name gets published through the cluster service. So the name will get published at sql-instance-install time.
BOL has more regarding "install a cluster"
February 21, 2007 at 12:43 am
- also with that kind of size, consider using filegroups !(check BOL)
Especialy if you are planning on migrating to sql2005 where you can perform piecemeal restores so you actualy get...
February 20, 2007 at 2:48 am
you will need helper objects (#temptb) to solve this tree in sqlserver2000.
With sql2005 you would use a CTE.
Search SSC for "tree" and you'll find some options.
February 20, 2007 at 12:53 am
in adition to Aaron's reply ..
New with sql2005 is the "execute as .." for sp's. ![]()
check out "Using EXECUTE AS to Create Custom...
February 20, 2007 at 12:38 am
just script the full database. Create a new database and run the script.
You can use enterprise manager Rightclick the databasename \generate script. Be sure to select all things you want...
February 20, 2007 at 12:33 am
Viewing 15 posts - 5,881 through 5,895 (of 7,501 total)