Viewing 15 posts - 1,696 through 1,710 (of 2,038 total)
I'm not sure if I understood what you are looking for, but if you want to know which fk column of a table references to which other object this should...
March 28, 2009 at 5:46 am
I'm also not sure about your problem, but maybe your solution is just this:
DECLARE @person TABLE (id INT, name VARCHAR(100), dob datetime)
INSERT INTO @person
...
March 28, 2009 at 5:34 am
If you want, I can attach the C# source code and/or the assembly (if you trust me :-D).
I just don't know if the forum allows to attach a zipped executable...
March 28, 2009 at 5:10 am
Try this:
DECLARE @t TABLE (student INT, dt DATETIME, missed BIT)
INSERT INTO @t
-- today
SELECT 1, DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE())...
March 28, 2009 at 5:07 am
can anybody tell me how 1 can get PRINT statments from SP execution at client side?
I found it really useful in some cases when we need to log the actual...
March 28, 2009 at 4:22 am
Michael Valentine Jones (3/27/2009)
I'm a littel disappointed that no one wanted to play.
Hi Michael
Not any reason. I also noticed the script and I have to say: "Respect for the creativity...
March 27, 2009 at 3:16 pm
We used the truncate_only functionality for development and test databases. For some load tests we take production databases to our test system. Our test environment is not as large as...
March 27, 2009 at 3:06 pm
Hi
I'm not sure if I understood you correctly, but this?
SELECT *
FROM AnyTableWhoseNameYouDidNotSay
WHERE missed = 1
If not please provide your table definition and some sample...
March 27, 2009 at 2:30 pm
Ask the administrator to reset. If you are the administrator login to the windows server and connect to SQL Server with windows authentication. So you can reset the password.
Greets
Flo
March 27, 2009 at 2:26 pm
Hi
I don't know anything about the SQL Server Express gui tools, but have a look to registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL9.MSSQLSERVER\MSSQLServer
There should be a "BackupDirectory" configured. Change it and restart the service....
March 27, 2009 at 2:18 pm
I would never say that perl is easier to read :-P. Just my admins do.
As a said, I am using C# scripts:
using System;
using System.IO;
void Main()
{
string[] files =...
March 27, 2009 at 2:13 pm
Jeffrey Williams (3/27/2009)
PS> Get-Childitem -Recurse | ? {$_.LastWriteTime -lt (get-date).AddDays(-3)} | % {Remove-Item $_.Name -Whatif}
:w00t:
So that's exactly what I'm speaking about...
Fortunately I don't have to. I'm a developer, not an...
March 27, 2009 at 1:47 pm
Hi
Try this:
DECLARE @T TABLE (id int, txt NTEXT)
INSERT INTO @t
SELECT 1, '<root>
<response>
<whatIwant test="bla">value</whatIwant>
...
March 27, 2009 at 1:39 pm
bitbucket (3/27/2009)
March 27, 2009 at 1:33 pm
Viewing 15 posts - 1,696 through 1,710 (of 2,038 total)